From e7ffa591c0c0413a0f639634ad232dec985d67b1 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 18 Sep 2023 15:21:42 -0600 Subject: [PATCH 001/295] feat: created system-set-merge tool --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/release.yml | 2 +- .moon/toolchain.yml | 2 +- .moon/workspace.yml | 1 + package.json | 2 +- pnpm-lock.yaml | 23 ++++++++- pnpm-workspace.yaml | 1 + tools/system-set-merge/README.md | 3 ++ tools/system-set-merge/moon.yml | 24 ++++++++++ tools/system-set-merge/package.json | 23 +++++++++ tools/system-set-merge/src/index.js | 57 +++++++++++++++++++++++ tools/system-set-merge/test/index.test.js | 17 +++++++ 12 files changed, 152 insertions(+), 5 deletions(-) create mode 100644 tools/system-set-merge/README.md create mode 100644 tools/system-set-merge/moon.yml create mode 100644 tools/system-set-merge/package.json create mode 100644 tools/system-set-merge/src/index.js create mode 100644 tools/system-set-merge/test/index.test.js diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 73c07167..90419f5d 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.7.5 + version: 8.7.6 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run site:export diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 27412101..04bde25f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.7.5 + version: 8.7.6 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run :build --query "projectSource~packages/*" diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index fb31c0b9..92a4c815 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "8.7.5" + version: "8.7.6" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/.moon/workspace.yml b/.moon/workspace.yml index d8fc8a7d..6560557a 100644 --- a/.moon/workspace.yml +++ b/.moon/workspace.yml @@ -4,6 +4,7 @@ projects: tokens: "packages/tokens" visualizer: "docs/visualizer" site: "docs/site" + system-set-merge: "tools/system-set-merge" vcs: manager: "git" defaultBranch: "main" diff --git a/package.json b/package.json index 3beaf75d..be30403e 100644 --- a/package.json +++ b/package.json @@ -34,5 +34,5 @@ "engines": { "node": "18.13.0" }, - "packageManager": "pnpm@8.7.5" + "packageManager": "pnpm@8.7.6" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 933dc0bb..13918585 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -153,6 +153,20 @@ importers: specifier: ^3.0.3 version: 3.0.3 + tools/system-set-merge: + dependencies: + glob: + specifier: ^10.3.3 + version: 10.3.3 + jsonpath-plus: + specifier: ^7.2.0 + version: 7.2.0 + prettier: + specifier: ^3.0.0 + version: 3.0.0 + + tools/token-manifest-builder: {} + packages: /@babel/code-frame@7.22.5: resolution: @@ -4141,6 +4155,14 @@ packages: engines: { "0": node >= 0.2.0 } dev: true + /jsonpath-plus@7.2.0: + resolution: + { + integrity: sha512-zBfiUPM5nD0YZSBT/o/fbCUlCcepMIdP0CJZxM1+KgA4f2T206f6VAg9e7mX35+KlMaIc5qXW34f3BnwJ3w+RA==, + } + engines: { node: ">=12.0.0" } + dev: false + /kind-of@6.0.3: resolution: { @@ -5265,7 +5287,6 @@ packages: } engines: { node: ">=14" } hasBin: true - dev: true /pretty-ms@8.0.0: resolution: 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/tools/system-set-merge/README.md b/tools/system-set-merge/README.md new file mode 100644 index 00000000..a7710dfe --- /dev/null +++ b/tools/system-set-merge/README.md @@ -0,0 +1,3 @@ +# system-set-merge + +A simple tool to merge system sets in Spectrum Tokens diff --git a/tools/system-set-merge/moon.yml b/tools/system-set-merge/moon.yml new file mode 100644 index 00000000..faa3cfa0 --- /dev/null +++ b/tools/system-set-merge/moon.yml @@ -0,0 +1,24 @@ +# Copyright 2023 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. +type: tool +fileGroups: + sources: + - "/packages/tokens/src/**/*" +tasks: + run: + command: + - node + - src/index.js + platform: node + inputs: + - "@globs(sources)" + - "src/index.js" + outputs: + - "@globs(sources)" diff --git a/tools/system-set-merge/package.json b/tools/system-set-merge/package.json new file mode 100644 index 00000000..89958cd8 --- /dev/null +++ b/tools/system-set-merge/package.json @@ -0,0 +1,23 @@ +{ + "name": "system-set-merge", + "version": "0.0.1", + "description": "A simple tool to merge system sets in Spectrum Tokens", + "type": "module", + "private": true, + "scripts": {}, + "repository": { + "type": "git", + "url": "git+https://github.com/adobe/spectrum-tokens.git" + }, + "author": "Garth Braithwaite (http://garthdb.com/)", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/adobe/spectrum-tokens/issues" + }, + "homepage": "https://github.com/adobe/spectrum-tokens#readme", + "dependencies": { + "glob": "^10.3.3", + "jsonpath-plus": "^7.2.0", + "prettier": "^3.0.0" + } +} diff --git a/tools/system-set-merge/src/index.js b/tools/system-set-merge/src/index.js new file mode 100644 index 00000000..e0f4337a --- /dev/null +++ b/tools/system-set-merge/src/index.js @@ -0,0 +1,57 @@ +/* +Copyright 2023 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. +*/ + +import { JSONPath } from "jsonpath-plus"; +import { glob } from "glob"; +import { readFile, writeFile } from "fs/promises"; +import { resolve } from "path"; +import { format } from "prettier"; + +import * as url from "url"; +const __dirname = url.fileURLToPath(new URL(".", import.meta.url)); + +const readJson = async (fileName) => + JSON.parse(await readFile(fileName, "utf8")); + +const tokenFiles = await glob( + `${resolve(__dirname, "../../../packages/tokens/src")}/**/*.json`, +); +const editedTokenNames = {}; +tokenFiles.forEach(async (fileName) => { + editedTokenNames[fileName] = []; + const jsonData = await readJson(fileName); + const result = JSONPath({ + path: '$..[?(@property === "express" && @parentProperty === "sets")]^^^', + json: jsonData, + callback: (payload, type, obj) => { + const tokenName = obj.parentProperty; + jsonData[tokenName] = { + value: jsonData[tokenName].sets.spectrum.value, + uuid: jsonData[tokenName].sets.spectrum.uuid, + }; + delete jsonData[tokenName].sets; + editedTokenNames[fileName].push(tokenName); + return payload; + }, + }); + if (editedTokenNames[fileName].length > 0) { + console.log( + `File: ${fileName} updated ${editedTokenNames[fileName].length} tokens`, + ); + await writeFile( + fileName, + await format(JSON.stringify(jsonData), { parser: "json-stringify" }), + ); + } else { + console.log(`File: ${fileName} not updated`); + } +}); diff --git a/tools/system-set-merge/test/index.test.js b/tools/system-set-merge/test/index.test.js new file mode 100644 index 00000000..c128c9d8 --- /dev/null +++ b/tools/system-set-merge/test/index.test.js @@ -0,0 +1,17 @@ +/* +Copyright 2023 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. +*/ + +import test from "ava"; + +test("basic test", (t) => { + t.is(1, 1); +}); From 8ba9abbc9edd7642a367e1ef742808b1690bfe50 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 18 Sep 2023 15:24:10 -0600 Subject: [PATCH 002/295] feat(tokens)!: merged spectrum and express sets --- packages/tokens/src/color-aliases.json | 56 +- packages/tokens/src/color-component.json | 8 +- packages/tokens/src/layout-component.json | 1674 +---------------- packages/tokens/src/layout.json | 212 +-- .../tokens/src/semantic-color-palette.json | 196 +- packages/tokens/src/typography.json | 75 +- 6 files changed, 125 insertions(+), 2096 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index f032c446..726fe55c 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -200,60 +200,20 @@ } }, "neutral-background-color-selected-default": { - "sets": { - "spectrum": { - "value": "{gray-700}", - "uuid": "fd1c9f2b-8358-4bd3-a5cc-d211673428bc" - }, - "express": { - "value": "{gray-800}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "60caae29-d389-421e-a574-b26bcaeed3bf" - } - } + "value": "{gray-700}", + "uuid": "fd1c9f2b-8358-4bd3-a5cc-d211673428bc" }, "neutral-background-color-selected-hover": { - "sets": { - "spectrum": { - "value": "{gray-800}", - "uuid": "1c220122-5f32-42f9-848f-ae10061241e5" - }, - "express": { - "value": "{gray-900}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "0deac090-f00a-4927-880d-dfdca06bd66e" - } - } + "value": "{gray-800}", + "uuid": "1c220122-5f32-42f9-848f-ae10061241e5" }, "neutral-background-color-selected-down": { - "sets": { - "spectrum": { - "value": "{gray-900}", - "uuid": "966c56d0-4461-45e7-9e20-0277f2111a34" - }, - "express": { - "value": "{gray-900}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "bf3de5f6-665c-4a6a-b238-e767b7240fd8" - } - } + "value": "{gray-900}", + "uuid": "966c56d0-4461-45e7-9e20-0277f2111a34" }, "neutral-background-color-selected-key-focus": { - "sets": { - "spectrum": { - "value": "{gray-800}", - "uuid": "9b8df7df-3439-4614-b446-97a4de782e27" - }, - "express": { - "value": "{gray-900}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "e012e155-2220-43e9-a248-61c71e99cc2b" - } - } + "value": "{gray-800}", + "uuid": "9b8df7df-3439-4614-b446-97a4de782e27" }, "neutral-subdued-background-color-default": { "sets": { diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 8c1d05a6..cdbc03a7 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -168,12 +168,8 @@ "component": "color-handle", "deprecated": true, "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", - "sets": { - "express": { - "value": "{drop-shadow-color}", - "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" - } - } + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" }, "floating-action-button-drop-shadow-color": { "component": "floating-action-button", diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 4f0abc1d..19101695 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1,928 +1,32 @@ { - "checkbox-control-size-small": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "12px", - "uuid": "460e8170-de69-4f8e-8420-6c87a1f6f5cd" - }, - "mobile": { - "value": "16px", - "uuid": "af31c1a5-ffce-4a54-8862-3e711ca53d25" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "1df233fb-fa60-4690-9a7a-0a045b4ff732" - }, - "mobile": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "13cd75f5-63de-4eb1-b3a6-528a9a853111" - } - } - } - } - }, - "checkbox-control-size-medium": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "14px", - "uuid": "86288454-7192-4e4c-b55f-fc509fc58c01" - }, - "mobile": { - "value": "18px", - "uuid": "00fee3f7-a743-45d6-a2b6-028d5d96964a" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "16px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "4612c7a8-c55f-44e8-baed-24c504f90412" - }, - "mobile": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "a4a66e58-f688-4b8e-bb22-66499697eebd" - } - } - } - } - }, - "checkbox-control-size-large": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "16px", - "uuid": "839a52bc-b9ee-473f-acde-0799b4f55ded" - }, - "mobile": { - "value": "20px", - "uuid": "b4367578-989e-438d-9a3e-7cb077f2f7c9" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "72ae3a99-d684-4e96-bbd8-867e3f6a9ba9" - }, - "mobile": { - "value": "22px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "e91c542f-aab9-42e7-a92b-1019f0c2d83d" - } - } - } - } - }, - "checkbox-control-size-extra-large": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "18px", - "uuid": "4ba47ba1-c9bd-447e-8948-009d5b424e0d" - }, - "mobile": { - "value": "22px", - "uuid": "13093f8b-e38e-449f-a982-7f960bb84dfa" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "0e9c6726-327b-4771-841d-8864a7ccd984" - }, - "mobile": { - "value": "26px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "028907b9-cfea-4464-8069-f796ff45871a" - } - } - } - } - }, - "checkbox-top-to-control-small": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "6px", - "uuid": "20518175-5bc7-4659-8007-e74339c39433" - }, - "mobile": { - "value": "7px", - "uuid": "f254146e-f469-44b1-b0c9-1ac72e88f9e3" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "5px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "102073d3-985e-41f5-927f-c477be6557d5" - }, - "mobile": { - "value": "6px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "e3a31d3c-a3ef-4644-9ad0-ee6ee196f3fc" - } - } - } - } - }, - "checkbox-top-to-control-medium": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "9px", - "uuid": "dcde5d2d-60f8-4d56-bfb1-bba44a087515" - }, - "mobile": { - "value": "11px", - "uuid": "e3751526-2db9-421c-85f9-d60071aac49b" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "8px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "96094695-7843-4144-9d6c-8e90b0c8f11e" - }, - "mobile": { - "value": "10px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "19c53e39-2529-400e-849a-04210d29f022" - } - } - } - } - }, - "checkbox-top-to-control-large": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "12px", - "uuid": "93edae08-5320-4e7e-a006-a9af1d3665ad" - }, - "mobile": { - "value": "15px", - "uuid": "d040d2f4-9bb4-4d27-adac-40fef079d958" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "11px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "771f42bc-63af-4b02-ab72-419913b9f72b" - }, - "mobile": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "9952f0e9-8cf1-4a72-a584-99fe4b708b0e" - } - } - } - } - }, - "checkbox-top-to-control-extra-large": { - "component": "checkbox", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "15px", - "uuid": "3c4217bb-91f2-4347-9f65-a0528992f600" - }, - "mobile": { - "value": "19px", - "uuid": "b3be5ac8-2415-4490-8b4a-c08661ec84d1" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "9b372f9e-f3b9-4fa6-9a12-fc50696c7e4e" - }, - "mobile": { - "value": "17px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "f21573b4-a8e6-4209-9bc0-6030a542308f" - } - } - } - } - }, - "switch-control-width-small": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "23px", - "uuid": "f4d6fe1a-70bd-473a-9fa5-477865ea898e" - }, - "mobile": { - "value": "32px", - "uuid": "ca939c4d-9369-498c-81cb-61df1397f657" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "25px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "0693a733-603d-4ff8-90b4-6b1bc3bd1681" - }, - "mobile": { - "value": "32px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "76c9ee44-720a-4ce0-88a5-15d93c6f9e32" - } - } - } - } - }, - "switch-control-width-medium": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "26px", - "uuid": "d329eda6-f13d-4a44-b962-ff06c371ed93" - }, - "mobile": { - "value": "36px", - "uuid": "ec2f3b6b-80db-4c43-bdd2-caee98796775" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "28px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "0897d478-5e14-4147-bb98-ba6566523009" - }, - "mobile": { - "value": "36px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "bd5c5024-4e29-4aef-86e4-6a4f7568ca2f" - } - } - } - } - }, - "switch-control-width-large": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "29px", - "uuid": "cef839a5-2ba7-4e47-9a85-d94260a8ff10" - }, - "mobile": { - "value": "41px", - "uuid": "5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "32px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "4703d454-0374-4304-87c9-cc4ae86e4d59" - }, - "mobile": { - "value": "41px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "5fa423b6-faa2-497e-9bbd-59cac5c9c696" - } - } - } - } - }, - "switch-control-width-extra-large": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "33px", - "uuid": "f3102afd-e5df-4912-9203-8226ce37fed5" - }, - "mobile": { - "value": "46px", - "uuid": "4e9d9b63-989a-4b63-b74d-22b5188f8df7" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "35px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "8efecc6d-6939-40ec-b7c9-077dddc2e4da" - }, - "mobile": { - "value": "46px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "0f253bb1-11d1-4af3-901b-b7b4877d02fa" - } - } - } - } - }, - "switch-control-height-small": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "12px", - "uuid": "3bf75a24-5e95-4c18-9da2-b7088377fe21" - }, - "mobile": { - "value": "16px", - "uuid": "a1dbcaf0-bbcf-444d-9d22-7f86db20303a" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "44ed85d1-9e7c-4d81-9150-ad83fdafc328" - }, - "mobile": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "a0df76f3-334c-404e-af94-651dc1631551" - } - } - } - } - }, - "switch-control-height-medium": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "14px", - "uuid": "f97f0f1b-c0c2-410f-b116-86d30f4d52cf" - }, - "mobile": { - "value": "18px", - "uuid": "0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "16px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "689162cb-9515-4d7d-bff3-8ae261aa314d" - }, - "mobile": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "4d30aa11-6dfd-4049-97fb-becec10241d6" - } - } - } - } - }, - "switch-control-height-large": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "16px", - "uuid": "8301bfca-a086-4efd-a22f-1d348cbd6dcf" - }, - "mobile": { - "value": "20px", - "uuid": "91b828ce-8ff9-4d32-958e-a8a23ef9b345" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "b8f10f46-a1f8-4c73-ae1a-a3d70258d894" - }, - "mobile": { - "value": "22px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "db3ec089-c51c-48f6-9f3e-0588173bb5f2" - } - } - } - } - }, - "switch-control-height-extra-large": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "18px", - "uuid": "2372d602-78ce-45a7-9dff-152152e55117" - }, - "mobile": { - "value": "22px", - "uuid": "b7ae7b32-b347-4e09-9978-3b0b92a4dbab" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "7891f610-9a54-4889-a5e7-747637939809" - }, - "mobile": { - "value": "26px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "00e246ce-9510-4429-bbc9-74b442865798" - } - } - } - } - }, - "switch-top-to-control-small": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "6px", - "uuid": "8a907825-236c-4548-91c4-2123e095726c" - }, - "mobile": { - "value": "7px", - "uuid": "f379c453-da21-41f6-92d1-9b6bdb95fd86" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "5px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "6e1df1c4-6a80-4b8c-99aa-24308cc68c94" - }, - "mobile": { - "value": "6px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "85c920b2-1f23-4bf1-90ae-e5c92d854c77" - } - } - } - } - }, - "switch-top-to-control-medium": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "9px", - "uuid": "0135b823-5097-43bb-9911-9f731146af3b" - }, - "mobile": { - "value": "11px", - "uuid": "68276028-41d8-49e1-b0d4-f70cd27ab149" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "8px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "f5575230-258b-474c-b078-8935a9f02f23" - }, - "mobile": { - "value": "10px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "7ba17c8b-51a1-47e3-a3be-7c8a746ab04c" - } - } - } - } - }, - "switch-top-to-control-large": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "12px", - "uuid": "f2c965e6-89fb-4b9d-843d-cfde31b7703d" - }, - "mobile": { - "value": "15px", - "uuid": "035e786b-17f2-488e-a049-84b257a3312f" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "11px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "2aae56b2-4639-41a4-9037-409412564fd0" - }, - "mobile": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "43037e51-b895-4599-9d67-afcd17b0d9de" - } - } - } - } - }, - "switch-top-to-control-extra-large": { - "component": "switch", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "15px", - "uuid": "fbc21571-970f-4bb2-8280-f6262446896b" - }, - "mobile": { - "value": "19px", - "uuid": "7e95ad9a-ca10-4f06-9c19-8dd2270cfdad" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "b7e7048a-2a27-4ccc-8f4d-717c09fb5b3f" - }, - "mobile": { - "value": "17px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "67f76075-33fb-4cbf-8785-cb1d626d2a04" - } - } - } - } - }, - "radio-button-control-size-small": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "12px", - "uuid": "407304fc-7c74-4427-9032-b44ab03c07ce" - }, - "mobile": { - "value": "16px", - "uuid": "90a2b18a-61c7-40d8-926c-d6b18a641010" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "da052fde-007d-4c69-b112-67f50452755a" - }, - "mobile": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "cf3edaa4-3897-491a-add0-53f8057925da" - } - } - } - } - }, - "radio-button-control-size-medium": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "14px", - "uuid": "9de5b045-532c-48ef-872e-bd3c22f89a41" - }, - "mobile": { - "value": "18px", - "uuid": "2eef4003-e666-48e7-b25b-8c50063ce400" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "16px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "14ea1874-1a46-404f-8baf-1c0c0832ff33" - }, - "mobile": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "ae670151-1eaa-4de5-9a67-2e7a553b7b63" - } - } - } - } - }, - "radio-button-control-size-large": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "16px", - "uuid": "cadf4b9e-b4d4-4ff5-808b-557864cf7dc8" - }, - "mobile": { - "value": "20px", - "uuid": "23d0a4aa-693d-4b79-b942-3898f9cf0b80" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "ec32e1d6-da75-47f4-ae14-f47d28912187" - }, - "mobile": { - "value": "22px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "2d0cb7dc-68e0-4e88-a2eb-5b4feac5c800" - } - } - } - } - }, - "radio-button-control-size-extra-large": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "18px", - "uuid": "f8f1d29b-4093-40ed-b73c-7a27e27a63a4" - }, - "mobile": { - "value": "22px", - "uuid": "cc041f48-aaa4-4c20-8990-599e0c56134e" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "be02f790-a7a2-4570-9065-5942b690c7ed" - }, - "mobile": { - "value": "26px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "c5f734ba-bf7a-4b64-8d70-8109fead6a90" - } - } - } - } - }, - "radio-button-top-to-control-small": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "6px", - "uuid": "b775d7e9-d182-4818-9ae0-b3765a0ecbf7" - }, - "mobile": { - "value": "7px", - "uuid": "02438c4c-161d-45eb-935d-b083ab830876" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "5px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "587b784a-09b3-48cb-987b-6e0ca4eff810" - }, - "mobile": { - "value": "6px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "39ae9b23-fc0d-45d7-beaa-42e7489fbd6e" - } - } - } - } - }, - "radio-button-top-to-control-medium": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "9px", - "uuid": "dcc0155a-6bd1-4148-acaf-e255a7f4d22a" - }, - "mobile": { - "value": "11px", - "uuid": "2f805530-cefe-420a-89e6-a6a81c0faea0" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "8px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "53cf73f2-b7ad-4daf-88c0-c3285898120a" - }, - "mobile": { - "value": "10px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "8629a0e6-b0bc-4447-b17d-8717b766579c" - } - } - } - } - }, - "radio-button-top-to-control-large": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "12px", - "uuid": "309c9559-1763-4345-8090-aaa12f570889" - }, - "mobile": { - "value": "15px", - "uuid": "41d0dde7-de34-4e99-96d0-4f727ed71673" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "11px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "5315bd57-b934-4668-8204-e64d2eec70e6" - }, - "mobile": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "9db66e19-9553-47ca-ac5c-118a6b5f043a" - } - } - } - } - }, - "radio-button-top-to-control-extra-large": { - "component": "radio-button", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "15px", - "uuid": "f4620f0a-43ba-4650-8640-9425ed1a1260" - }, - "mobile": { - "value": "19px", - "uuid": "c478710f-1747-455b-998a-6fa837762905" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "14px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "37397c94-a464-4ae7-9448-720b4696bbdb" - }, - "mobile": { - "value": "17px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "42768b7d-b75d-4236-a8d3-e14d1d6e6f55" - } - } - } - } - }, + "checkbox-control-size-small": {}, + "checkbox-control-size-medium": {}, + "checkbox-control-size-large": {}, + "checkbox-control-size-extra-large": {}, + "checkbox-top-to-control-small": {}, + "checkbox-top-to-control-medium": {}, + "checkbox-top-to-control-large": {}, + "checkbox-top-to-control-extra-large": {}, + "switch-control-width-small": {}, + "switch-control-width-medium": {}, + "switch-control-width-large": {}, + "switch-control-width-extra-large": {}, + "switch-control-height-small": {}, + "switch-control-height-medium": {}, + "switch-control-height-large": {}, + "switch-control-height-extra-large": {}, + "switch-top-to-control-small": {}, + "switch-top-to-control-medium": {}, + "switch-top-to-control-large": {}, + "switch-top-to-control-extra-large": {}, + "radio-button-control-size-small": {}, + "radio-button-control-size-medium": {}, + "radio-button-control-size-large": {}, + "radio-button-control-size-extra-large": {}, + "radio-button-top-to-control-small": {}, + "radio-button-top-to-control-medium": {}, + "radio-button-top-to-control-large": {}, + "radio-button-top-to-control-extra-large": {}, "radio-button-selection-indicator": { "component": "radio-button", "value": "4px", @@ -2063,579 +1167,29 @@ "uuid": "dac5c077-b948-434b-91bd-0759c2414007" }, "slider-track-thickness": { - "component": "slider", - "sets": { - "spectrum": { - "value": "2px", - "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b" - }, - "express": { - "value": "4px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "c3844fed-2f84-46da-9b00-cc8e0dbf0336" - } - } - }, - "slider-control-height-small": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "use `component-height-75` instead", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "14px", - "uuid": "cf748652-099a-4022-ae68-0e5dcb8eff9b" - }, - "mobile": { - "value": "18px", - "uuid": "19adc707-4fc6-40f0-a972-340d6c935908" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "87a12a8a-f40e-44ea-a2ba-3474517e75cd" - }, - "mobile": { - "value": "22px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "6ea5501c-63cc-45ff-8fa0-5863f1214f5f" - } - } - } - } - }, - "slider-control-height-medium": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "use `component-height-100` instead", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "16px", - "uuid": "dd3b649d-12f8-427b-95a6-a4964d92d3b0" - }, - "mobile": { - "value": "20px", - "uuid": "7306fc00-67fd-4ccd-aec3-7a14e092da5e" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "fa994412-f688-4fe5-9d17-79669bde7d30" - }, - "mobile": { - "value": "24px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "bb501252-cfd3-4ccc-89bf-0aa74713feab" - } - } - } - } - }, - "slider-control-height-large": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "use `component-height-200` instead", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "18px", - "uuid": "320abda8-9fe8-4f78-87d6-3f1be921e880" - }, - "mobile": { - "value": "22px", - "uuid": "0926d8f3-bdd6-4dde-89d0-6d5d7ab9f094" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "22px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "4f19dbe1-2a1f-4406-88b6-807a0027cf8d" - }, - "mobile": { - "value": "28px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "b77e83d6-1a06-42fd-8cb5-e4f68f8c030b" - } - } - } - } - }, - "slider-control-height-extra-large": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "use `component-height-300` instead", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "20px", - "uuid": "fd74d5a5-b966-4d26-abca-58c7a21f8136" - }, - "mobile": { - "value": "26px", - "uuid": "c5d47ebf-c83f-43c3-b2f2-f4d51c40960b" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "24px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "42d3374f-79a6-4473-a3b5-033c7bd7d99b" - }, - "mobile": { - "value": "30px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "a5cc511d-b8c4-4fb8-9ca6-cf73c5071324" - } - } - } - } - }, - "slider-handle-size-small": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "14px", - "uuid": "1384d419-bfad-44d7-847c-a0f2c195fb93" - }, - "mobile": { - "value": "18px", - "uuid": "7feb3d57-59fb-4095-966e-e8ca0e91442f" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "18px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "d59c3ced-b57a-4b42-8693-c71b3579f3a7" - }, - "mobile": { - "value": "22px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "f424a2ec-ed1f-4739-b619-494e36f880e7" - } - } - } - } - }, - "slider-handle-size-medium": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "16px", - "uuid": "a8a02181-c797-461d-a666-a63f7535a096" - }, - "mobile": { - "value": "20px", - "uuid": "278fc618-f6c1-4d30-bf85-075654079003" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "20px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "8e0e1863-e992-4ca4-b25e-ba93060a3746" - }, - "mobile": { - "value": "24px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "04bef018-e59f-4c3d-8ece-79b9614fd813" - } - } - } - } - }, - "slider-handle-size-large": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "18px", - "uuid": "3df3c866-faf0-43db-8c18-f442e7f94822" - }, - "mobile": { - "value": "22px", - "uuid": "2a3fb9b0-d701-4e86-8180-9d81f68e91d5" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "22px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "bbf15614-e738-43fb-9eef-011662f50591" - }, - "mobile": { - "value": "28px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "1d5c2e61-9381-4434-b76f-2160e933ba79" - } - } - } - } - }, - "slider-handle-size-extra-large": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "20px", - "uuid": "10ccce0d-5a2c-414e-8055-0be76709c180" - }, - "mobile": { - "value": "26px", - "uuid": "413dc697-1f14-47c8-a7f2-e52254513e6e" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "24px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "77fff5f5-8941-4cd4-b814-9eb5f0720e77" - }, - "mobile": { - "value": "30px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "5edbd2bb-e986-4e3a-a627-04f62c94384f" - } - } - } - } - }, - "slider-handle-border-width-down-small": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "5px", - "uuid": "c9b7d8d9-c5ba-4d97-a03b-a214104ede23" - }, - "mobile": { - "value": "7px", - "uuid": "683fb538-290c-423f-990b-d7134e485f51" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "02b0ad1e-392b-4db3-a002-e2893170d3ff" - }, - "mobile": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "42c33935-3d84-4aef-a701-082db752cd15" - } - } - } - } - }, - "slider-handle-border-width-down-medium": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "6px", - "uuid": "63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25" - }, - "mobile": { - "value": "8px", - "uuid": "25959ff8-6c2f-4612-8d69-b95bfe485ce4" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "8b9ec3a7-393b-4cce-82ce-3d75963f03f7" - }, - "mobile": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "9ae32e64-309f-4732-b01b-3bebfb77d286" - } - } - } - } - }, - "slider-handle-border-width-down-large": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "7px", - "uuid": "525e7d74-2bc0-48ac-85ca-b07335819a31" - }, - "mobile": { - "value": "9px", - "uuid": "3bf8805b-b4f7-4d0d-af85-d227d6380539" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "2a8534ec-8949-4212-9ed1-03ac9fd0349a" - }, - "mobile": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "b8c147c1-f528-4878-bd5f-7438cac59070" - } - } - } - } - }, - "slider-handle-border-width-down-extra-large": { - "component": "slider", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "8px", - "uuid": "47d025e2-0b26-4ebc-9b46-3cd1e470b9bc" - }, - "mobile": { - "value": "11px", - "uuid": "feac9f02-b52a-4694-a5d4-4b1930ab4f07" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "c13916ff-d225-4106-a625-daea77871a31" - }, - "mobile": { - "value": "{border-width-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "4e420f10-cf3a-478f-a355-8f4050ea1b06" - } - } - } - } - }, + "value": "2px", + "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b" + }, + "slider-control-height-small": {}, + "slider-control-height-medium": {}, + "slider-control-height-large": {}, + "slider-control-height-extra-large": {}, + "slider-handle-size-small": {}, + "slider-handle-size-medium": {}, + "slider-handle-size-large": {}, + "slider-handle-size-extra-large": {}, + "slider-handle-border-width-down-small": {}, + "slider-handle-border-width-down-medium": {}, + "slider-handle-border-width-down-large": {}, + "slider-handle-border-width-down-extra-large": {}, "slider-handle-gap": { - "component": "slider", - "sets": { - "spectrum": { - "value": "4px", - "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42" - }, - "express": { - "value": "0px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "f7aa286c-54d8-4e6b-98b6-46cf06566ea7" - } - } - }, - "slider-bottom-to-handle-small": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "no longer needed with the increased control height", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "5px", - "uuid": "bf2e4550-f97e-4bd2-91e8-b0ddb5a8abe2" - }, - "mobile": { - "value": "6px", - "uuid": "3b96ab4f-6628-4ebd-aba8-2837fce04709" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "3px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "96c6ddaa-e4a3-43d2-b402-6a0ca1a4a0c6" - }, - "mobile": { - "value": "4px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "c9e4aabc-3302-42ae-b794-9d8a46f4ba2e" - } - } - } - } - }, - "slider-bottom-to-handle-medium": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "no longer needed with the increased control height", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "8px", - "uuid": "238ebdc2-e51c-459d-8cc7-abfeafed6451" - }, - "mobile": { - "value": "10px", - "uuid": "5030babb-0017-4784-84ad-d3aaacf6fa05" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "6px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "099ef7a9-c530-4f29-82d0-9ebfeae4a659" - }, - "mobile": { - "value": "8px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "5782a8d7-5af0-462f-8f97-0d82344586dd" - } - } - } - } - }, - "slider-bottom-to-handle-large": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "no longer needed with the increased control height", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "11px", - "uuid": "be9aed61-c7a1-4dce-80a7-07c9ecef1fd9" - }, - "mobile": { - "value": "14px", - "uuid": "3915ff73-11dd-4389-8d81-2f540ab060f4" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "9px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "826fdfae-7855-40a1-930d-511f48e5cc64" - }, - "mobile": { - "value": "12px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "4a3a1b22-5ec2-4b1a-9bbe-784e865c5aba" - } - } - } - } - }, - "slider-bottom-to-handle-extra-large": { - "component": "slider", - "deprecated": true, - "deprecated_comment": "no longer needed with the increased control height", - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "14px", - "uuid": "155b6273-1661-4ef5-85c0-a1688ce1ee72" - }, - "mobile": { - "value": "17px", - "uuid": "e04d9975-4a54-416b-b5fa-87f3ae930204" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "12px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "99cc688d-1dfa-440c-b6ce-d2b0b162f997" - }, - "mobile": { - "value": "15px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "fe46f911-0efe-4dfe-b12d-e16fa2939e7f" - } - } - } - } + "value": "4px", + "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42" }, + "slider-bottom-to-handle-small": {}, + "slider-bottom-to-handle-medium": {}, + "slider-bottom-to-handle-large": {}, + "slider-bottom-to-handle-extra-large": {}, "slider-control-to-field-label-small": { "component": "slider", "sets": { @@ -6058,43 +4612,16 @@ "uuid": "5f844b3f-e0d7-40f0-a754-a14bee6a0fb4" }, "in-field-button-fill-stacked-inner-border-rounding": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "0px", - "uuid": "f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1" - }, - "express": { - "value": "1px", - "uuid": "5a3e434f-f915-4a72-985b-04af51c3ad7e" - } - } + "value": "0px", + "uuid": "f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1" }, "in-field-button-edge-to-fill": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "0px", - "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43" - }, - "express": { - "value": "4px", - "uuid": "670a4fef-5e16-4db6-8acd-b747cc783312" - } - } + "value": "0px", + "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43" }, "in-field-button-stacked-inner-edge-to-fill": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "0px", - "uuid": "56b54ece-0ff3-4957-9c1c-9e7fb992653c" - }, - "express": { - "value": "1px", - "uuid": "c1aa585e-769d-40d6-a42d-c9d602124870" - } - } + "value": "0px", + "uuid": "56b54ece-0ff3-4957-9c1c-9e7fb992653c" }, "in-field-button-edge-to-disclosure-icon-stacked-small": { "component": "in-field-button", @@ -6122,94 +4649,31 @@ "uuid": "9890df35-2d45-4767-9cbe-ee745d09d990" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "3px", - "uuid": "a87d68bb-4249-43cd-947d-bd061baba0ef" - }, - "express": { - "value": "5px", - "uuid": "b942ec2c-f70f-4948-8ff5-0bd471cd4f0a" - } - } + "value": "3px", + "uuid": "a87d68bb-4249-43cd-947d-bd061baba0ef" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "4px", - "uuid": "acc9c48a-f461-48ff-9f69-0224c4feabc6" - }, - "express": { - "value": "7px", - "uuid": "345002c5-88fc-4297-aa91-54ed292265b8" - } - } + "value": "4px", + "uuid": "acc9c48a-f461-48ff-9f69-0224c4feabc6" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "5px", - "uuid": "391e1e67-1677-4f60-a09a-3b49bacd01f5" - }, - "express": { - "value": "8px", - "uuid": "33e443d8-3e31-4f17-ab37-61beebaa9d40" - } - } + "value": "5px", + "uuid": "391e1e67-1677-4f60-a09a-3b49bacd01f5" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-small": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-small}", - "uuid": "6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab" - }, - "express": { - "value": "1px", - "uuid": "ec74220b-c091-4b29-8e43-9d3f0e163820" - } - } + "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-small}", + "uuid": "6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-medium}", - "uuid": "3dd5babb-5026-4f28-89ae-bfe687673f31" - }, - "express": { - "value": "1px", - "uuid": "5bddcd79-3829-4764-853a-b83512b5820d" - } - } + "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-medium}", + "uuid": "3dd5babb-5026-4f28-89ae-bfe687673f31" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-large}", - "uuid": "710ebe58-f0d8-4d6b-8974-0be1f2f48dc4" - }, - "express": { - "value": "3px", - "uuid": "7135afd9-ef05-4909-8b3e-eeae3d527bd0" - } - } + "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-large}", + "uuid": "710ebe58-f0d8-4d6b-8974-0be1f2f48dc4" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "sets": { - "spectrum": { - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large}", - "uuid": "c47499c1-b89f-49a7-bbb5-17e83e4b306e" - }, - "express": { - "value": "4px", - "uuid": "979542c9-2328-495c-8abf-cb226b140f82" - } - } + "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large}", + "uuid": "c47499c1-b89f-49a7-bbb5-17e83e4b306e" } } diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 81735645..5b9eb3fb 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1,196 +1,10 @@ { - "corner-radius-75": { - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "2px", - "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" - }, - "mobile": { - "value": "2px", - "uuid": "cddbb2f6-b3a8-4416-90ed-0d7cd1bc7248" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "3px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "ff10f01b-82a9-46cb-8581-3b02f3dc988d" - }, - "mobile": { - "value": "4px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "a02a1154-142f-43bf-b3d7-91dafdc4a40d" - } - } - } - } - }, - "corner-radius-100": { - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "4px", - "uuid": "bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30" - }, - "mobile": { - "value": "5px", - "uuid": "e22537bb-a29f-47e5-be13-7e2775ee1103" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "6px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "36d9fa63-3f0f-4ce3-8cc6-2d70472e519c" - }, - "mobile": { - "value": "8px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "2bc66f64-7546-4501-9604-d40759b10062" - } - } - } - } - }, - "corner-radius-200": { - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "8px", - "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" - }, - "mobile": { - "value": "10px", - "uuid": "23f751eb-a076-487d-a5e1-1c0eb2937018" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "12px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "72f53c69-0ce4-4d02-835d-4513838db9e8" - }, - "mobile": { - "value": "16px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "c6a87683-3fc2-494a-9650-8edc3d75cba9" - } - } - } - } - }, - "drop-shadow-x": { - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "0px", - "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316" - }, - "mobile": { - "value": "0px", - "uuid": "4e20cec6-96b6-4e9c-8b25-c819731b89ba" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "0px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "b2f11af3-12fe-436a-aa83-9e96a08c7cf5" - }, - "mobile": { - "value": "0px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "d40c3468-2f10-41be-940b-96933464efae" - } - } - } - } - }, - "drop-shadow-y": { - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "1px", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" - }, - "mobile": { - "value": "2px", - "uuid": "32950bbd-7292-452d-a445-4eb6de66c77d" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "4px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "c76888b3-57c0-45fb-9c55-ac21d95a9263" - }, - "mobile": { - "value": "4px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "a4213f34-f0ee-45a1-a2ed-225bbe0ec857" - } - } - } - } - }, - "drop-shadow-blur": { - "sets": { - "spectrum": { - "sets": { - "desktop": { - "value": "4px", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" - }, - "mobile": { - "value": "6px", - "uuid": "374f321e-8b0b-442b-9494-6a2ae9936c6b" - } - } - }, - "express": { - "sets": { - "desktop": { - "value": "16px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "b2677a44-abf9-44db-9d06-35039ffa47fd" - }, - "mobile": { - "value": "16px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "2529adec-ab2e-4e04-aa83-fa9cdd7df1f2" - } - } - } - } - }, + "corner-radius-75": {}, + "corner-radius-100": {}, + "corner-radius-200": {}, + "drop-shadow-x": {}, + "drop-shadow-y": {}, + "drop-shadow-blur": {}, "android-elevation": { "value": "2dp", "uuid": "f9456531-ab61-4c14-b7af-7016ce1c0d3e" @@ -504,18 +318,8 @@ "uuid": "693651ef-71c7-4096-91a5-1c84cb861021" }, "border-width-100": { - "sets": { - "spectrum": { - "value": "1px", - "uuid": "b5525080-28e7-4eb7-aee9-fb2c71a16f68" - }, - "express": { - "value": "2px", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "84d5fd5a-8245-44b0-8ce5-2ca22a0bc75c" - } - } + "value": "1px", + "uuid": "b5525080-28e7-4eb7-aee9-fb2c71a16f68" }, "border-width-200": { "value": "2px", diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index d68751d1..adbe4a62 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -1,199 +1,59 @@ { "accent-color-100": { - "sets": { - "spectrum": { - "value": "{blue-100}", - "uuid": "2e080bb5-6f2c-4fd9-96a2-bf9fc19d2649" - }, - "express": { - "value": "{indigo-100}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "f9fc7606-b699-46e7-b139-aeefc287923c" - } - } + "value": "{blue-100}", + "uuid": "2e080bb5-6f2c-4fd9-96a2-bf9fc19d2649" }, "accent-color-200": { - "sets": { - "spectrum": { - "value": "{blue-200}", - "uuid": "cf583998-4dfd-4222-a554-8e05ed7fb5d6" - }, - "express": { - "value": "{indigo-200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "78e50d0b-78a0-46c4-8262-417143f00902" - } - } + "value": "{blue-200}", + "uuid": "cf583998-4dfd-4222-a554-8e05ed7fb5d6" }, "accent-color-300": { - "sets": { - "spectrum": { - "value": "{blue-300}", - "uuid": "ea67f054-1f42-427e-a768-beb8d21de2a3" - }, - "express": { - "value": "{indigo-300}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "d014e1e8-a5f8-4169-8c43-d69afd07847a" - } - } + "value": "{blue-300}", + "uuid": "ea67f054-1f42-427e-a768-beb8d21de2a3" }, "accent-color-400": { - "sets": { - "spectrum": { - "value": "{blue-400}", - "uuid": "a249e4b1-e6f9-4ef3-96c6-1559059839a7" - }, - "express": { - "value": "{indigo-400}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "1b70bc67-7877-4f92-8ce4-1abd2665fab1" - } - } + "value": "{blue-400}", + "uuid": "a249e4b1-e6f9-4ef3-96c6-1559059839a7" }, "accent-color-500": { - "sets": { - "spectrum": { - "value": "{blue-500}", - "uuid": "c1c0e6fb-ce21-49d7-91bb-73ce873aa69f" - }, - "express": { - "value": "{indigo-500}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "06246e8e-44da-49a3-8d65-7f3ce1ec8128" - } - } + "value": "{blue-500}", + "uuid": "c1c0e6fb-ce21-49d7-91bb-73ce873aa69f" }, "accent-color-600": { - "sets": { - "spectrum": { - "value": "{blue-600}", - "uuid": "5a2000be-5640-4389-a128-b2c164ad2253" - }, - "express": { - "value": "{indigo-600}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "eaee7f34-1725-411e-9a23-2331167e08f5" - } - } + "value": "{blue-600}", + "uuid": "5a2000be-5640-4389-a128-b2c164ad2253" }, "accent-color-700": { - "sets": { - "spectrum": { - "value": "{blue-700}", - "uuid": "a8fbe39b-db6d-4bb4-a7c5-8a235060d2ae" - }, - "express": { - "value": "{indigo-700}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "5c7ac5cc-4fe4-4392-a5c3-4274cd15a48e" - } - } + "value": "{blue-700}", + "uuid": "a8fbe39b-db6d-4bb4-a7c5-8a235060d2ae" }, "accent-color-800": { - "sets": { - "spectrum": { - "value": "{blue-800}", - "uuid": "87a2c8f0-54fd-4939-8f42-3124fde1e49e" - }, - "express": { - "value": "{indigo-800}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "3cf62c35-1e2e-4400-886f-473de9e8a958" - } - } + "value": "{blue-800}", + "uuid": "87a2c8f0-54fd-4939-8f42-3124fde1e49e" }, "accent-color-900": { - "sets": { - "spectrum": { - "value": "{blue-900}", - "uuid": "90d82778-1cbb-47c0-aab9-b6e38a9cdc54" - }, - "express": { - "value": "{indigo-900}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "42d37753-8b78-4328-a895-7b74d9a7aa86" - } - } + "value": "{blue-900}", + "uuid": "90d82778-1cbb-47c0-aab9-b6e38a9cdc54" }, "accent-color-1000": { - "sets": { - "spectrum": { - "value": "{blue-1000}", - "uuid": "9bf3fa2f-75d3-44d3-ae30-d88893665366" - }, - "express": { - "value": "{indigo-1000}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "b848c6ce-f921-4303-b298-20e359a1aa2e" - } - } + "value": "{blue-1000}", + "uuid": "9bf3fa2f-75d3-44d3-ae30-d88893665366" }, "accent-color-1100": { - "sets": { - "spectrum": { - "value": "{blue-1100}", - "uuid": "f7f853a5-f091-4a7e-8aea-68d060c840f0" - }, - "express": { - "value": "{indigo-1100}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "46991cf0-e4e5-4c32-a140-4589e2456523" - } - } + "value": "{blue-1100}", + "uuid": "f7f853a5-f091-4a7e-8aea-68d060c840f0" }, "accent-color-1200": { - "sets": { - "spectrum": { - "value": "{blue-1200}", - "uuid": "7c141cdb-1e5e-468a-ba48-0df01b275402" - }, - "express": { - "value": "{indigo-1200}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "7de1e3f0-a5b3-4a09-955b-242ff78dbaa9" - } - } + "value": "{blue-1200}", + "uuid": "7c141cdb-1e5e-468a-ba48-0df01b275402" }, "accent-color-1300": { - "sets": { - "spectrum": { - "value": "{blue-1300}", - "uuid": "f7307eba-e311-41a8-bb50-0b1e96833dfa" - }, - "express": { - "value": "{indigo-1300}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "a598813b-347f-4528-aa35-94b6642985db" - } - } + "value": "{blue-1300}", + "uuid": "f7307eba-e311-41a8-bb50-0b1e96833dfa" }, "accent-color-1400": { - "sets": { - "spectrum": { - "value": "{blue-1400}", - "uuid": "06585cf4-a924-49b2-b6c8-f0e80b57c576" - }, - "express": { - "value": "{indigo-1400}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "12c250df-6088-4c20-8b04-59814d53ed7a" - } - } + "value": "{blue-1400}", + "uuid": "06585cf4-a924-49b2-b6c8-f0e80b57c576" }, "informative-color-100": { "value": "{blue-100}", diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index 0b8bb26b..141b478a 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -293,19 +293,8 @@ "uuid": "b5704c75-2914-4268-9023-7f7452e826c1" }, "heading-sans-serif-font-weight": { - "component": "heading", - "sets": { - "spectrum": { - "value": "{bold-font-weight}", - "uuid": "1d4d09b4-021a-48e8-a724-bfecc13df325" - }, - "express": { - "value": "{black-font-weight}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "e5bfbd82-a8e6-43dc-b2b6-dc1e171f48aa" - } - } + "value": "{bold-font-weight}", + "uuid": "1d4d09b4-021a-48e8-a724-bfecc13df325" }, "heading-sans-serif-font-style": { "component": "heading", @@ -313,19 +302,8 @@ "uuid": "561d905e-7f44-43da-b2b4-26e12551ef6d" }, "heading-serif-font-weight": { - "component": "heading", - "sets": { - "spectrum": { - "value": "{bold-font-weight}", - "uuid": "350aa193-9996-49c8-b5e4-54d4f7bef3c2" - }, - "express": { - "value": "{black-font-weight}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "36bea3bb-06b8-4c66-87ad-ffc86be18243" - } - } + "value": "{bold-font-weight}", + "uuid": "350aa193-9996-49c8-b5e4-54d4f7bef3c2" }, "heading-serif-font-style": { "component": "heading", @@ -333,19 +311,8 @@ "uuid": "938f3684-44c6-4ae2-935a-b88921fcd7fe" }, "heading-cjk-font-weight": { - "component": "heading", - "sets": { - "spectrum": { - "value": "{extra-bold-font-weight}", - "uuid": "bd54516c-2fda-4421-ab62-720c3a887a34" - }, - "express": { - "value": "{black-font-weight}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "21643fcd-b1da-4057-8fb5-e75167c0d89f" - } - } + "value": "{extra-bold-font-weight}", + "uuid": "bd54516c-2fda-4421-ab62-720c3a887a34" }, "heading-cjk-font-style": { "component": "heading", @@ -503,19 +470,8 @@ "uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7" }, "heading-sans-serif-emphasized-font-weight": { - "component": "heading", - "sets": { - "spectrum": { - "value": "{bold-font-weight}", - "uuid": "e4a183fd-53c5-4dbb-afd1-6308e2e74f80" - }, - "express": { - "value": "{black-font-weight}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "723c8306-12fb-4cb5-9fd2-3ad40d57bb25" - } - } + "value": "{bold-font-weight}", + "uuid": "e4a183fd-53c5-4dbb-afd1-6308e2e74f80" }, "heading-sans-serif-emphasized-font-style": { "component": "heading", @@ -523,19 +479,8 @@ "uuid": "2f17833a-28a4-4152-8999-12b077557797" }, "heading-serif-emphasized-font-weight": { - "component": "heading", - "sets": { - "spectrum": { - "value": "{bold-font-weight}", - "uuid": "a0983216-b0c5-4a3f-97dc-96ee711acb1f" - }, - "express": { - "value": "{black-font-weight}", - "deprecated": true, - "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", - "uuid": "e9b3a7b0-ae46-48be-a143-f26463860d3f" - } - } + "value": "{bold-font-weight}", + "uuid": "a0983216-b0c5-4a3f-97dc-96ee711acb1f" }, "heading-serif-emphasized-font-style": { "component": "heading", From 4f518beed145855b1fdceb733182b989ef15a02e Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 18 Sep 2023 15:30:31 -0600 Subject: [PATCH 003/295] chore(tokens): added changeset for beta prerelease --- .changeset/happy-students-vanish.md | 116 ++++++++++++++++++++++++++++ .changeset/pre.json | 12 +++ 2 files changed, 128 insertions(+) create mode 100644 .changeset/happy-students-vanish.md create mode 100644 .changeset/pre.json diff --git a/.changeset/happy-students-vanish.md b/.changeset/happy-students-vanish.md new file mode 100644 index 00000000..681a9ae0 --- /dev/null +++ b/.changeset/happy-students-vanish.md @@ -0,0 +1,116 @@ +--- +"@adobe/spectrum-tokens": major +--- + +Merged Spectrum and Express system set data. This is part of the Spectrum 2 work that will no longer have two separate systems. + +The merge takes the keeps the `value` and `uuid` from `spectrum`. + +## Token Diff + +
Tokens values updated (102): + +- `accent-background-color-default` +- `accent-background-color-down` +- `accent-background-color-hover` +- `accent-background-color-key-focus` +- `accent-color-100` +- `accent-color-1000` +- `accent-color-1100` +- `accent-color-1200` +- `accent-color-1300` +- `accent-color-1400` +- `accent-color-200` +- `accent-color-300` +- `accent-color-400` +- `accent-color-500` +- `accent-color-600` +- `accent-color-700` +- `accent-color-800` +- `accent-color-900` +- `accent-content-color-default` +- `accent-content-color-down` +- `accent-content-color-hover` +- `accent-content-color-key-focus` +- `accent-content-color-selected` +- `accent-visual-color` +- `border-width-100` +- `checkbox-control-size-extra-large` +- `checkbox-control-size-large` +- `checkbox-control-size-medium` +- `checkbox-control-size-small` +- `checkbox-top-to-control-extra-large` +- `checkbox-top-to-control-large` +- `checkbox-top-to-control-medium` +- `checkbox-top-to-control-small` +- `color-area-border-rounding` +- `color-area-border-width` +- `color-handle-drop-shadow-color` +- `corner-radius-100` +- `corner-radius-200` +- `corner-radius-75` +- `drop-shadow-blur` +- `drop-shadow-x` +- `drop-shadow-y` +- `drop-zone-background-color` +- `heading-cjk-font-weight` +- `heading-sans-serif-emphasized-font-weight` +- `heading-sans-serif-font-weight` +- `heading-serif-emphasized-font-weight` +- `heading-serif-font-weight` +- `in-field-button-edge-to-fill` +- `in-field-button-fill-stacked-inner-border-rounding` +- `in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large` +- `in-field-button-inner-edge-to-disclosure-icon-stacked-large` +- `in-field-button-inner-edge-to-disclosure-icon-stacked-medium` +- `in-field-button-inner-edge-to-disclosure-icon-stacked-small` +- `in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large` +- `in-field-button-outer-edge-to-disclosure-icon-stacked-large` +- `in-field-button-outer-edge-to-disclosure-icon-stacked-medium` +- `in-field-button-stacked-inner-edge-to-fill` +- `neutral-background-color-selected-default` +- `neutral-background-color-selected-down` +- `neutral-background-color-selected-hover` +- `neutral-background-color-selected-key-focus` +- `picker-border-width` +- `radio-button-control-size-extra-large` +- `radio-button-control-size-large` +- `radio-button-control-size-medium` +- `radio-button-control-size-small` +- `radio-button-top-to-control-extra-large` +- `radio-button-top-to-control-large` +- `radio-button-top-to-control-medium` +- `radio-button-top-to-control-small` +- `slider-bottom-to-handle-extra-large` +- `slider-bottom-to-handle-large` +- `slider-bottom-to-handle-medium` +- `slider-bottom-to-handle-small` +- `slider-control-height-extra-large` +- `slider-control-height-large` +- `slider-control-height-medium` +- `slider-control-height-small` +- `slider-handle-border-width-down-extra-large` +- `slider-handle-border-width-down-large` +- `slider-handle-border-width-down-medium` +- `slider-handle-border-width-down-small` +- `slider-handle-gap` +- `slider-handle-size-extra-large` +- `slider-handle-size-large` +- `slider-handle-size-medium` +- `slider-handle-size-small` +- `slider-track-thickness` +- `switch-control-height-extra-large` +- `switch-control-height-large` +- `switch-control-height-medium` +- `switch-control-height-small` +- `switch-control-width-extra-large` +- `switch-control-width-large` +- `switch-control-width-medium` +- `switch-control-width-small` +- `switch-top-to-control-extra-large` +- `switch-top-to-control-large` +- `switch-top-to-control-medium` +- `switch-top-to-control-small` +- `table-selected-row-background-color-non-emphasized` + +
diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 00000000..66baecd4 --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,12 @@ +{ + "mode": "pre", + "tag": "beta", + "initialVersions": { + "site": "0.0.0", + "stvt": "0.0.0", + "@adobe/spectrum-tokens": "12.19.1", + "system-set-merge": "0.0.1", + "token-manifest-builder": "0.0.1" + }, + "changesets": [] +} From def39f27183cec079ea04a5bc74953cfbe24036c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 18 Sep 2023 21:44:12 +0000 Subject: [PATCH 004/295] chore: release (beta) --- .changeset/pre.json | 2 +- packages/tokens/CHANGELOG.md | 117 +++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 119 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 66baecd4..29f94eef 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -8,5 +8,5 @@ "system-set-merge": "0.0.1", "token-manifest-builder": "0.0.1" }, - "changesets": [] + "changesets": ["happy-students-vanish"] } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 4762b5d9..ab3e91b0 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,122 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.0 + +### Major Changes + +- 4f518be: Merged Spectrum and Express system set data. This is part of the Spectrum 2 work that will no longer have two separate systems. + + The merge takes the keeps the `value` and `uuid` from `spectrum`. + + ## Token Diff + +
Tokens values updated (102): + + - `accent-background-color-default` + - `accent-background-color-down` + - `accent-background-color-hover` + - `accent-background-color-key-focus` + - `accent-color-100` + - `accent-color-1000` + - `accent-color-1100` + - `accent-color-1200` + - `accent-color-1300` + - `accent-color-1400` + - `accent-color-200` + - `accent-color-300` + - `accent-color-400` + - `accent-color-500` + - `accent-color-600` + - `accent-color-700` + - `accent-color-800` + - `accent-color-900` + - `accent-content-color-default` + - `accent-content-color-down` + - `accent-content-color-hover` + - `accent-content-color-key-focus` + - `accent-content-color-selected` + - `accent-visual-color` + - `border-width-100` + - `checkbox-control-size-extra-large` + - `checkbox-control-size-large` + - `checkbox-control-size-medium` + - `checkbox-control-size-small` + - `checkbox-top-to-control-extra-large` + - `checkbox-top-to-control-large` + - `checkbox-top-to-control-medium` + - `checkbox-top-to-control-small` + - `color-area-border-rounding` + - `color-area-border-width` + - `color-handle-drop-shadow-color` + - `corner-radius-100` + - `corner-radius-200` + - `corner-radius-75` + - `drop-shadow-blur` + - `drop-shadow-x` + - `drop-shadow-y` + - `drop-zone-background-color` + - `heading-cjk-font-weight` + - `heading-sans-serif-emphasized-font-weight` + - `heading-sans-serif-font-weight` + - `heading-serif-emphasized-font-weight` + - `heading-serif-font-weight` + - `in-field-button-edge-to-fill` + - `in-field-button-fill-stacked-inner-border-rounding` + - `in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large` + - `in-field-button-inner-edge-to-disclosure-icon-stacked-large` + - `in-field-button-inner-edge-to-disclosure-icon-stacked-medium` + - `in-field-button-inner-edge-to-disclosure-icon-stacked-small` + - `in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large` + - `in-field-button-outer-edge-to-disclosure-icon-stacked-large` + - `in-field-button-outer-edge-to-disclosure-icon-stacked-medium` + - `in-field-button-stacked-inner-edge-to-fill` + - `neutral-background-color-selected-default` + - `neutral-background-color-selected-down` + - `neutral-background-color-selected-hover` + - `neutral-background-color-selected-key-focus` + - `picker-border-width` + - `radio-button-control-size-extra-large` + - `radio-button-control-size-large` + - `radio-button-control-size-medium` + - `radio-button-control-size-small` + - `radio-button-top-to-control-extra-large` + - `radio-button-top-to-control-large` + - `radio-button-top-to-control-medium` + - `radio-button-top-to-control-small` + - `slider-bottom-to-handle-extra-large` + - `slider-bottom-to-handle-large` + - `slider-bottom-to-handle-medium` + - `slider-bottom-to-handle-small` + - `slider-control-height-extra-large` + - `slider-control-height-large` + - `slider-control-height-medium` + - `slider-control-height-small` + - `slider-handle-border-width-down-extra-large` + - `slider-handle-border-width-down-large` + - `slider-handle-border-width-down-medium` + - `slider-handle-border-width-down-small` + - `slider-handle-gap` + - `slider-handle-size-extra-large` + - `slider-handle-size-large` + - `slider-handle-size-medium` + - `slider-handle-size-small` + - `slider-track-thickness` + - `switch-control-height-extra-large` + - `switch-control-height-large` + - `switch-control-height-medium` + - `switch-control-height-small` + - `switch-control-width-extra-large` + - `switch-control-width-large` + - `switch-control-width-medium` + - `switch-control-width-small` + - `switch-top-to-control-extra-large` + - `switch-top-to-control-large` + - `switch-top-to-control-medium` + - `switch-top-to-control-small` + - `table-selected-row-background-color-non-emphasized` + +
+ ## 12.19.1 ### Patch Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index e598134c..a9bfa5b0 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "12.19.1", + "version": "13.0.0-beta.0", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From d5d4ccee8efd40eec4bea5cf3da0a643976810e6 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 18 Sep 2023 15:48:22 -0600 Subject: [PATCH 005/295] chore(system-set-merge): set run task to local --- tools/system-set-merge/moon.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/system-set-merge/moon.yml b/tools/system-set-merge/moon.yml index faa3cfa0..c0454917 100644 --- a/tools/system-set-merge/moon.yml +++ b/tools/system-set-merge/moon.yml @@ -22,3 +22,4 @@ tasks: - "src/index.js" outputs: - "@globs(sources)" + local: true From 1bcbbdcfdc6c775178356a829a8f64e2913758e9 Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 19 Sep 2023 12:14:11 -0600 Subject: [PATCH 006/295] chore(transform-tokens-json): cleaned up tool, added merge-dark-darkest tool --- .moon/workspace.yml | 2 +- package.json | 2 +- pnpm-lock.yaml | 56 +++++++++---------- .../README.md | 0 .../moon.yml | 19 +++++-- .../package.json | 4 +- tools/transform-tokens-json/src/lib/shared.js | 35 ++++++++++++ .../src/merge-dark-darkest.js | 42 ++++++++++++++ .../src/merge-spectrum-express.js} | 21 +------ .../test/index.test.js | 0 10 files changed, 127 insertions(+), 54 deletions(-) rename tools/{system-set-merge => transform-tokens-json}/README.md (100%) rename tools/{system-set-merge => transform-tokens-json}/moon.yml (70%) rename tools/{system-set-merge => transform-tokens-json}/package.json (82%) create mode 100644 tools/transform-tokens-json/src/lib/shared.js create mode 100644 tools/transform-tokens-json/src/merge-dark-darkest.js rename tools/{system-set-merge/src/index.js => transform-tokens-json/src/merge-spectrum-express.js} (70%) rename tools/{system-set-merge => transform-tokens-json}/test/index.test.js (100%) diff --git a/.moon/workspace.yml b/.moon/workspace.yml index 6560557a..8e5c0c9a 100644 --- a/.moon/workspace.yml +++ b/.moon/workspace.yml @@ -4,7 +4,7 @@ projects: tokens: "packages/tokens" visualizer: "docs/visualizer" site: "docs/site" - system-set-merge: "tools/system-set-merge" + transform-tokens-json: "tools/transform-tokens-json" vcs: manager: "git" defaultBranch: "main" diff --git a/package.json b/package.json index be30403e..02ff55a9 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "@changesets/cli": "^2.26.2", "@commitlint/cli": "^17.6.6", "@commitlint/config-conventional": "^17.6.6", - "@moonrepo/cli": "^1.13.4", + "@moonrepo/cli": "^1.13.5", "ava": "^5.3.1", "husky": "^8.0.3", "lint-staged": "^13.2.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 13918585..cc8e36bc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,8 +17,8 @@ importers: specifier: ^17.6.6 version: 17.6.6 "@moonrepo/cli": - specifier: ^1.13.4 - version: 1.13.4 + specifier: ^1.13.5 + version: 1.13.5 ava: specifier: ^5.3.1 version: 5.3.1 @@ -153,7 +153,9 @@ importers: specifier: ^3.0.3 version: 3.0.3 - tools/system-set-merge: + tools/token-manifest-builder: {} + + tools/transform-tokens-json: dependencies: glob: specifier: ^10.3.3 @@ -165,8 +167,6 @@ importers: specifier: ^3.0.0 version: 3.0.0 - tools/token-manifest-builder: {} - packages: /@babel/code-frame@7.22.5: resolution: @@ -1051,29 +1051,29 @@ packages: read-yaml-file: 1.1.0 dev: true - /@moonrepo/cli@1.13.4: + /@moonrepo/cli@1.13.5: resolution: { - integrity: sha512-IHqmoKSqGdvROwdkzC0foEBpndbCX5TxAgplEwYW19InGe15Bjt3HkqavVKqBLX63ZR9FmUgak878bj6ya0iBg==, + integrity: sha512-HI5JDm5Trf5dhBhyk64UQVbPtOEh3eQdNkJLBMZMey7tfoLuIQcEorGbEhTSxEAQrQnO7xZyJ6jC6XV1cfG1zw==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.13.4 - "@moonrepo/core-linux-arm64-musl": 1.13.4 - "@moonrepo/core-linux-x64-gnu": 1.13.4 - "@moonrepo/core-linux-x64-musl": 1.13.4 - "@moonrepo/core-macos-arm64": 1.13.4 - "@moonrepo/core-macos-x64": 1.13.4 - "@moonrepo/core-windows-x64-msvc": 1.13.4 + "@moonrepo/core-linux-arm64-gnu": 1.13.5 + "@moonrepo/core-linux-arm64-musl": 1.13.5 + "@moonrepo/core-linux-x64-gnu": 1.13.5 + "@moonrepo/core-linux-x64-musl": 1.13.5 + "@moonrepo/core-macos-arm64": 1.13.5 + "@moonrepo/core-macos-x64": 1.13.5 + "@moonrepo/core-windows-x64-msvc": 1.13.5 dev: true - /@moonrepo/core-linux-arm64-gnu@1.13.4: + /@moonrepo/core-linux-arm64-gnu@1.13.5: resolution: { - integrity: sha512-Iuo3zBsjlj97nqC54x4wFHbDoUESlpjz5nbM/W24ycghfKstfDRHbAAptVSey4BFhc4J5xH+dHsQzDoxa4bKSw==, + integrity: sha512-KS9Lb/sNG1ZLMSwZs9z1s3vG2zsVmQc/6yE98mTtewR3/2jX6wRpH/BZyp5YT1cd+G5VMHE3JfDFDmq0GEC6Pg==, } cpu: [arm64] os: [linux] @@ -1081,10 +1081,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.13.4: + /@moonrepo/core-linux-arm64-musl@1.13.5: resolution: { - integrity: sha512-sKMCneAo3KdKQT059s1HW3PmlnFs4QHDxpab1NEl5A92I5wHnIjUqZcWrEeveUvNxiWwbSagt9YnjdDbmda8zw==, + integrity: sha512-6zsa6seKP9nd1Rb9fm1I3/ozw1IECrnSzwqXogKr358G8mbICEceVTJ3k7yT5DTVTJphjHKpq6xlmRgf+5YZeA==, } cpu: [arm64] os: [linux] @@ -1092,10 +1092,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.13.4: + /@moonrepo/core-linux-x64-gnu@1.13.5: resolution: { - integrity: sha512-3kEW7M3fDNBYL/KQDI5OxDfEr0v6z8zZWz9vsJXhFuw4bt+Y3+IDUmfY++WIj10a5skKYo9lxPUUH4xqIYgQMg==, + integrity: sha512-5Ky68ecL1G0xJp9mJn3shSvKFZOC2P3GTY3SlC68OQwgySDvg5/lPgPYGXzmQhwzsXm12H2LkCXepvxSu6+6pg==, } cpu: [x64] os: [linux] @@ -1103,10 +1103,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.13.4: + /@moonrepo/core-linux-x64-musl@1.13.5: resolution: { - integrity: sha512-TTOi+LyCojCHbdhViYvn2VzfkWxk3NJBaFxduDXzMFKzLoBk4o4Iuo/KB3l33qtQbKSYJDKeZp9908XIZuF7wQ==, + integrity: sha512-xE2aluYBzVDt8WHM37E0rpKXf4JQ+bHGw1o8M0mQCEQSDvcmF4gbz76tHY+yjnogGY0q/Fg0rZnMrTpFu3V/ag==, } cpu: [x64] os: [linux] @@ -1114,10 +1114,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.13.4: + /@moonrepo/core-macos-arm64@1.13.5: resolution: { - integrity: sha512-JnbEe+JgrvfaluqKE4idST8ie8bPZz43lOwPhgRnXZeTayco1klpnq161w8cORe3oAiFvTgXEasojo1GNYZL9g==, + integrity: sha512-t0HwLz14cybPy0ciDaaMEn0UZZMTkFIwNLQMdtGt02YzFk0ibptbyvzsCDbNXMu/qVwSY8OF9nyeVpKGavhyvA==, } cpu: [arm64] os: [darwin] @@ -1125,10 +1125,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.13.4: + /@moonrepo/core-macos-x64@1.13.5: resolution: { - integrity: sha512-0vQBt4CidkiNYdFOZbdLKaBOYqcn3TIL37+Y1k+vyeIwug/KJH9WxRzpHPyPpNlcgD57YqCe4zhlrl2w1gbrMQ==, + integrity: sha512-SY/oARt/TezBzU6MnmocOdFL56phUgbHTlGQRaM0s4R3Q3iHcNtOQWtn0en1mwQ+KPPC2RLT+Izh2ggMZckfnw==, } cpu: [x64] os: [darwin] @@ -1136,10 +1136,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.13.4: + /@moonrepo/core-windows-x64-msvc@1.13.5: resolution: { - integrity: sha512-ceadzV6Y9T+1YjgfYkjKJ1382tN5+60joupOIPNBciLjoMX0Lk/T+MXjlfDqS4hOeKYZwjwjja0zLb9jKuuJjw==, + integrity: sha512-qC8NVqtfSZ07kgqnmVBIK1CspN2voYDpZ+hHlpaO6kOpYd1On9fn7HQKt7Sp1FRPGsQ+sPOMxGv6SJmzn2qMMA==, } cpu: [x64] os: [win32] diff --git a/tools/system-set-merge/README.md b/tools/transform-tokens-json/README.md similarity index 100% rename from tools/system-set-merge/README.md rename to tools/transform-tokens-json/README.md diff --git a/tools/system-set-merge/moon.yml b/tools/transform-tokens-json/moon.yml similarity index 70% rename from tools/system-set-merge/moon.yml rename to tools/transform-tokens-json/moon.yml index c0454917..04e6b4c3 100644 --- a/tools/system-set-merge/moon.yml +++ b/tools/transform-tokens-json/moon.yml @@ -11,15 +11,26 @@ type: tool fileGroups: sources: - "/packages/tokens/src/**/*" + lib: + - "src/**/*" tasks: - run: + merge-spectrum-express: command: - node - - src/index.js + - src/merge-spectrum-express.js platform: node inputs: - "@globs(sources)" - - "src/index.js" - outputs: + - "@globs(lib)" + - "src/merge-spectrum-express.js" + local: true + merge-dark-darkest: + command: + - node + - src/merge-dark-darkest.js + platform: node + inputs: - "@globs(sources)" + - "@globs(lib)" + - "src/merge-dark-darkest.js" local: true diff --git a/tools/system-set-merge/package.json b/tools/transform-tokens-json/package.json similarity index 82% rename from tools/system-set-merge/package.json rename to tools/transform-tokens-json/package.json index 89958cd8..2ee675a9 100644 --- a/tools/system-set-merge/package.json +++ b/tools/transform-tokens-json/package.json @@ -1,7 +1,7 @@ { - "name": "system-set-merge", + "name": "transform-tokens-json", "version": "0.0.1", - "description": "A simple tool to merge system sets in Spectrum Tokens", + "description": "A simple tool to make one time changes in Spectrum Tokens", "type": "module", "private": true, "scripts": {}, diff --git a/tools/transform-tokens-json/src/lib/shared.js b/tools/transform-tokens-json/src/lib/shared.js new file mode 100644 index 00000000..6944d7fd --- /dev/null +++ b/tools/transform-tokens-json/src/lib/shared.js @@ -0,0 +1,35 @@ +/* +Copyright 2023 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. +*/ + +import { glob } from "glob"; + +import { resolve } from "path"; +import { readFile } from "fs/promises"; +import * as url from "url"; +import { writeFile } from "fs/promises"; +import { format } from "prettier"; + +export const __dirname = url.fileURLToPath(new URL(".", import.meta.url)); + +export const tokenFileNames = await glob( + `${resolve(__dirname, "../../../../packages/tokens/src")}/**/*.json`, +); + +export const readJson = async (fileName) => + JSON.parse(await readFile(fileName, "utf8")); + +export const writeJson = async (fileName, jsonData) => { + await writeFile( + fileName, + await format(JSON.stringify(jsonData), { parser: "json-stringify" }), + ); +}; diff --git a/tools/transform-tokens-json/src/merge-dark-darkest.js b/tools/transform-tokens-json/src/merge-dark-darkest.js new file mode 100644 index 00000000..48326b5f --- /dev/null +++ b/tools/transform-tokens-json/src/merge-dark-darkest.js @@ -0,0 +1,42 @@ +/* +Copyright 2023 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. +*/ + +import { JSONPath } from "jsonpath-plus"; +import { readJson, writeJson, tokenFileNames } from "./lib/shared.js"; + +const editedTokenNames = {}; +tokenFileNames.forEach(async (fileName) => { + editedTokenNames[fileName] = []; + const jsonData = await readJson(fileName); + const result = JSONPath({ + path: '$..[?(@property === "darkest" && @parentProperty === "sets")]^^^', + json: jsonData, + callback: (payload, type, obj) => { + const tokenName = obj.parentProperty; + jsonData[tokenName].sets.dark = { + value: jsonData[tokenName].sets.darkest.value, + uuid: jsonData[tokenName].sets.darkest.uuid, + }; + delete jsonData[tokenName].sets.darkest; + editedTokenNames[fileName].push(tokenName); + return payload; + }, + }); + if (editedTokenNames[fileName].length > 0) { + await writeJson(fileName, jsonData); + console.log( + `File: ${fileName} updated ${editedTokenNames[fileName].length} tokens`, + ); + } else { + console.log(`File: ${fileName} not updated`); + } +}); diff --git a/tools/system-set-merge/src/index.js b/tools/transform-tokens-json/src/merge-spectrum-express.js similarity index 70% rename from tools/system-set-merge/src/index.js rename to tools/transform-tokens-json/src/merge-spectrum-express.js index e0f4337a..c3c36e80 100644 --- a/tools/system-set-merge/src/index.js +++ b/tools/transform-tokens-json/src/merge-spectrum-express.js @@ -11,22 +11,10 @@ governing permissions and limitations under the License. */ import { JSONPath } from "jsonpath-plus"; -import { glob } from "glob"; -import { readFile, writeFile } from "fs/promises"; -import { resolve } from "path"; -import { format } from "prettier"; +import { readJson, writeJson, tokenFileNames } from "./lib/shared.js"; -import * as url from "url"; -const __dirname = url.fileURLToPath(new URL(".", import.meta.url)); - -const readJson = async (fileName) => - JSON.parse(await readFile(fileName, "utf8")); - -const tokenFiles = await glob( - `${resolve(__dirname, "../../../packages/tokens/src")}/**/*.json`, -); const editedTokenNames = {}; -tokenFiles.forEach(async (fileName) => { +tokenFileNames.forEach(async (fileName) => { editedTokenNames[fileName] = []; const jsonData = await readJson(fileName); const result = JSONPath({ @@ -44,13 +32,10 @@ tokenFiles.forEach(async (fileName) => { }, }); if (editedTokenNames[fileName].length > 0) { + await writeJson(fileName, jsonData); console.log( `File: ${fileName} updated ${editedTokenNames[fileName].length} tokens`, ); - await writeFile( - fileName, - await format(JSON.stringify(jsonData), { parser: "json-stringify" }), - ); } else { console.log(`File: ${fileName} not updated`); } diff --git a/tools/system-set-merge/test/index.test.js b/tools/transform-tokens-json/test/index.test.js similarity index 100% rename from tools/system-set-merge/test/index.test.js rename to tools/transform-tokens-json/test/index.test.js From f1cb901cc57910c0d220a265915e8c644e8e0c13 Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 19 Sep 2023 12:24:54 -0600 Subject: [PATCH 007/295] feat(tokens)!: merged dark and darkest BREAKING CHANGE: removed darkest color theme. Use dark instead. --- .changeset/lemon-dragons-raise.md | 374 +++++++++++ packages/tokens/src/color-aliases.json | 256 -------- packages/tokens/src/color-component.json | 4 - packages/tokens/src/color-palette.json | 772 ----------------------- packages/tokens/src/icons.json | 16 - 5 files changed, 374 insertions(+), 1048 deletions(-) create mode 100644 .changeset/lemon-dragons-raise.md diff --git a/.changeset/lemon-dragons-raise.md b/.changeset/lemon-dragons-raise.md new file mode 100644 index 00000000..f691c70f --- /dev/null +++ b/.changeset/lemon-dragons-raise.md @@ -0,0 +1,374 @@ +--- +"@adobe/spectrum-tokens": major +--- + +Merged dark and darkest color sets. This was done by removing `dark` and renaming `darkest` to `dark`. + +## Design Motivation + +The S2 microsite documentation discusses the move to a [single dark theme](https://s2.spectrum.corp.adobe.com/page/grays/#a-single-dark-theme). + +## Token Diff + +
Token values updated (358): + +- `accent-background-color-default` +- `accent-background-color-down` +- `accent-background-color-hover` +- `accent-background-color-key-focus` +- `accent-visual-color` +- `background-base-color` +- `background-layer-1-color` +- `background-layer-2-color` +- `blue-100` +- `blue-1000` +- `blue-1100` +- `blue-1200` +- `blue-1300` +- `blue-1400` +- `blue-200` +- `blue-300` +- `blue-400` +- `blue-500` +- `blue-600` +- `blue-700` +- `blue-800` +- `blue-900` +- `blue-background-color-default` +- `blue-visual-color` +- `body-color` +- `card-selection-background-color` +- `celery-100` +- `celery-1000` +- `celery-1100` +- `celery-1200` +- `celery-1300` +- `celery-1400` +- `celery-200` +- `celery-300` +- `celery-400` +- `celery-500` +- `celery-600` +- `celery-700` +- `celery-800` +- `celery-900` +- `celery-background-color-default` +- `celery-visual-color` +- `chartreuse-100` +- `chartreuse-1000` +- `chartreuse-1100` +- `chartreuse-1200` +- `chartreuse-1300` +- `chartreuse-1400` +- `chartreuse-200` +- `chartreuse-300` +- `chartreuse-400` +- `chartreuse-500` +- `chartreuse-600` +- `chartreuse-700` +- `chartreuse-800` +- `chartreuse-900` +- `chartreuse-background-color-default` +- `chartreuse-visual-color` +- `coach-mark-pagination-color` +- `code-color` +- `color-area-border-color` +- `color-slider-border-color` +- `cyan-100` +- `cyan-1000` +- `cyan-1100` +- `cyan-1200` +- `cyan-1300` +- `cyan-1400` +- `cyan-200` +- `cyan-300` +- `cyan-400` +- `cyan-500` +- `cyan-600` +- `cyan-700` +- `cyan-800` +- `cyan-900` +- `cyan-background-color-default` +- `cyan-visual-color` +- `detail-color` +- `disabled-background-color` +- `disabled-border-color` +- `disabled-content-color` +- `drop-shadow-color` +- `drop-zone-background-color` +- `focus-indicator-color` +- `fuchsia-100` +- `fuchsia-1000` +- `fuchsia-1100` +- `fuchsia-1200` +- `fuchsia-1300` +- `fuchsia-1400` +- `fuchsia-200` +- `fuchsia-300` +- `fuchsia-400` +- `fuchsia-500` +- `fuchsia-600` +- `fuchsia-700` +- `fuchsia-800` +- `fuchsia-900` +- `fuchsia-background-color-default` +- `fuchsia-visual-color` +- `gray-100` +- `gray-200` +- `gray-300` +- `gray-400` +- `gray-50` +- `gray-500` +- `gray-600` +- `gray-700` +- `gray-75` +- `gray-800` +- `gray-900` +- `gray-background-color-default` +- `gray-visual-color` +- `green-100` +- `green-1000` +- `green-1100` +- `green-1200` +- `green-1300` +- `green-1400` +- `green-200` +- `green-300` +- `green-400` +- `green-500` +- `green-600` +- `green-700` +- `green-800` +- `green-900` +- `green-background-color-default` +- `green-visual-color` +- `heading-color` +- `icon-color-blue-primary-default` +- `icon-color-green-primary-default` +- `icon-color-inverse` +- `icon-color-primary-default` +- `icon-color-red-primary-default` +- `icon-color-yellow-primary-default` +- `indigo-100` +- `indigo-1000` +- `indigo-1100` +- `indigo-1200` +- `indigo-1300` +- `indigo-1400` +- `indigo-200` +- `indigo-300` +- `indigo-400` +- `indigo-500` +- `indigo-600` +- `indigo-700` +- `indigo-800` +- `indigo-900` +- `indigo-background-color-default` +- `indigo-visual-color` +- `informative-background-color-default` +- `informative-background-color-down` +- `informative-background-color-hover` +- `informative-background-color-key-focus` +- `informative-color-100` +- `informative-color-1000` +- `informative-color-1100` +- `informative-color-1200` +- `informative-color-1300` +- `informative-color-1400` +- `informative-color-200` +- `informative-color-300` +- `informative-color-400` +- `informative-color-500` +- `informative-color-600` +- `informative-color-700` +- `informative-color-800` +- `informative-color-900` +- `informative-visual-color` +- `magenta-100` +- `magenta-1000` +- `magenta-1100` +- `magenta-1200` +- `magenta-1300` +- `magenta-1400` +- `magenta-200` +- `magenta-300` +- `magenta-400` +- `magenta-500` +- `magenta-600` +- `magenta-700` +- `magenta-800` +- `magenta-900` +- `magenta-background-color-default` +- `magenta-visual-color` +- `negative-background-color-default` +- `negative-background-color-down` +- `negative-background-color-hover` +- `negative-background-color-key-focus` +- `negative-border-color-default` +- `negative-border-color-down` +- `negative-border-color-focus` +- `negative-border-color-focus-hover` +- `negative-border-color-hover` +- `negative-border-color-key-focus` +- `negative-color-100` +- `negative-color-1000` +- `negative-color-1100` +- `negative-color-1200` +- `negative-color-1300` +- `negative-color-1400` +- `negative-color-200` +- `negative-color-300` +- `negative-color-400` +- `negative-color-500` +- `negative-color-600` +- `negative-color-700` +- `negative-color-800` +- `negative-color-900` +- `negative-content-color-default` +- `negative-content-color-down` +- `negative-content-color-hover` +- `negative-content-color-key-focus` +- `negative-visual-color` +- `neutral-background-color-default` +- `neutral-background-color-down` +- `neutral-background-color-hover` +- `neutral-background-color-key-focus` +- `neutral-content-color-default` +- `neutral-content-color-down` +- `neutral-content-color-focus` +- `neutral-content-color-focus-hover` +- `neutral-content-color-hover` +- `neutral-content-color-key-focus` +- `neutral-subdued-background-color-default` +- `neutral-subdued-background-color-down` +- `neutral-subdued-background-color-hover` +- `neutral-subdued-background-color-key-focus` +- `neutral-subdued-content-color-default` +- `neutral-subdued-content-color-down` +- `neutral-subdued-content-color-hover` +- `neutral-subdued-content-color-key-focus` +- `neutral-subdued-content-color-selected` +- `neutral-visual-color` +- `notice-background-color-default` +- `notice-color-100` +- `notice-color-1000` +- `notice-color-1100` +- `notice-color-1200` +- `notice-color-1300` +- `notice-color-1400` +- `notice-color-200` +- `notice-color-300` +- `notice-color-400` +- `notice-color-500` +- `notice-color-600` +- `notice-color-700` +- `notice-color-800` +- `notice-color-900` +- `notice-visual-color` +- `opacity-checkerboard-square-dark` +- `orange-100` +- `orange-1000` +- `orange-1100` +- `orange-1200` +- `orange-1300` +- `orange-1400` +- `orange-200` +- `orange-300` +- `orange-400` +- `orange-500` +- `orange-600` +- `orange-700` +- `orange-800` +- `orange-900` +- `orange-background-color-default` +- `orange-visual-color` +- `overlay-opacity` +- `positive-background-color-default` +- `positive-background-color-down` +- `positive-background-color-hover` +- `positive-background-color-key-focus` +- `positive-color-100` +- `positive-color-1000` +- `positive-color-1100` +- `positive-color-1200` +- `positive-color-1300` +- `positive-color-1400` +- `positive-color-200` +- `positive-color-300` +- `positive-color-400` +- `positive-color-500` +- `positive-color-600` +- `positive-color-700` +- `positive-color-800` +- `positive-color-900` +- `positive-visual-color` +- `purple-100` +- `purple-1000` +- `purple-1100` +- `purple-1200` +- `purple-1300` +- `purple-1400` +- `purple-200` +- `purple-300` +- `purple-400` +- `purple-500` +- `purple-600` +- `purple-700` +- `purple-800` +- `purple-900` +- `purple-background-color-default` +- `purple-visual-color` +- `red-100` +- `red-1000` +- `red-1100` +- `red-1200` +- `red-1300` +- `red-1400` +- `red-200` +- `red-300` +- `red-400` +- `red-500` +- `red-600` +- `red-700` +- `red-800` +- `red-900` +- `red-background-color-default` +- `red-visual-color` +- `seafoam-100` +- `seafoam-1000` +- `seafoam-1100` +- `seafoam-1200` +- `seafoam-1300` +- `seafoam-1400` +- `seafoam-200` +- `seafoam-300` +- `seafoam-400` +- `seafoam-500` +- `seafoam-600` +- `seafoam-700` +- `seafoam-800` +- `seafoam-900` +- `seafoam-background-color-default` +- `seafoam-visual-color` +- `swatch-border-color` +- `table-row-hover-color` +- `table-selected-row-background-color` +- `thumbnail-border-color` +- `yellow-100` +- `yellow-1000` +- `yellow-1100` +- `yellow-1200` +- `yellow-1300` +- `yellow-1400` +- `yellow-200` +- `yellow-300` +- `yellow-400` +- `yellow-500` +- `yellow-600` +- `yellow-700` +- `yellow-800` +- `yellow-900` +- `yellow-background-color-default` +- `yellow-visual-color` + +
diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 726fe55c..887abe83 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -22,10 +22,6 @@ "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" }, "dark": { - "value": "0.5", - "uuid": "df41eb51-872f-458d-9439-910064f74b7b" - }, - "darkest": { "value": "0.6", "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" }, @@ -42,10 +38,6 @@ "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb" }, "dark": { - "value": "rgba(0, 0, 0, 0.5)", - "uuid": "4633ae77-5101-4c62-8253-6406df2613f1" - }, - "darkest": { "value": "rgba(0, 0, 0, 0.8)", "uuid": "e54491a8-d3ca-4d67-bacb-74ac192a387f" }, @@ -66,10 +58,6 @@ "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" }, "dark": { - "value": "{gray-50}", - "uuid": "46060531-9372-41a7-8db3-d3c100338e6d" - }, - "darkest": { "value": "{gray-50}", "uuid": "cf1299aa-86c7-4523-b6ae-6de597ac3712" }, @@ -86,10 +74,6 @@ "uuid": "7e6678b7-2903-434b-8ee2-06c83815b01d" }, "dark": { - "value": "{gray-75}", - "uuid": "fc1758f3-22bd-4dc0-9ef3-91fa0f454036" - }, - "darkest": { "value": "{gray-75}", "uuid": "da228344-5b83-4e08-96d2-089068138ba0" }, @@ -106,10 +90,6 @@ "uuid": "b7b2bf98-b96a-40ca-b51e-5876d3418085" }, "dark": { - "value": "{gray-100}", - "uuid": "dd462fc7-bd79-4b52-9411-adf317832989" - }, - "darkest": { "value": "{gray-100}", "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" }, @@ -126,10 +106,6 @@ "uuid": "5d54b2d5-b0c6-4438-b141-80ca91a0b8a4" }, "dark": { - "value": "{gray-400}", - "uuid": "4f58764f-deb1-4863-89ce-663868fe73e6" - }, - "darkest": { "value": "{gray-400}", "uuid": "a1c5a204-e937-4ce1-a5be-580f6b0df7a5" }, @@ -146,10 +122,6 @@ "uuid": "e0379e06-e2d3-4d6f-ba81-6cdf4012a022" }, "dark": { - "value": "{gray-300}", - "uuid": "7ea82825-f138-44e5-9c75-29c444086d6a" - }, - "darkest": { "value": "{gray-300}", "uuid": "0ce569ea-d735-42a3-96c2-60201fcb616f" }, @@ -166,10 +138,6 @@ "uuid": "5577ffde-5708-4ea7-a50d-d938f07eba7f" }, "dark": { - "value": "{gray-200}", - "uuid": "20e71891-57dc-4dc7-9f30-330d3753e8dd" - }, - "darkest": { "value": "{gray-200}", "uuid": "4901987b-b70c-42ef-92fd-b8c5b6894bfc" }, @@ -186,10 +154,6 @@ "uuid": "b8ba6d4d-737e-4c18-a901-bb35fdc173c3" }, "dark": { - "value": "{gray-300}", - "uuid": "78a08d31-921c-4b47-a50c-4f283e916712" - }, - "darkest": { "value": "{gray-300}", "uuid": "f90c1f60-5d23-41ed-ab42-30eeb9d079ba" }, @@ -222,10 +186,6 @@ "uuid": "3b09b2fd-cbf9-4933-9655-27a75d984f06" }, "dark": { - "value": "{gray-400}", - "uuid": "ccb9da64-89e5-4e9b-b868-1ac9e1d1f183" - }, - "darkest": { "value": "{gray-400}", "uuid": "bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef" }, @@ -242,10 +202,6 @@ "uuid": "a1ab50d5-1aa1-4198-9510-7ea8458cc62f" }, "dark": { - "value": "{gray-300}", - "uuid": "338e2fda-0da2-4a52-b718-ca0ca50e88f9" - }, - "darkest": { "value": "{gray-300}", "uuid": "2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5" }, @@ -262,10 +218,6 @@ "uuid": "300d2800-a6e5-4b78-9b6c-aaf2f4af39c6" }, "dark": { - "value": "{gray-200}", - "uuid": "6098f9a7-595e-488f-b44c-2b51a8924f90" - }, - "darkest": { "value": "{gray-200}", "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" }, @@ -282,10 +234,6 @@ "uuid": "eece165c-743c-4d7a-b770-3ee50e1951cf" }, "dark": { - "value": "{gray-300}", - "uuid": "8f3f4b30-3887-4368-a38b-ec274eb99aa0" - }, - "darkest": { "value": "{gray-300}", "uuid": "a1e08db6-3a72-4b8e-9475-b54a7b9be506" }, @@ -306,10 +254,6 @@ "uuid": "d9d8488d-9b38-47e0-9660-dcad040f3ca8" }, "dark": { - "value": "{accent-color-500}", - "uuid": "94a5cedd-01d3-44c8-b741-01f3b70a5e90" - }, - "darkest": { "value": "{accent-color-600}", "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" }, @@ -326,10 +270,6 @@ "uuid": "9651d413-47dc-4b55-976f-91e5c6c91fb5" }, "dark": { - "value": "{accent-color-400}", - "uuid": "7c891ae9-00a1-4b9f-8a77-d582a9d2addb" - }, - "darkest": { "value": "{accent-color-500}", "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" }, @@ -346,10 +286,6 @@ "uuid": "026b1d5e-7cbc-4ee9-91e8-19766b9ac541" }, "dark": { - "value": "{accent-color-300}", - "uuid": "d2101964-8d67-44a1-9f94-623caf51ad1d" - }, - "darkest": { "value": "{accent-color-400}", "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" }, @@ -366,10 +302,6 @@ "uuid": "43ca5f34-decc-4de8-9413-74ce57802b65" }, "dark": { - "value": "{accent-color-400}", - "uuid": "46be0da3-d704-4d26-929e-4507a813d615" - }, - "darkest": { "value": "{accent-color-500}", "uuid": "af809118-7a97-409c-925f-8d7636a791c8" }, @@ -390,10 +322,6 @@ "uuid": "3acd52f0-d19c-4174-9ad5-42885ec9d49d" }, "dark": { - "value": "{informative-color-500}", - "uuid": "8676a0d3-13df-4994-8614-94fa72c89486" - }, - "darkest": { "value": "{informative-color-600}", "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" }, @@ -410,10 +338,6 @@ "uuid": "06dcb775-28b2-454e-89ce-fda34f30c7d7" }, "dark": { - "value": "{informative-color-400}", - "uuid": "5f53230c-36b0-46da-993c-3d707a4e148a" - }, - "darkest": { "value": "{informative-color-500}", "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" }, @@ -430,10 +354,6 @@ "uuid": "91f91b8c-0e65-4b7b-8c7b-60d3b6e235d8" }, "dark": { - "value": "{informative-color-300}", - "uuid": "28a819c5-6d64-4bad-a6c9-7b7c250dc46e" - }, - "darkest": { "value": "{informative-color-400}", "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" }, @@ -450,10 +370,6 @@ "uuid": "ea314056-fd9a-4325-b19a-33f56fad2859" }, "dark": { - "value": "{informative-color-400}", - "uuid": "527b21ef-5b24-4c16-8b99-f2bdd3b8f2f8" - }, - "darkest": { "value": "{informative-color-500}", "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" }, @@ -470,10 +386,6 @@ "uuid": "46204746-7fe7-4f22-887e-2c9b85c3b7bc" }, "dark": { - "value": "{negative-color-500}", - "uuid": "5e18e40b-8db1-45ba-ac1c-4a54d5b7270a" - }, - "darkest": { "value": "{negative-color-600}", "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" }, @@ -490,10 +402,6 @@ "uuid": "d2481a50-13a0-4f19-8faa-a1a215fee21d" }, "dark": { - "value": "{negative-color-400}", - "uuid": "94b551c9-a0ea-48f1-8ab3-c3168a1f511d" - }, - "darkest": { "value": "{negative-color-500}", "uuid": "648da867-549e-47c3-9312-e9cfda288705" }, @@ -510,10 +418,6 @@ "uuid": "3c2d5afe-fff4-487d-a312-000f738c8704" }, "dark": { - "value": "{negative-color-300}", - "uuid": "fc862942-7fbb-411b-8857-d8a7ae226633" - }, - "darkest": { "value": "{negative-color-400}", "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" }, @@ -530,10 +434,6 @@ "uuid": "41a6ee21-8db2-410b-a694-fca1fbf70f2a" }, "dark": { - "value": "{negative-color-400}", - "uuid": "6382df57-549e-40b4-b378-3921bba6b850" - }, - "darkest": { "value": "{negative-color-500}", "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" }, @@ -550,10 +450,6 @@ "uuid": "d878d795-2292-4d90-a9e2-37af1d97a532" }, "dark": { - "value": "{positive-color-500}", - "uuid": "2fc671b6-0dde-416e-ae7e-a67c30d4a800" - }, - "darkest": { "value": "{positive-color-600}", "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" }, @@ -570,10 +466,6 @@ "uuid": "d60ab5e9-9ada-4587-a75f-91f2b492800f" }, "dark": { - "value": "{positive-color-400}", - "uuid": "596bfca6-ab01-421f-8fc1-b61ebef37ded" - }, - "darkest": { "value": "{positive-color-500}", "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" }, @@ -590,10 +482,6 @@ "uuid": "4096a319-241e-410c-ad51-521d57155004" }, "dark": { - "value": "{positive-color-300}", - "uuid": "2e7048e0-a74e-4e40-b739-053cf298f4e2" - }, - "darkest": { "value": "{positive-color-400}", "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" }, @@ -610,10 +498,6 @@ "uuid": "036525d0-c6c4-478c-9aa3-84242737c6b1" }, "dark": { - "value": "{positive-color-400}", - "uuid": "3ac208d1-7fac-4692-ada9-1a19f4896a81" - }, - "darkest": { "value": "{positive-color-500}", "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" }, @@ -630,10 +514,6 @@ "uuid": "87666730-0d8e-434d-9bfb-0a45e729c482" }, "dark": { - "value": "{notice-color-800}", - "uuid": "48df522d-8857-42d3-a2b3-e86828a39cfd" - }, - "darkest": { "value": "{notice-color-800}", "uuid": "0a0bb434-e005-41ec-bee5-709a2e41928b" }, @@ -662,10 +542,6 @@ "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" }, "dark": { - "value": "{gray-700}", - "uuid": "fe9180f1-54db-4ec3-82c6-f6b084dd24f7" - }, - "darkest": { "value": "{gray-700}", "uuid": "fa68c3bf-88b5-4653-a42d-7de5ce7cec3d" }, @@ -682,10 +558,6 @@ "uuid": "8cec4a84-3eea-45d6-ae1b-64907be7da78" }, "dark": { - "value": "{red-700}", - "uuid": "3da4e1a0-7a02-4488-92d8-744b2f3e5cbc" - }, - "darkest": { "value": "{red-700}", "uuid": "ce074ee2-a2a2-4da3-a99e-603524193d46" }, @@ -702,10 +574,6 @@ "uuid": "981c054e-9db5-4589-b9e7-eed307b115ca" }, "dark": { - "value": "{orange-800}", - "uuid": "706d7352-dd31-42c1-91d4-b9407ee49868" - }, - "darkest": { "value": "{orange-800}", "uuid": "3e9a6c2a-bd09-4d28-a95c-920109c1852f" }, @@ -722,10 +590,6 @@ "uuid": "f8e435de-1630-4628-8b6d-128987d66ddc" }, "dark": { - "value": "{yellow-1000}", - "uuid": "5fd7e36b-05df-4384-a3f1-a3d8b9330823" - }, - "darkest": { "value": "{yellow-1000}", "uuid": "61c5e375-bff3-479f-8c32-2d2a5edb906c" }, @@ -742,10 +606,6 @@ "uuid": "f6e68186-e7fe-4d36-b371-72461a271358" }, "dark": { - "value": "{chartreuse-900}", - "uuid": "8c8db46e-af99-4057-85ea-3f05055b97cc" - }, - "darkest": { "value": "{chartreuse-900}", "uuid": "5df9a029-dc91-4078-a198-574486948834" }, @@ -762,10 +622,6 @@ "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" }, "dark": { - "value": "{celery-800}", - "uuid": "87f5b73a-19b1-40f7-991b-0d4b6bfc4a99" - }, - "darkest": { "value": "{celery-800}", "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" }, @@ -782,10 +638,6 @@ "uuid": "d5cac08e-56e8-4217-a153-33f43c1a2059" }, "dark": { - "value": "{green-700}", - "uuid": "fbe68215-410b-4f50-82f1-365754366275" - }, - "darkest": { "value": "{green-700}", "uuid": "49170573-9c22-42e1-a1ce-cd3d3972ddb7" }, @@ -802,10 +654,6 @@ "uuid": "be1d8187-effc-430f-ac31-3904cf83a6d6" }, "dark": { - "value": "{seafoam-700}", - "uuid": "d49fb92d-b0ea-44c6-a17b-817da00361f9" - }, - "darkest": { "value": "{seafoam-700}", "uuid": "9a727140-328d-430f-9b10-8965eebe77d1" }, @@ -822,10 +670,6 @@ "uuid": "12c060c6-db12-41ca-8b53-f4fc0afd2ed7" }, "dark": { - "value": "{cyan-700}", - "uuid": "4dda3368-def2-4cd6-ae04-1483bb129ca5" - }, - "darkest": { "value": "{cyan-700}", "uuid": "543af64f-9c28-4e88-8597-3259cd7ebf1f" }, @@ -842,10 +686,6 @@ "uuid": "c6c435b6-34b3-4fc1-bf96-a56a15e01fe5" }, "dark": { - "value": "{blue-700}", - "uuid": "04d7615b-5006-4857-9a66-38a3955516f8" - }, - "darkest": { "value": "{blue-700}", "uuid": "83591a94-83e1-4557-8f50-cc1fe9793b76" }, @@ -862,10 +702,6 @@ "uuid": "23859fff-27f5-4576-83c9-0fbc316e880a" }, "dark": { - "value": "{indigo-700}", - "uuid": "40af8933-2b38-4818-a88c-52d2f487f7b9" - }, - "darkest": { "value": "{indigo-700}", "uuid": "b7f5a677-4e89-40e1-8324-7619a628ce8b" }, @@ -882,10 +718,6 @@ "uuid": "ed07d8f4-390f-4124-a4c4-81b62767c6cd" }, "dark": { - "value": "{purple-700}", - "uuid": "a2a42a1c-c0c9-41a5-80fd-c9316e233918" - }, - "darkest": { "value": "{purple-700}", "uuid": "e577d521-0271-4226-a094-624b35a05826" }, @@ -902,10 +734,6 @@ "uuid": "5f61f890-93b3-4ab9-bc80-d75198a5bacf" }, "dark": { - "value": "{fuchsia-700}", - "uuid": "56575347-51b7-4822-98a6-d4275eae2ab5" - }, - "darkest": { "value": "{fuchsia-700}", "uuid": "7b4d71d3-ad78-4e02-a48e-fa79f40854a2" }, @@ -922,10 +750,6 @@ "uuid": "4e02601f-12da-4ce2-b58c-0aa0e309442d" }, "dark": { - "value": "{magenta-700}", - "uuid": "f7841ca9-3d7e-419b-870e-3b3747433b38" - }, - "darkest": { "value": "{magenta-700}", "uuid": "5867d764-d909-4490-b947-533e89997d0a" }, @@ -1042,10 +866,6 @@ "uuid": "0dc6ed4d-17d5-4878-8ac3-bd99549b4f42" }, "dark": { - "value": "{gray-600}", - "uuid": "931b7722-20ef-4c45-8855-4cb4e82e936c" - }, - "darkest": { "value": "{gray-600}", "uuid": "35ef6675-7e66-4ef5-8c8d-e8e70939b224" }, @@ -1062,10 +882,6 @@ "uuid": "dbcb4372-f250-42bd-a5bc-b9d48cfb9322" }, "dark": { - "value": "{accent-color-900}", - "uuid": "a595a519-0df5-463e-8ec6-f71dd9cefbee" - }, - "darkest": { "value": "{accent-color-900}", "uuid": "8ccd197f-fc8e-4d31-866c-2b96049eea89" }, @@ -1082,10 +898,6 @@ "uuid": "cd900a8d-1852-4592-9031-9edab2f9721f" }, "dark": { - "value": "{informative-color-900}", - "uuid": "97225780-35eb-4cc8-abc0-fcca31985063" - }, - "darkest": { "value": "{informative-color-900}", "uuid": "fd64c9ca-6ad7-415c-b0b8-2579399e33a5" }, @@ -1102,10 +914,6 @@ "uuid": "d1beeda3-a00d-4f8c-8553-0a0f84093b1f" }, "dark": { - "value": "{negative-color-700}", - "uuid": "2f57b877-57ac-4bed-be53-07f4f6353ce2" - }, - "darkest": { "value": "{negative-color-700}", "uuid": "70cb0316-5b7a-416c-bf93-7d8885c4fce6" }, @@ -1122,10 +930,6 @@ "uuid": "b8b38df6-aac5-49fc-99bb-d64a543c5bf8" }, "dark": { - "value": "{notice-color-900}", - "uuid": "560ad974-d101-44a2-90c7-8c5b5a3ce273" - }, - "darkest": { "value": "{notice-color-900}", "uuid": "2759c912-6385-40e4-9ed9-ff2e11815b4d" }, @@ -1142,10 +946,6 @@ "uuid": "455acfc0-1997-4fee-b1dc-3c91bbd9fca2" }, "dark": { - "value": "{positive-color-800}", - "uuid": "8cd5afec-80b0-449f-860d-08d6e111af84" - }, - "darkest": { "value": "{positive-color-800}", "uuid": "25e8289f-6c82-4485-8920-a187f790cd47" }, @@ -1162,10 +962,6 @@ "uuid": "744537db-023b-4833-8262-9c349b0915ee" }, "dark": { - "value": "{gray-600}", - "uuid": "cffe0ccb-5c67-4435-a9b2-b6fb7072417a" - }, - "darkest": { "value": "{gray-600}", "uuid": "0f7a39c2-3ee7-4ff0-873f-334c81054b77" }, @@ -1182,10 +978,6 @@ "uuid": "7fe7c804-7e6b-48ac-b1fa-b88874e0a330" }, "dark": { - "value": "{red-700}", - "uuid": "1676050d-200e-46d7-9a8f-2e74f0be5cfe" - }, - "darkest": { "value": "{red-700}", "uuid": "870f90ab-7f3e-41b6-9c11-59e9c4ff82c6" }, @@ -1202,10 +994,6 @@ "uuid": "8fdaf9e0-bd3e-4188-84bd-7abf72e50b58" }, "dark": { - "value": "{orange-900}", - "uuid": "55248d8a-e628-46e2-8882-099162eb18b1" - }, - "darkest": { "value": "{orange-900}", "uuid": "e7bf9977-2edf-48bc-8099-ad95e57b55b1" }, @@ -1222,10 +1010,6 @@ "uuid": "73e40884-6d55-4a56-a376-bd788e615754" }, "dark": { - "value": "{yellow-1100}", - "uuid": "231e80f5-8dfe-49b7-9cb5-db35bb93f3aa" - }, - "darkest": { "value": "{yellow-1100}", "uuid": "4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b" }, @@ -1242,10 +1026,6 @@ "uuid": "18735078-a942-442b-bc04-1b72bac77c98" }, "dark": { - "value": "{chartreuse-900}", - "uuid": "d7a17594-69fb-433d-b3cd-e63547ec5940" - }, - "darkest": { "value": "{chartreuse-900}", "uuid": "a46d8e05-4f56-4b46-a279-0164abfa42e8" }, @@ -1262,10 +1042,6 @@ "uuid": "8f6f9f6e-1762-4ac3-a9b9-6cacd135dfac" }, "dark": { - "value": "{celery-800}", - "uuid": "e2239975-bc80-4d08-90fb-e95fe61a1d35" - }, - "darkest": { "value": "{celery-800}", "uuid": "37c1311b-29ed-44ab-b656-a7538726ad77" }, @@ -1282,10 +1058,6 @@ "uuid": "83f76815-8660-425e-80e6-825a5be0628f" }, "dark": { - "value": "{green-800}", - "uuid": "7418e20d-c751-49ca-8cd2-f0b7fb00831e" - }, - "darkest": { "value": "{green-800}", "uuid": "1219770d-543d-4216-9e87-c158f8a74df6" }, @@ -1302,10 +1074,6 @@ "uuid": "2b0a6584-db41-43b9-ba39-39171548c01a" }, "dark": { - "value": "{seafoam-800}", - "uuid": "45a2c99b-29f5-468d-956e-e3c0a78fcfd6" - }, - "darkest": { "value": "{seafoam-800}", "uuid": "736e4768-7944-40ec-a412-4cd36299e03d" }, @@ -1322,10 +1090,6 @@ "uuid": "c3c126c9-2133-416a-ac0e-4ae00546941b" }, "dark": { - "value": "{cyan-900}", - "uuid": "b4c9bf18-a3d0-423b-85a1-d1de8390b7e9" - }, - "darkest": { "value": "{cyan-900}", "uuid": "091a2073-baa0-4cc6-b943-9dddc285ad62" }, @@ -1342,10 +1106,6 @@ "uuid": "b7cca44c-7c7d-4904-8f2c-d5bde4ea42a2" }, "dark": { - "value": "{blue-900}", - "uuid": "b876d683-a479-41cb-a370-5bdb75f48e9c" - }, - "darkest": { "value": "{blue-900}", "uuid": "63fe16ed-70fa-4eaf-918c-f642ff69ce05" }, @@ -1362,10 +1122,6 @@ "uuid": "cb59d4d5-c17e-428d-a22a-e9a3fc02ac9c" }, "dark": { - "value": "{indigo-900}", - "uuid": "0f645ef3-051f-4e88-bbd4-3724fa3d93b2" - }, - "darkest": { "value": "{indigo-900}", "uuid": "584ccbd4-3243-4041-b665-e2342d2b26e8" }, @@ -1382,10 +1138,6 @@ "uuid": "681fc141-b235-4cde-9c3a-f0033943d772" }, "dark": { - "value": "{purple-900}", - "uuid": "e108a5d7-dd3b-4238-ba9b-8c600e1614d0" - }, - "darkest": { "value": "{purple-900}", "uuid": "0ee2957b-c401-4106-8ff3-9de9fa544a03" }, @@ -1402,10 +1154,6 @@ "uuid": "36b69bb1-d443-4ec6-807b-ea449a886825" }, "dark": { - "value": "{fuchsia-900}", - "uuid": "a336ee97-c030-42e6-ba5f-5ac6585ddeab" - }, - "darkest": { "value": "{fuchsia-900}", "uuid": "38e60263-cb08-4090-a653-5acbd1664ae0" }, @@ -1422,10 +1170,6 @@ "uuid": "8bc581a9-558c-424d-a72b-f24b48207b82" }, "dark": { - "value": "{magenta-900}", - "uuid": "2b4d2516-870c-4cb4-88a6-dce1d920ad4c" - }, - "darkest": { "value": "{magenta-900}", "uuid": "178e4bc6-6986-4e77-aab0-78dbe66f8e6f" }, diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index cdbc03a7..e24f6251 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -47,10 +47,6 @@ "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" }, "dark": { - "value": "{gray-800}", - "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" - }, - "darkest": { "value": "{gray-800}", "uuid": "f783b8cb-d31f-46c2-b550-990639752510" }, diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 320fb02a..7efd99b5 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -86,10 +86,6 @@ "uuid": "f6e408a6-81ae-4658-8375-a532f324eba0" }, "dark": { - "value": "rgb(29, 29, 29)", - "uuid": "d5641118-4015-426d-bf92-7c63393b3775" - }, - "darkest": { "value": "rgb(0, 0, 0)", "uuid": "0913be1e-b648-4b80-9976-fd8e5e53f4fc" }, @@ -106,10 +102,6 @@ "uuid": "01cd6c7e-f2eb-4b5d-9e2a-30940e1ab37b" }, "dark": { - "value": "rgb(38, 38, 38)", - "uuid": "9a66da2c-7f73-4364-8674-85f794399e37" - }, - "darkest": { "value": "rgb(14, 14, 14)", "uuid": "1666d544-ad1b-445a-9a57-d2277fb752eb" }, @@ -126,10 +118,6 @@ "uuid": "64e2dbc2-05fa-43d7-80ae-d4d11c55348f" }, "dark": { - "value": "rgb(50, 50, 50)", - "uuid": "4500355e-ce60-4046-b692-71301b6b1348" - }, - "darkest": { "value": "rgb(29, 29, 29)", "uuid": "abd011c4-87a5-4b1f-82e2-e94d118f417f" }, @@ -146,10 +134,6 @@ "uuid": "8de4888d-8da5-45a0-8d5d-64a734993ae4" }, "dark": { - "value": "rgb(63, 63, 63)", - "uuid": "352ca27b-fdb8-4a66-b46d-6e6994c6a19d" - }, - "darkest": { "value": "rgb(48, 48, 48)", "uuid": "0a676e7a-8a89-4607-a918-3abcfb0234a2" }, @@ -166,10 +150,6 @@ "uuid": "aad52960-a7ec-4f69-85f9-3e1a87975120" }, "dark": { - "value": "rgb(84, 84, 84)", - "uuid": "70fe1801-98f7-4cb8-a275-8cb9f180f2fc" - }, - "darkest": { "value": "rgb(75, 75, 75)", "uuid": "cc8c4299-c40d-4e93-80b2-c052ee8aaf40" }, @@ -186,10 +166,6 @@ "uuid": "9a4b4fc4-25e4-4ca8-b0d1-949c5851b47e" }, "dark": { - "value": "rgb(112, 112, 112)", - "uuid": "4ef9462d-9c24-4a0f-b205-0eb04bf242a2" - }, - "darkest": { "value": "rgb(106, 106, 106)", "uuid": "c34dd99f-e576-4c98-a89d-86dd47514c55" }, @@ -206,10 +182,6 @@ "uuid": "7fa86c73-f058-4922-be8d-19902515cf44" }, "dark": { - "value": "rgb(144, 144, 144)", - "uuid": "c295d2a4-0711-40a0-904c-b8d0c7e1b724" - }, - "darkest": { "value": "rgb(141, 141, 141)", "uuid": "05808575-f14b-49d1-aefb-e3667ec0f5a4" }, @@ -226,10 +198,6 @@ "uuid": "e6a41088-a188-483c-b197-63ed3c70463d" }, "dark": { - "value": "rgb(178, 178, 178)", - "uuid": "7c21df9e-eb58-44da-9bea-e2bacd494130" - }, - "darkest": { "value": "rgb(176, 176, 176)", "uuid": "8880b8f1-7850-49ef-a7ab-fd4e16cb37a6" }, @@ -246,10 +214,6 @@ "uuid": "97111e8e-5823-47f2-af64-c3244b8d3492" }, "dark": { - "value": "rgb(209, 209, 209)", - "uuid": "0b0dc002-bbda-46bf-a0fa-6d361009e31c" - }, - "darkest": { "value": "rgb(208, 208, 208)", "uuid": "3cc563c6-386e-4b08-850d-68d4a292e559" }, @@ -266,10 +230,6 @@ "uuid": "2caf1f36-80b9-4659-90be-8d89672bb19f" }, "dark": { - "value": "rgb(235, 235, 235)", - "uuid": "bca0223a-6639-4881-a7a4-e131c28968e7" - }, - "darkest": { "value": "rgb(235, 235, 235)", "uuid": "d39fc368-ec71-40cd-85e9-afb07862f2b7" }, @@ -286,10 +246,6 @@ "uuid": "59093f0d-98b7-4659-bea6-3248ad20e96c" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "1ea0996b-81ab-4182-a86f-fd51a829eb96" - }, - "darkest": { "value": "rgb(255, 255, 255)", "uuid": "90d25d68-afb1-4b2a-9dba-3fe22d44976f" }, @@ -306,10 +262,6 @@ "uuid": "bb610367-a43d-4ba9-b667-84b4d8da69b2" }, "dark": { - "value": "rgb(0, 56, 119)", - "uuid": "03fd9144-0640-4bb0-83bd-677a4e48c128" - }, - "darkest": { "value": "rgb(0, 38, 81)", "uuid": "7d56ac58-fd58-41b3-9bbd-448ae0a7dd85" }, @@ -326,10 +278,6 @@ "uuid": "989a37a5-66f2-4a84-a118-8d36caee6695" }, "dark": { - "value": "rgb(0, 65, 138)", - "uuid": "acb6d305-c1d9-498a-9db3-5d8e921dccda" - }, - "darkest": { "value": "rgb(0, 50, 106)", "uuid": "7b7d1fd8-cc1e-4053-b320-e481b8f64c46" }, @@ -346,10 +294,6 @@ "uuid": "58dc7d3a-3a6d-4ee4-ad38-5e01a07335bd" }, "dark": { - "value": "rgb(0, 77, 163)", - "uuid": "da78a0bb-b306-4ff2-8080-bdf21ca6bed3" - }, - "darkest": { "value": "rgb(0, 64, 135)", "uuid": "d88d1685-29dc-486b-a0b9-9c90f60b8cde" }, @@ -366,10 +310,6 @@ "uuid": "9c39c15f-04ee-4cb3-acf3-04c390f14780" }, "dark": { - "value": "rgb(0, 89, 194)", - "uuid": "9729fbd6-6eb6-4c91-a73e-d0bd3ffbd1f3" - }, - "darkest": { "value": "rgb(0, 78, 166)", "uuid": "29d339bb-ef80-40f8-a69b-afa778b60805" }, @@ -386,10 +326,6 @@ "uuid": "ccc5c654-280e-4f46-964e-9d589f571bc6" }, "dark": { - "value": "rgb(3, 103, 224)", - "uuid": "209d7715-b78a-4265-908f-6d9a03e63bb1" - }, - "darkest": { "value": "rgb(0, 92, 200)", "uuid": "a61ed901-7f77-4667-9d19-fff6bab20623" }, @@ -406,10 +342,6 @@ "uuid": "b781aad3-054c-4e81-a368-a8165e6035fd" }, "dark": { - "value": "rgb(19, 121, 243)", - "uuid": "8e465599-1ad1-45f7-8db3-99caed033cfe" - }, - "darkest": { "value": "rgb(6, 108, 231)", "uuid": "7e770996-780a-4494-91ea-08c1ae6cfa80" }, @@ -426,10 +358,6 @@ "uuid": "1a25f1fe-6d20-49f9-b8f9-d304efc83626" }, "dark": { - "value": "rgb(52, 143, 244)", - "uuid": "9260c8ad-9e25-4103-baf2-ea008746a2f7" - }, - "darkest": { "value": "rgb(29, 128, 245)", "uuid": "5cc66280-e13a-459d-8529-c3f531aa5e4e" }, @@ -446,10 +374,6 @@ "uuid": "5ac73d3a-a6cc-4403-a8d5-46bc262d62e9" }, "dark": { - "value": "rgb(84, 163, 246)", - "uuid": "10aaf031-3586-47a6-90f5-c698f6be5bd6" - }, - "darkest": { "value": "rgb(64, 150, 243)", "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" }, @@ -466,10 +390,6 @@ "uuid": "3451c170-3e78-449b-86f2-8b7dbea24c1c" }, "dark": { - "value": "rgb(114, 183, 249)", - "uuid": "2251d00a-e90d-4758-91af-50c1c37232fe" - }, - "darkest": { "value": "rgb(94, 170, 247)", "uuid": "82b09b04-6a70-4a95-9eb5-a321a66a6465" }, @@ -486,10 +406,6 @@ "uuid": "da15fc4a-a3ce-4cbe-a2d1-bf5a2e77e5c4" }, "dark": { - "value": "rgb(143, 202, 252)", - "uuid": "f9a4d76d-cbf9-482d-b582-01462f1ca969" - }, - "darkest": { "value": "rgb(124, 189, 250)", "uuid": "147ed079-b4f0-4cd7-89cd-7ec93750d688" }, @@ -506,10 +422,6 @@ "uuid": "7044000c-09c4-4c12-8b37-94f8601217e2" }, "dark": { - "value": "rgb(174, 219, 254)", - "uuid": "94fd01de-1609-4dad-8e91-c0ce904aa743" - }, - "darkest": { "value": "rgb(152, 206, 253)", "uuid": "2a5d2e32-930d-4c50-b1fd-6781a1dc1db5" }, @@ -526,10 +438,6 @@ "uuid": "aae7bf70-35c6-49f9-a6da-ba40ee217c3d" }, "dark": { - "value": "rgb(204, 233, 255)", - "uuid": "064dfc3f-d7fa-46c1-a4a4-21bc5b2f18d5" - }, - "darkest": { "value": "rgb(179, 222, 254)", "uuid": "ce7da4ba-77ed-4bdd-a154-90f389af6c2a" }, @@ -546,10 +454,6 @@ "uuid": "c6fce6c2-ca99-4a3d-b2af-d96a35ec70dc" }, "dark": { - "value": "rgb(232, 246, 255)", - "uuid": "96f80a02-6ecf-4e17-b1f0-e508d8b0d422" - }, - "darkest": { "value": "rgb(206, 234, 255)", "uuid": "2bc63c0d-691c-4cc4-95b6-b4e530a44978" }, @@ -566,10 +470,6 @@ "uuid": "af563d02-b975-4ba5-82d3-02bcf30f762c" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "2d4fbd92-649f-457e-ad5c-39798f3da5a8" - }, - "darkest": { "value": "rgb(227, 243, 255)", "uuid": "eb86d777-ec23-47e4-adc6-1203709dc00d" }, @@ -586,10 +486,6 @@ "uuid": "c9e0870a-8cf0-438e-9395-8141c316ad57" }, "dark": { - "value": "rgb(123, 0, 0)", - "uuid": "9e721c6e-a111-411c-a892-55bf69fcd169" - }, - "darkest": { "value": "rgb(87, 0, 0)", "uuid": "04f6044b-d0fa-4705-858c-2dc5721ec30f" }, @@ -606,10 +502,6 @@ "uuid": "a1f7b6a3-4195-44dc-a772-9a04d3cf859c" }, "dark": { - "value": "rgb(141, 0, 0)", - "uuid": "803d7924-3746-43b0-ab32-6b4b5f4dae19" - }, - "darkest": { "value": "rgb(110, 0, 0)", "uuid": "b18ca77b-898e-4e09-88e2-8901de3e9172" }, @@ -626,10 +518,6 @@ "uuid": "3a393af6-c7f2-45bb-a4bc-9b55518c71ac" }, "dark": { - "value": "rgb(165, 0, 0)", - "uuid": "330ceaaf-c223-44b9-9548-7ee41e6ca590" - }, - "darkest": { "value": "rgb(138, 0, 0)", "uuid": "fcfcf026-be31-4a05-b833-6757cacb8b05" }, @@ -646,10 +534,6 @@ "uuid": "49e7cf3a-1f2a-4487-a0a9-3869a30593f1" }, "dark": { - "value": "rgb(190, 4, 3)", - "uuid": "e3eb789d-b34a-467e-a195-77aaee2f0d6b" - }, - "darkest": { "value": "rgb(167, 0, 0)", "uuid": "8f9fa135-5aca-4e42-b247-fdfbf74bc07b" }, @@ -666,10 +550,6 @@ "uuid": "70b11bf5-60c8-48a6-a1d5-2a74bc22e283" }, "dark": { - "value": "rgb(215, 25, 19)", - "uuid": "c6b687eb-7999-4ef4-a680-aa15581db960" - }, - "darkest": { "value": "rgb(196, 7, 6)", "uuid": "ec50a21c-88aa-41a8-b607-c8b1c407ac4f" }, @@ -686,10 +566,6 @@ "uuid": "00d13447-f1f9-4cda-89b4-6a839260e91a" }, "dark": { - "value": "rgb(234, 56, 41)", - "uuid": "b4423bfa-8732-42df-ba45-361d1987bc0b" - }, - "darkest": { "value": "rgb(221, 33, 24)", "uuid": "ff0fa040-17d6-4570-84b5-7a88c5bb9f45" }, @@ -706,10 +582,6 @@ "uuid": "a84b6ffe-5235-4517-9beb-320ed79cf6b0" }, "dark": { - "value": "rgb(246, 88, 67)", - "uuid": "ba040391-245e-4cd5-b499-9d3f9d82dedb" - }, - "darkest": { "value": "rgb(238, 67, 49)", "uuid": "cb2486de-b2be-45e5-b459-6e371b29d357" }, @@ -726,10 +598,6 @@ "uuid": "6c3daf67-9cdc-4c02-9912-ff0b902c22ed" }, "dark": { - "value": "rgb(255, 117, 94)", - "uuid": "f1e2ab4f-0bca-4c9e-ac63-18d36726560e" - }, - "darkest": { "value": "rgb(249, 99, 76)", "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" }, @@ -746,10 +614,6 @@ "uuid": "d5d3bc64-629c-44b0-8ff5-81f260521f5b" }, "dark": { - "value": "rgb(255, 149, 129)", - "uuid": "c71c3423-88ee-4611-b07b-58630ce081f0" - }, - "darkest": { "value": "rgb(255, 129, 107)", "uuid": "ccb79099-59f4-4bf2-b149-0de72f556a45" }, @@ -766,10 +630,6 @@ "uuid": "4a585714-4331-44b1-b81f-25a8ff1cc8ea" }, "dark": { - "value": "rgb(255, 176, 161)", - "uuid": "e584aa4f-7e8f-4815-a9ca-f9804e233f5d" - }, - "darkest": { "value": "rgb(255, 158, 140)", "uuid": "95621c5a-1768-4707-a2ce-bd15c61c89f4" }, @@ -786,10 +646,6 @@ "uuid": "a02ee7fb-b9de-45f1-bee7-8ffe2145cbec" }, "dark": { - "value": "rgb(255, 201, 189)", - "uuid": "843a8bc9-646d-44e0-b6c0-728186ebc983" - }, - "darkest": { "value": "rgb(255, 183, 169)", "uuid": "53617d38-1075-4b47-87c7-4695b385a2d7" }, @@ -806,10 +662,6 @@ "uuid": "ea79c634-9d94-4012-bae0-903479c34dc5" }, "dark": { - "value": "rgb(255, 222, 216)", - "uuid": "34ad97a7-a6ee-4240-9eef-596694bf6e6b" - }, - "darkest": { "value": "rgb(255, 205, 195)", "uuid": "e7820c1c-ff58-431d-b521-b81ee3281db0" }, @@ -826,10 +678,6 @@ "uuid": "63934482-260f-4c73-a176-cad11427c537" }, "dark": { - "value": "rgb(255, 241, 238)", - "uuid": "27f9bb17-392f-4707-971e-1f42ebf2b3d9" - }, - "darkest": { "value": "rgb(255, 223, 217)", "uuid": "7691bca6-3749-4cb7-a950-a94fe3d2910f" }, @@ -846,10 +694,6 @@ "uuid": "1c208bc2-2eca-4727-a195-f80fe0e7ea11" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "bb706c45-98ac-4fbe-b838-d42d930d31c0" - }, - "darkest": { "value": "rgb(255, 237, 234)", "uuid": "aaafa24c-cb3c-48cd-9cb7-e164be140ab5" }, @@ -866,10 +710,6 @@ "uuid": "8bfd5eff-55b4-4b98-9b2e-2871e4ec6ff6" }, "dark": { - "value": "rgb(102, 37, 0)", - "uuid": "507c23ac-f6a7-4820-b052-c129975eaa20" - }, - "darkest": { "value": "rgb(72, 24, 1)", "uuid": "974ab8ec-6691-4696-b38c-77e16fb3df88" }, @@ -886,10 +726,6 @@ "uuid": "64371717-ac11-4ec3-a0aa-9042cf43fa8f" }, "dark": { - "value": "rgb(117, 45, 0)", - "uuid": "abba55d6-d5e0-445a-af5f-c61b58ee148d" - }, - "darkest": { "value": "rgb(92, 32, 0)", "uuid": "587d4ce3-4275-4d2a-916c-2b1bf78c38ea" }, @@ -906,10 +742,6 @@ "uuid": "f34f9b32-ef46-4473-bfd6-10b858e53f55" }, "dark": { - "value": "rgb(137, 55, 0)", - "uuid": "38a3144d-99ef-4b82-9742-e15bf64bdae4" - }, - "darkest": { "value": "rgb(115, 43, 0)", "uuid": "74f40bbb-5afd-4c88-89d3-e69de9e2b604" }, @@ -926,10 +758,6 @@ "uuid": "15bea688-4c32-44c0-9ee3-242bdb50954c" }, "dark": { - "value": "rgb(158, 66, 0)", - "uuid": "88889af1-222d-466a-b283-2a5bf6b577c8" - }, - "darkest": { "value": "rgb(138, 55, 0)", "uuid": "b912089a-b6c9-49ef-8a4b-0a1f6fbbe963" }, @@ -946,10 +774,6 @@ "uuid": "33bd4908-1259-4e75-8e96-bd410bebcfd6" }, "dark": { - "value": "rgb(180, 78, 0)", - "uuid": "f447dc9f-3375-4b1e-8813-7952734f6aa6" - }, - "darkest": { "value": "rgb(162, 68, 0)", "uuid": "8a56b352-d7d4-45d4-b403-448557656dab" }, @@ -966,10 +790,6 @@ "uuid": "eeede364-d711-40e5-9d2a-0255b10d36f2" }, "dark": { - "value": "rgb(202, 93, 0)", - "uuid": "527058c0-0e17-42bc-903f-c43db0c9cb9d" - }, - "darkest": { "value": "rgb(186, 82, 0)", "uuid": "27b198b5-bf02-476a-a440-84c9a5bd2ce3" }, @@ -986,10 +806,6 @@ "uuid": "a4527b6f-e2d4-4a0f-b013-007dc5a2d3ac" }, "dark": { - "value": "rgb(225, 109, 0)", - "uuid": "7816c1b2-49da-455e-a21f-4e82011f4dca" - }, - "darkest": { "value": "rgb(210, 98, 0)", "uuid": "f9e84513-57d6-4786-b8db-c86055cebfc6" }, @@ -1006,10 +822,6 @@ "uuid": "437e4f5b-e68c-4491-b26c-a9fa1503561b" }, "dark": { - "value": "rgb(244, 129, 12)", - "uuid": "21d33346-5120-4b05-9d50-b027fd44c7a5" - }, - "darkest": { "value": "rgb(232, 116, 0)", "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" }, @@ -1026,10 +838,6 @@ "uuid": "e9df9a43-f509-44f3-89f6-c277f7445651" }, "dark": { - "value": "rgb(254, 154, 46)", - "uuid": "c3569470-05da-4825-a9cc-3e7ea1699fcd" - }, - "darkest": { "value": "rgb(249, 137, 23)", "uuid": "0fbe4f46-02a8-444d-ace5-c245c6f15112" }, @@ -1046,10 +854,6 @@ "uuid": "7dc902b9-6512-429e-9cb4-c2f97ca08e99" }, "dark": { - "value": "rgb(255, 181, 88)", - "uuid": "02631a05-4d8e-4eed-af1f-e6c1f8c9c031" - }, - "darkest": { "value": "rgb(255, 162, 59)", "uuid": "92e06ff6-8347-4320-9a98-3054ba458d0e" }, @@ -1066,10 +870,6 @@ "uuid": "b6c1e499-f043-4b5a-81cf-4224a0f83fce" }, "dark": { - "value": "rgb(253, 206, 136)", - "uuid": "aacaf0f0-b22a-4b25-9c87-6119c04ff035" - }, - "darkest": { "value": "rgb(255, 188, 102)", "uuid": "a571e2cd-2aff-4344-b608-45a48162cb61" }, @@ -1086,10 +886,6 @@ "uuid": "14da1231-c89f-45a1-845e-f3bd902f704b" }, "dark": { - "value": "rgb(255, 225, 179)", - "uuid": "39d4fb83-3982-439c-a9f9-bd95ab2ba7e4" - }, - "darkest": { "value": "rgb(253, 210, 145)", "uuid": "8e3fe8e0-2b14-4331-869f-de2680ea60ac" }, @@ -1106,10 +902,6 @@ "uuid": "f650301b-6586-4193-9937-9f12d6c3f99f" }, "dark": { - "value": "rgb(255, 242, 221)", - "uuid": "7f4eca34-effb-4749-8e80-b4b24dd96186" - }, - "darkest": { "value": "rgb(255, 226, 181)", "uuid": "06afaefe-7e0a-42e2-99b5-e62674e1185d" }, @@ -1126,10 +918,6 @@ "uuid": "99a43835-df3a-4447-b91d-9d943659b07f" }, "dark": { - "value": "rgb(255, 253, 249)", - "uuid": "cf947ed5-5665-4b46-aead-e18f2477ed48" - }, - "darkest": { "value": "rgb(255, 239, 213)", "uuid": "9f2f551f-b606-48ce-9493-888587d3ccb6" }, @@ -1146,10 +934,6 @@ "uuid": "910d2e36-245f-4df6-a99c-92a5bb4d4cce" }, "dark": { - "value": "rgb(76, 54, 0)", - "uuid": "f18c112a-3abe-4a68-b671-f4e0a4e9ee80" - }, - "darkest": { "value": "rgb(53, 36, 0)", "uuid": "7bef094a-1523-4392-a0ca-59c48409f17a" }, @@ -1166,10 +950,6 @@ "uuid": "0ebcaa53-4d19-4eed-99d1-4477f4358a58" }, "dark": { - "value": "rgb(88, 64, 0)", - "uuid": "b5c57a8b-ba79-40ff-9710-016e4503f134" - }, - "darkest": { "value": "rgb(68, 47, 0)", "uuid": "f4fdc925-63b3-4670-9f2b-a057c27c834a" }, @@ -1186,10 +966,6 @@ "uuid": "97ea0771-52c6-48f0-8725-dc514b0738d4" }, "dark": { - "value": "rgb(103, 76, 0)", - "uuid": "6735b5e5-4ce3-4fff-bb1f-497b8932c908" - }, - "darkest": { "value": "rgb(86, 62, 0)", "uuid": "238147c6-0302-4d43-b3a3-42df832c7857" }, @@ -1206,10 +982,6 @@ "uuid": "8ffb47cc-cc5c-4179-807e-4a1cb45c6496" }, "dark": { - "value": "rgb(119, 89, 0)", - "uuid": "e8802954-19e6-450c-a75a-7202e5a5023c" - }, - "darkest": { "value": "rgb(103, 77, 0)", "uuid": "62ab6892-66ea-4b55-8c1a-fcc191d29717" }, @@ -1226,10 +998,6 @@ "uuid": "68a43979-6dee-45b9-963d-3e827b2554f4" }, "dark": { - "value": "rgb(136, 104, 0)", - "uuid": "5d1e7587-c787-43cf-a17c-3bd9acc800af" - }, - "darkest": { "value": "rgb(122, 92, 0)", "uuid": "efa1fdd8-4478-411a-892c-0ecf23939489" }, @@ -1246,10 +1014,6 @@ "uuid": "8c86293e-334b-49ed-a7aa-eb4fe987002f" }, "dark": { - "value": "rgb(155, 120, 0)", - "uuid": "6ce0efce-3c8c-4108-92b3-78f2088a7c83" - }, - "darkest": { "value": "rgb(141, 108, 0)", "uuid": "8ae3c5ec-aabe-47a0-b822-ba0907e67ed4" }, @@ -1266,10 +1030,6 @@ "uuid": "881b7389-0c65-46e6-a391-d1d5800c535c" }, "dark": { - "value": "rgb(174, 137, 0)", - "uuid": "b0ccfc1b-2992-4d00-aa90-2990197f8a02" - }, - "darkest": { "value": "rgb(161, 126, 0)", "uuid": "ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359" }, @@ -1286,10 +1046,6 @@ "uuid": "b9ee2410-9573-4acd-bff8-ce11bf0f72a0" }, "dark": { - "value": "rgb(192, 156, 0)", - "uuid": "aab14913-8d2a-428b-acb4-3c03529b4c20" - }, - "darkest": { "value": "rgb(180, 144, 0)", "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" }, @@ -1306,10 +1062,6 @@ "uuid": "1b030fd3-f5bc-4e84-8efd-33db77bf64b8" }, "dark": { - "value": "rgb(211, 174, 0)", - "uuid": "fba8d22e-6db1-4146-8554-8a9f819b09c3" - }, - "darkest": { "value": "rgb(199, 162, 0)", "uuid": "a12f6cac-7fdc-4fd4-8120-ad957823ff6b" }, @@ -1326,10 +1078,6 @@ "uuid": "a9d84db4-e9db-45a8-9010-4e64822f0408" }, "dark": { - "value": "rgb(228, 194, 0)", - "uuid": "48c1ac65-4ffc-4bcc-b7c0-1c7263d1a5f2" - }, - "darkest": { "value": "rgb(216, 181, 0)", "uuid": "4cf4a500-37a2-4dd8-a243-14f6c012b53c" }, @@ -1346,10 +1094,6 @@ "uuid": "b6001568-2f26-4722-85e2-e6a3a8ad0ec8" }, "dark": { - "value": "rgb(244, 213, 0)", - "uuid": "d6609e5e-813f-40a3-ba85-81e8e4ba533a" - }, - "darkest": { "value": "rgb(233, 199, 0)", "uuid": "4eee9daf-e19d-4e0b-b12d-4fdcc4852956" }, @@ -1366,10 +1110,6 @@ "uuid": "7be15b50-51c6-4d0c-9ec8-89b4ac170a5a" }, "dark": { - "value": "rgb(249, 232, 92)", - "uuid": "e652bbeb-ea99-466e-aba9-ab40c8af690d" - }, - "darkest": { "value": "rgb(247, 216, 4)", "uuid": "69059dfa-e2e1-4f8d-b06b-058a8724e071" }, @@ -1386,10 +1126,6 @@ "uuid": "b5808c39-38db-4378-96db-1f6d44ce5172" }, "dark": { - "value": "rgb(252, 246, 187)", - "uuid": "ce6cae94-1b85-4a88-a582-c16750e2994d" - }, - "darkest": { "value": "rgb(249, 233, 97)", "uuid": "b2a1039c-cbfe-44bf-a0fe-822c5f576f52" }, @@ -1406,10 +1142,6 @@ "uuid": "65ad1c10-fb0d-4dd2-a9f5-66ab34dcc86b" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "bf7b43f5-b6b9-4ba5-bbd1-406145088d66" - }, - "darkest": { "value": "rgb(252, 243, 170)", "uuid": "dfd355e7-82fd-4fdb-96bd-b584d7268ee9" }, @@ -1426,10 +1158,6 @@ "uuid": "b7cca467-abe9-4632-b01a-dda350c93480" }, "dark": { - "value": "rgb(48, 64, 0)", - "uuid": "fe55390b-676c-42c3-bcaa-fc5295d59c3c" - }, - "darkest": { "value": "rgb(32, 43, 0)", "uuid": "bdc6a473-3109-44c6-9e2f-198d3224d75f" }, @@ -1446,10 +1174,6 @@ "uuid": "c1146153-61bf-4a31-8254-54a1d25a93c5" }, "dark": { - "value": "rgb(55, 74, 0)", - "uuid": "76dda145-58f8-448a-b37a-2f4b2d4f7fdd" - }, - "darkest": { "value": "rgb(42, 56, 0)", "uuid": "b18f4550-5bbe-496c-b4a5-13df8fd0c7d7" }, @@ -1466,10 +1190,6 @@ "uuid": "f8812b11-742b-44d6-a21a-7fd3db39fe71" }, "dark": { - "value": "rgb(65, 87, 0)", - "uuid": "4dd24fac-30ad-45a2-825f-3573c84496e8" - }, - "darkest": { "value": "rgb(54, 72, 0)", "uuid": "b98dec90-df71-4593-946d-91df7918caac" }, @@ -1486,10 +1206,6 @@ "uuid": "32e471ce-5b0d-40f1-a77a-67feff02775e" }, "dark": { - "value": "rgb(76, 102, 0)", - "uuid": "ba474593-d290-441c-8077-b74c098f59d2" - }, - "darkest": { "value": "rgb(66, 88, 0)", "uuid": "6a974b7d-ccd2-4778-baae-8caf419a529c" }, @@ -1506,10 +1222,6 @@ "uuid": "fe3be762-b55e-43cb-9163-68ee7dafc53e" }, "dark": { - "value": "rgb(89, 118, 0)", - "uuid": "234a0a76-ffd8-4d22-8d66-21e0f84c42d2" - }, - "darkest": { "value": "rgb(79, 105, 0)", "uuid": "46d8fd3b-0e51-4cdd-a33c-de184b82dcc5" }, @@ -1526,10 +1238,6 @@ "uuid": "d61e865b-6538-42a8-aba8-0842359b80c2" }, "dark": { - "value": "rgb(102, 136, 0)", - "uuid": "efd39a1a-549c-4742-918b-bec4ea48539b" - }, - "darkest": { "value": "rgb(93, 123, 0)", "uuid": "965174d2-e743-41df-a8e2-570b2ae2f447" }, @@ -1546,10 +1254,6 @@ "uuid": "3d0fd171-80f3-4f08-9ac0-eb46d0e755f9" }, "dark": { - "value": "rgb(117, 154, 0)", - "uuid": "d8876d4a-e6d0-447b-80ec-3804221d4b7b" - }, - "darkest": { "value": "rgb(107, 142, 0)", "uuid": "a615bb51-0249-4201-b1c9-1c6269b82ec2" }, @@ -1566,10 +1270,6 @@ "uuid": "9a0701e4-81a0-420b-b751-c6a46670fbf3" }, "dark": { - "value": "rgb(132, 173, 1)", - "uuid": "82546f0c-0707-4767-ad1f-2fae18434d91" - }, - "darkest": { "value": "rgb(122, 161, 0)", "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" }, @@ -1586,10 +1286,6 @@ "uuid": "7d22a144-0f7c-435e-ad05-b2d7672dff08" }, "dark": { - "value": "rgb(148, 192, 8)", - "uuid": "8a0c7b2d-66fc-499a-bb16-fd18a42ef2ed" - }, - "darkest": { "value": "rgb(138, 180, 3)", "uuid": "1637c50e-88e4-4273-8a75-6e8a233a690c" }, @@ -1606,10 +1302,6 @@ "uuid": "00100510-9965-4086-ba82-0cb62ffebba1" }, "dark": { - "value": "rgb(166, 211, 18)", - "uuid": "7feea643-ca0a-4aca-8acf-da425fbe99a4" - }, - "darkest": { "value": "rgb(154, 198, 11)", "uuid": "7dbedc59-e21c-4953-a7af-5e91d170604a" }, @@ -1626,10 +1318,6 @@ "uuid": "e964b654-261d-44a5-ab0a-78c8137a7783" }, "dark": { - "value": "rgb(184, 229, 37)", - "uuid": "550e1eb2-bbe0-4a14-8e53-d15dc06cee35" - }, - "darkest": { "value": "rgb(170, 216, 22)", "uuid": "90417b40-97dd-47b3-9dbc-4ac45f8e4a5f" }, @@ -1646,10 +1334,6 @@ "uuid": "6bf184f6-f0e1-41af-94a4-47aa1a37b0aa" }, "dark": { - "value": "rgb(205, 245, 71)", - "uuid": "07b5da40-2e3c-43bf-959a-45ceb8bf9940" - }, - "darkest": { "value": "rgb(187, 232, 41)", "uuid": "e4b04d5d-e99d-41c5-8b24-540d653ef3ff" }, @@ -1666,10 +1350,6 @@ "uuid": "e320e57d-2794-4c1e-97ef-3a8b04be1328" }, "dark": { - "value": "rgb(231, 254, 154)", - "uuid": "3ab82f98-3b65-4412-adef-57c1e4833421" - }, - "darkest": { "value": "rgb(205, 246, 72)", "uuid": "615841b9-08b2-4e21-981a-b8f5247e9e89" }, @@ -1686,10 +1366,6 @@ "uuid": "56b4f40c-d9f2-4360-99eb-7097aafedf94" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "5ac81a8e-2997-4b8f-aa21-ca335b0f3cfe" - }, - "darkest": { "value": "rgb(225, 253, 132)", "uuid": "a75188c9-02e3-4337-8056-9a6f8f39001f" }, @@ -1706,10 +1382,6 @@ "uuid": "b4a22d71-d90a-4f6e-8f6d-e4967849376f" }, "dark": { - "value": "rgb(0, 69, 10)", - "uuid": "c711d2ee-7915-40f4-bf2e-ac3f31d60311" - }, - "darkest": { "value": "rgb(0, 47, 7)", "uuid": "43feed9a-9a2a-44e0-9506-9bc5eb8eab1d" }, @@ -1726,10 +1398,6 @@ "uuid": "30941af9-354a-4d61-9462-aca4bcd50093" }, "dark": { - "value": "rgb(0, 80, 12)", - "uuid": "96d6a7b1-617c-44db-9ef3-d70063895351" - }, - "darkest": { "value": "rgb(0, 61, 9)", "uuid": "741a30fb-62a9-4c76-a78e-cc2590af9c7d" }, @@ -1746,10 +1414,6 @@ "uuid": "3562f589-ba34-465e-9549-2600e2527ab8" }, "dark": { - "value": "rgb(0, 94, 14)", - "uuid": "b1432da5-d086-4e16-b7dd-fd9d92fef470" - }, - "darkest": { "value": "rgb(0, 77, 12)", "uuid": "5eda4487-8f82-48ed-8b22-aa38601bbf88" }, @@ -1766,10 +1430,6 @@ "uuid": "d86c4477-a2f4-449a-8883-daaf33608fde" }, "dark": { - "value": "rgb(0, 109, 15)", - "uuid": "c573ed43-0055-47ff-8c3b-de32582b521e" - }, - "darkest": { "value": "rgb(0, 95, 15)", "uuid": "646d80c1-7073-4e13-bbfe-4bd0c2226079" }, @@ -1786,10 +1446,6 @@ "uuid": "9c5fc2d5-30cc-4389-b219-2db69f8a86f9" }, "dark": { - "value": "rgb(0, 127, 15)", - "uuid": "350fb94c-ae2b-4843-808c-a8b6a55a0596" - }, - "darkest": { "value": "rgb(0, 113, 15)", "uuid": "7d4c282b-78ce-4b2c-ab39-26bf02366e4d" }, @@ -1806,10 +1462,6 @@ "uuid": "c2cfbc22-b556-4cb5-b5ee-670254d5ecbc" }, "dark": { - "value": "rgb(0, 145, 18)", - "uuid": "f24733a3-e55f-467d-b757-4ebf620b8c22" - }, - "darkest": { "value": "rgb(0, 132, 15)", "uuid": "260d8921-3810-4a5d-a20f-cd00170cf951" }, @@ -1826,10 +1478,6 @@ "uuid": "59b03f98-f898-4888-ad71-07a434e2fc7e" }, "dark": { - "value": "rgb(4, 165, 30)", - "uuid": "983d90f4-9b72-4a6b-a6fd-7934e425a305" - }, - "darkest": { "value": "rgb(0, 151, 20)", "uuid": "7e7e6abb-a2e9-4308-ac8e-e6866ec17c64" }, @@ -1846,10 +1494,6 @@ "uuid": "41747345-10ab-476a-9d3d-e657f9383e8e" }, "dark": { - "value": "rgb(34, 184, 51)", - "uuid": "8f3ec908-66e4-48da-b129-9bb3420e11e5" - }, - "darkest": { "value": "rgb(13, 171, 37)", "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" }, @@ -1866,10 +1510,6 @@ "uuid": "deec9c21-caeb-4ec4-bca4-a7661a2c5f91" }, "dark": { - "value": "rgb(68, 202, 73)", - "uuid": "48c0f87a-4d30-4626-b7f0-3e697f08ed49" - }, - "darkest": { "value": "rgb(45, 191, 58)", "uuid": "706f3a95-ab27-497f-aab7-f4ed806eef30" }, @@ -1886,10 +1526,6 @@ "uuid": "3d509755-d653-4a3f-a5a3-fcbed0c2e21c" }, "dark": { - "value": "rgb(105, 220, 99)", - "uuid": "c2f2caa8-d043-4213-a79e-23a0868e62f7" - }, - "darkest": { "value": "rgb(80, 208, 82)", "uuid": "021a55b8-26ae-4767-82fb-06b20c58762b" }, @@ -1906,10 +1542,6 @@ "uuid": "ea7327bb-48a8-41dd-b139-c7bda3dedaee" }, "dark": { - "value": "rgb(142, 235, 127)", - "uuid": "dcb055d0-c653-4b49-8b40-93d4d8b6e25e" - }, - "darkest": { "value": "rgb(115, 224, 107)", "uuid": "e091babe-6e02-4393-a67e-63222ab860b4" }, @@ -1926,10 +1558,6 @@ "uuid": "fc4dedc3-0009-4a5a-8e93-f52ba4155e0a" }, "dark": { - "value": "rgb(180, 247, 162)", - "uuid": "73da5344-395b-43ff-bb50-7dd5f2dbc225" - }, - "darkest": { "value": "rgb(147, 237, 131)", "uuid": "9913e84a-4070-476f-a570-a16781a924cf" }, @@ -1946,10 +1574,6 @@ "uuid": "7a3d9646-272f-4ca1-a4e6-0708eb2cd378" }, "dark": { - "value": "rgb(221, 253, 211)", - "uuid": "82e856f7-e76e-4b5b-be5b-46d3eb113c5f" - }, - "darkest": { "value": "rgb(180, 247, 162)", "uuid": "d2d8dc91-da75-4c56-a0d8-e6e9802434ad" }, @@ -1966,10 +1590,6 @@ "uuid": "02e66104-cbf7-4e27-89cf-f18b1ef04f2d" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "963eafe6-3738-4470-a5dd-938e9f9c15aa" - }, - "darkest": { "value": "rgb(213, 252, 202)", "uuid": "c5c3c68c-8293-4ebb-a8d1-9f4af902906e" }, @@ -1986,10 +1606,6 @@ "uuid": "4428dba5-df85-4125-ba54-1c022b986847" }, "dark": { - "value": "rgb(4, 67, 41)", - "uuid": "c13e61ca-4448-47fe-ab6b-156a62e18057" - }, - "darkest": { "value": "rgb(10, 44, 28)", "uuid": "e5a14d4a-47c5-4a53-84c5-589a0749d906" }, @@ -2006,10 +1622,6 @@ "uuid": "9d32cd19-8375-4da3-9324-0e8334c2e714" }, "dark": { - "value": "rgb(0, 78, 47)", - "uuid": "df621308-02ad-49b0-9be3-10aa387bca77" - }, - "darkest": { "value": "rgb(7, 59, 36)", "uuid": "e8f294f5-cb17-4fdc-b370-ca2e3f95d342" }, @@ -2026,10 +1638,6 @@ "uuid": "88bac762-84e1-4652-8152-384f3b1faf59" }, "dark": { - "value": "rgb(0, 92, 56)", - "uuid": "14b4ff49-4ab1-48a6-aa1e-806c6cadaa62" - }, - "darkest": { "value": "rgb(0, 76, 46)", "uuid": "cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2" }, @@ -2046,10 +1654,6 @@ "uuid": "5cb02868-9f86-4e20-85e0-e4f5df24853c" }, "dark": { - "value": "rgb(0, 108, 67)", - "uuid": "ae488b77-a511-4ef2-846c-55b336525eec" - }, - "darkest": { "value": "rgb(0, 93, 57)", "uuid": "c5e88879-9773-446c-883e-96531bcb8fad" }, @@ -2066,10 +1670,6 @@ "uuid": "8b315766-4fa0-4acc-a679-89da4162a15c" }, "dark": { - "value": "rgb(0, 125, 78)", - "uuid": "7be03fbf-6ce6-4707-8628-ec9ae3465f47" - }, - "darkest": { "value": "rgb(0, 111, 69)", "uuid": "27649ccc-69a8-48d6-9d52-6d6e2e28ae17" }, @@ -2086,10 +1686,6 @@ "uuid": "4c6c7b90-29ac-4186-a991-c298f19aa83d" }, "dark": { - "value": "rgb(0, 143, 93)", - "uuid": "7cdbd4d6-643d-49f2-9c00-aef6f6b98eef" - }, - "darkest": { "value": "rgb(0, 130, 82)", "uuid": "a0513e49-8483-40f8-8b8f-41fdc222f13d" }, @@ -2106,10 +1702,6 @@ "uuid": "19a07ad0-9e01-4adc-861d-f7634de1f1ab" }, "dark": { - "value": "rgb(18, 162, 108)", - "uuid": "4c105995-9269-4655-9bbd-bb50f9cdca4a" - }, - "darkest": { "value": "rgb(0, 149, 98)", "uuid": "9c24175e-34a5-46c8-b646-f70c08292776" }, @@ -2126,10 +1718,6 @@ "uuid": "1be225f8-3612-422c-923f-b35f1ec4fc00" }, "dark": { - "value": "rgb(43, 180, 125)", - "uuid": "5471d254-44e5-4317-a6d6-eb24279c0b03" - }, - "darkest": { "value": "rgb(28, 168, 114)", "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" }, @@ -2146,10 +1734,6 @@ "uuid": "cd39a520-2020-41d0-96d1-3b0fdb453fef" }, "dark": { - "value": "rgb(67, 199, 143)", - "uuid": "21cb58fb-f173-4348-9b70-1b20683b7a65" - }, - "darkest": { "value": "rgb(52, 187, 132)", "uuid": "5afee2ee-a5d5-4dcf-a917-11dfdd0c3691" }, @@ -2166,10 +1750,6 @@ "uuid": "b0846caa-d394-4614-aaa2-af179de285f4" }, "dark": { - "value": "rgb(94, 217, 162)", - "uuid": "d2fb208c-73f2-42c6-a27e-bd4f8832b25f" - }, - "darkest": { "value": "rgb(75, 205, 149)", "uuid": "3d6732a1-a1f9-4e18-927b-93cebaae3895" }, @@ -2186,10 +1766,6 @@ "uuid": "8d0742b8-c334-41e0-a8e1-50fc8ea3b3ef" }, "dark": { - "value": "rgb(129, 233, 184)", - "uuid": "4a310c88-9def-42fe-ad5e-1153d185a5fe" - }, - "darkest": { "value": "rgb(103, 222, 168)", "uuid": "a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82" }, @@ -2206,10 +1782,6 @@ "uuid": "4ea6f2d0-bc92-44fa-90e9-9618806a19c2" }, "dark": { - "value": "rgb(177, 244, 209)", - "uuid": "53ba43a9-2d41-4a55-9193-0d569e939993" - }, - "darkest": { "value": "rgb(137, 236, 188)", "uuid": "07fa1b72-bf84-4fd5-9565-28373fae6a1f" }, @@ -2226,10 +1798,6 @@ "uuid": "569d58d2-c7e4-4a0c-b92a-841e45fcbc09" }, "dark": { - "value": "rgb(223, 250, 234)", - "uuid": "7a024876-6c60-4df1-863d-beda1d572bd6" - }, - "darkest": { "value": "rgb(177, 244, 209)", "uuid": "c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73" }, @@ -2246,10 +1814,6 @@ "uuid": "c0711ebf-a91a-4041-8e1a-259ed6c3c54c" }, "dark": { - "value": "rgb(254, 255, 252)", - "uuid": "b07f7383-d795-49e5-9dac-1d448d978624" - }, - "darkest": { "value": "rgb(214, 249, 228)", "uuid": "df5458e5-891b-4a88-a96c-748a812978a7" }, @@ -2266,10 +1830,6 @@ "uuid": "2330ab05-6153-47a1-ab56-18f3cb1c579f" }, "dark": { - "value": "rgb(18, 65, 63)", - "uuid": "d668ef92-6475-40e4-9837-d607fbb6b1ef" - }, - "darkest": { "value": "rgb(18, 43, 42)", "uuid": "080b56a3-6f95-422a-9f4b-d850966c4984" }, @@ -2286,10 +1846,6 @@ "uuid": "870298fd-4e1f-4649-bfbc-5ad5b768c2e3" }, "dark": { - "value": "rgb(14, 76, 73)", - "uuid": "05f93ec8-51ce-40fc-8609-0f7b6237c68f" - }, - "darkest": { "value": "rgb(19, 57, 55)", "uuid": "2876bdd7-af97-4cd6-89cc-bdb9c2110946" }, @@ -2306,10 +1862,6 @@ "uuid": "1fe5483a-95bd-4597-802a-9e84c1486dbe" }, "dark": { - "value": "rgb(4, 90, 87)", - "uuid": "7a5a19a8-fb25-4771-9972-837db8c65e9d" - }, - "darkest": { "value": "rgb(16, 73, 70)", "uuid": "d90b7496-0f54-41ce-96eb-c973457661ae" }, @@ -2326,10 +1878,6 @@ "uuid": "e2b4d354-9a1d-4153-b988-4fc24c117252" }, "dark": { - "value": "rgb(0, 105, 101)", - "uuid": "d98c80fb-6f43-46bb-ac9a-227cf134ca67" - }, - "darkest": { "value": "rgb(3, 91, 88)", "uuid": "ec603c2c-b2b2-4769-a889-ba7c91a458eb" }, @@ -2346,10 +1894,6 @@ "uuid": "a1da1af7-df37-455d-8d27-2920b36f209f" }, "dark": { - "value": "rgb(0, 122, 117)", - "uuid": "a4a5e461-575d-4ae5-9b0b-985b6b8e70b1" - }, - "darkest": { "value": "rgb(0, 108, 104)", "uuid": "c24b866c-5ac0-49de-857b-48c655fa9990" }, @@ -2366,10 +1910,6 @@ "uuid": "cfd8a8b3-d567-4eb4-9b6f-5db352607dab" }, "dark": { - "value": "rgb(0, 140, 135)", - "uuid": "dbc0b9aa-b312-43fd-b412-e2013caf91d7" - }, - "darkest": { "value": "rgb(0, 127, 121)", "uuid": "73b58f7e-008b-44ae-8969-19d981d444d6" }, @@ -2386,10 +1926,6 @@ "uuid": "a036b309-95ec-45e6-b035-f30f0f922422" }, "dark": { - "value": "rgb(0, 158, 152)", - "uuid": "3fd24914-a5c7-4d79-b73a-3dfb135dd75b" - }, - "darkest": { "value": "rgb(0, 146, 140)", "uuid": "0b8528e6-ceea-47a5-9727-24e97d7bc138" }, @@ -2406,10 +1942,6 @@ "uuid": "ac4f12a3-a3f0-4053-87f4-5fc42b08cf23" }, "dark": { - "value": "rgb(3, 178, 171)", - "uuid": "49b5ed44-a22b-4565-a09f-1e7ebc1bc63e" - }, - "darkest": { "value": "rgb(0, 165, 159)", "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" }, @@ -2426,10 +1958,6 @@ "uuid": "74cb44f8-8ab0-4a36-9920-0735756e0ddc" }, "dark": { - "value": "rgb(54, 197, 189)", - "uuid": "5bbc257f-e7b9-46eb-a591-dbe2ad1850b7" - }, - "darkest": { "value": "rgb(26, 185, 178)", "uuid": "dca23a18-2b19-48bf-9894-2f0948f6c05e" }, @@ -2446,10 +1974,6 @@ "uuid": "84e4e598-4fd7-445a-a6cf-2884c0aae4d0" }, "dark": { - "value": "rgb(93, 214, 207)", - "uuid": "e134295a-a409-4143-b656-98b6e9cb40bd" - }, - "darkest": { "value": "rgb(66, 202, 195)", "uuid": "c416b5c5-0506-419f-88ca-f722f12a9d86" }, @@ -2466,10 +1990,6 @@ "uuid": "d1bb038a-f83b-4e97-b95f-b215c7bc2916" }, "dark": { - "value": "rgb(132, 230, 223)", - "uuid": "9f1e7783-21c4-4890-9f61-af5423aaec37" - }, - "darkest": { "value": "rgb(102, 218, 211)", "uuid": "4a853bfc-f1b0-4e39-8cd8-da0350c99cd5" }, @@ -2486,10 +2006,6 @@ "uuid": "0eab9416-b6f5-4d26-bde6-9b8a840f7681" }, "dark": { - "value": "rgb(176, 242, 236)", - "uuid": "0f47e0b5-6612-4014-b074-e9a6817f9a37" - }, - "darkest": { "value": "rgb(139, 232, 225)", "uuid": "8e4c65b7-d819-4ffd-9398-71e9d294ba63" }, @@ -2506,10 +2022,6 @@ "uuid": "a88e0c6e-dfd5-4a43-8d43-97fa10101165" }, "dark": { - "value": "rgb(223, 249, 246)", - "uuid": "ec37ce56-739c-4f91-a36c-6e56480aa822" - }, - "darkest": { "value": "rgb(179, 242, 237)", "uuid": "ef35ace8-870d-42e0-8ce6-2df61415431f" }, @@ -2526,10 +2038,6 @@ "uuid": "52c9177c-bc81-41b1-ba6d-9b075fbe8541" }, "dark": { - "value": "rgb(254, 255, 254)", - "uuid": "06b4eb8e-ff63-4345-a37f-67d5f48edb1b" - }, - "darkest": { "value": "rgb(215, 248, 244)", "uuid": "9499384b-336c-4a41-af05-645a92ae40d4" }, @@ -2546,10 +2054,6 @@ "uuid": "72bef490-0c3a-4627-9341-fc6627cf3f74" }, "dark": { - "value": "rgb(0, 61, 98)", - "uuid": "efe22abb-6616-4456-81a0-37ee1951aba1" - }, - "darkest": { "value": "rgb(0, 41, 68)", "uuid": "24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7" }, @@ -2566,10 +2070,6 @@ "uuid": "c2aaf729-7f39-499a-8b67-e23801073b05" }, "dark": { - "value": "rgb(0, 71, 111)", - "uuid": "73ab4a44-d2ef-45e7-a810-6c067657ce40" - }, - "darkest": { "value": "rgb(0, 54, 88)", "uuid": "3445cf4b-2460-4692-acf2-71844d687da4" }, @@ -2586,10 +2086,6 @@ "uuid": "b54275ad-3ea6-4e69-aea2-97f488308fcc" }, "dark": { - "value": "rgb(0, 85, 127)", - "uuid": "f9868f72-1d95-4040-a223-659f98ba702f" - }, - "darkest": { "value": "rgb(0, 69, 108)", "uuid": "e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47" }, @@ -2606,10 +2102,6 @@ "uuid": "a33de292-77a9-40b7-961e-41ebfe331ad0" }, "dark": { - "value": "rgb(0, 100, 145)", - "uuid": "f20b54ee-fabd-4b7a-8d96-78e355a77e96" - }, - "darkest": { "value": "rgb(0, 86, 128)", "uuid": "94a5bd53-d69a-4063-b630-1976230d4f2d" }, @@ -2626,10 +2118,6 @@ "uuid": "f3e8ff9f-e60b-4bce-9c39-280aef6fcb08" }, "dark": { - "value": "rgb(0, 116, 162)", - "uuid": "d300a6ab-8f25-4a0f-b861-6023fb33d38a" - }, - "darkest": { "value": "rgb(0, 103, 147)", "uuid": "909baeef-fd2f-4550-89ea-fb7ac9ea2db5" }, @@ -2646,10 +2134,6 @@ "uuid": "d65f3e1d-ad9d-4fa7-ac06-37235124e999" }, "dark": { - "value": "rgb(0, 134, 180)", - "uuid": "bb07fb46-9ca3-4e0d-b004-97ec2bc4a5f0" - }, - "darkest": { "value": "rgb(0, 121, 167)", "uuid": "d753ef33-bfc0-424b-a2ac-ea87ecbee590" }, @@ -2666,10 +2150,6 @@ "uuid": "08b4548a-618d-4ab5-ae46-2a60c7936f57" }, "dark": { - "value": "rgb(0, 153, 198)", - "uuid": "5f971006-82ff-4793-aa03-82c2e21bebf0" - }, - "darkest": { "value": "rgb(0, 140, 186)", "uuid": "3cb348d4-14a9-43da-84c4-068cf46c8c6f" }, @@ -2686,10 +2166,6 @@ "uuid": "6dbdd00d-3b03-4eab-a77c-3a1f16d5e6ef" }, "dark": { - "value": "rgb(14, 173, 215)", - "uuid": "d87d8d1d-570f-4c3a-8736-f71bcc265c44" - }, - "darkest": { "value": "rgb(4, 160, 205)", "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" }, @@ -2706,10 +2182,6 @@ "uuid": "71769f93-467d-497a-b214-45c8753f34f5" }, "dark": { - "value": "rgb(44, 193, 230)", - "uuid": "807d5e18-52ee-4b22-9bf3-b969c83e01ba" - }, - "darkest": { "value": "rgb(23, 180, 221)", "uuid": "9c183829-4858-4908-b1ac-d89f40f2e903" }, @@ -2726,10 +2198,6 @@ "uuid": "25c689a1-7876-44fa-8849-3a8db03a866c" }, "dark": { - "value": "rgb(84, 211, 241)", - "uuid": "162dd4e2-ce25-431c-9849-cb4ab0625c51" - }, - "darkest": { "value": "rgb(57, 199, 234)", "uuid": "04f3d463-9118-43d5-973d-8bf94417912d" }, @@ -2746,10 +2214,6 @@ "uuid": "57ca59a9-1677-4813-9c0d-28267233ba35" }, "dark": { - "value": "rgb(127, 228, 249)", - "uuid": "db93015d-b200-4437-8399-aec786c338db" - }, - "darkest": { "value": "rgb(96, 216, 243)", "uuid": "62a7ebff-a49b-4e7a-981f-692a506b4146" }, @@ -2766,10 +2230,6 @@ "uuid": "d6ba8ac5-09d4-44e2-8ade-216c626eb154" }, "dark": { - "value": "rgb(167, 241, 255)", - "uuid": "3245ab92-850f-440d-bec6-1cdc34ab38b8" - }, - "darkest": { "value": "rgb(134, 230, 250)", "uuid": "36a2af99-eef4-476b-a3b8-58eade0931b7" }, @@ -2786,10 +2246,6 @@ "uuid": "1b179218-9e53-457d-977b-902509ef28aa" }, "dark": { - "value": "rgb(215, 250, 255)", - "uuid": "3bdb98f7-2dad-4c35-96e4-b009cbc01180" - }, - "darkest": { "value": "rgb(170, 242, 255)", "uuid": "5f3df12b-1330-4482-ad34-c623bd36253c" }, @@ -2806,10 +2262,6 @@ "uuid": "3eac8807-136f-4687-8403-203fb49fbd74" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "5bd12e39-1386-49d5-af4f-d9f7dd1c549c" - }, - "darkest": { "value": "rgb(206, 249, 255)", "uuid": "fe63b8a3-ebb9-45fe-99c2-e246b53e06a6" }, @@ -2826,10 +2278,6 @@ "uuid": "04cf76e0-1e7c-479a-9411-0dcad2f6ab25" }, "dark": { - "value": "rgb(40, 44, 140)", - "uuid": "4a856cd1-643f-485c-991b-c94a750277dc" - }, - "darkest": { "value": "rgb(26, 29, 97)", "uuid": "e60cb247-c265-4009-9f0a-bcbbbb801dd4" }, @@ -2846,10 +2294,6 @@ "uuid": "ab568cfd-20e5-4e20-a3bf-32292297df8f" }, "dark": { - "value": "rgb(47, 52, 163)", - "uuid": "4d6f5e35-b3bd-4215-a135-f7b2b67447e0" - }, - "darkest": { "value": "rgb(35, 39, 125)", "uuid": "56c709dd-b41e-478a-8098-21014e3f9ec8" }, @@ -2866,10 +2310,6 @@ "uuid": "a220a225-3bb9-446c-8ee3-732a96a150d2" }, "dark": { - "value": "rgb(57, 63, 187)", - "uuid": "6209d9c9-3639-4fdd-83de-904ca5ae5638" - }, - "darkest": { "value": "rgb(46, 50, 158)", "uuid": "716f244e-67c5-4566-b824-ed7f2192b585" }, @@ -2886,10 +2326,6 @@ "uuid": "891799a7-b51d-4769-abe3-62dd0da6e190" }, "dark": { - "value": "rgb(70, 75, 211)", - "uuid": "3d843f10-9396-43de-a855-a18b412b53fc" - }, - "darkest": { "value": "rgb(58, 63, 189)", "uuid": "c256e06e-07bc-4dcd-9239-48841916c93b" }, @@ -2906,10 +2342,6 @@ "uuid": "2751b8ae-f347-4a57-938d-98a5ee86071c" }, "dark": { - "value": "rgb(85, 91, 231)", - "uuid": "1283a5f4-4a5d-4d59-a1ea-5bdd3e0396c5" - }, - "darkest": { "value": "rgb(73, 78, 216)", "uuid": "1ea0564b-6e88-456e-a796-4620d57b8771" }, @@ -2926,10 +2358,6 @@ "uuid": "2d69bbe7-37c1-4302-9fee-39733bb13a86" }, "dark": { - "value": "rgb(104, 109, 244)", - "uuid": "c71827e0-5782-4b4f-b198-c6d7d4077249" - }, - "darkest": { "value": "rgb(90, 96, 235)", "uuid": "df590853-ce16-4ddf-bbe9-a912695eae17" }, @@ -2946,10 +2374,6 @@ "uuid": "3c57f9f6-e837-450b-9443-a702caa049a4" }, "dark": { - "value": "rgb(124, 129, 251)", - "uuid": "5fc6c5cb-3072-46c6-a8b0-b88091835ff4" - }, - "darkest": { "value": "rgb(110, 115, 246)", "uuid": "0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16" }, @@ -2966,10 +2390,6 @@ "uuid": "f5a317ea-25f2-4193-9305-f20c231e786e" }, "dark": { - "value": "rgb(145, 149, 255)", - "uuid": "9b272e22-81ba-4e31-a220-b79c4181c96f" - }, - "darkest": { "value": "rgb(132, 136, 253)", "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" }, @@ -2986,10 +2406,6 @@ "uuid": "87b65e85-d767-47bb-8af5-01b85282c663" }, "dark": { - "value": "rgb(167, 170, 255)", - "uuid": "3282c01c-7b68-4999-a12e-ee389a6f9ea1" - }, - "darkest": { "value": "rgb(153, 157, 255)", "uuid": "5cb7ff5e-ec53-4df8-b59d-a1419190a6cf" }, @@ -3006,10 +2422,6 @@ "uuid": "9d1a9aa9-a7b3-4254-9e55-a992784bb7b5" }, "dark": { - "value": "rgb(188, 190, 255)", - "uuid": "3fab75f4-9161-4040-88ca-0af98b1236fd" - }, - "darkest": { "value": "rgb(174, 177, 255)", "uuid": "0bf6170c-50d7-4600-96fe-2d1af93f173a" }, @@ -3026,10 +2438,6 @@ "uuid": "2f59721c-2922-4ad3-b50a-37327d592050" }, "dark": { - "value": "rgb(208, 210, 255)", - "uuid": "c537ba0b-c81a-40f3-8255-5be0491ca2a6" - }, - "darkest": { "value": "rgb(194, 196, 255)", "uuid": "c85ea1d9-e28d-46c5-abd0-c053858770e0" }, @@ -3046,10 +2454,6 @@ "uuid": "4aaedaea-2d42-4593-84e4-18a12ce5efc2" }, "dark": { - "value": "rgb(226, 228, 255)", - "uuid": "f9446b63-346f-4490-b975-929bdbb12655" - }, - "darkest": { "value": "rgb(212, 213, 255)", "uuid": "91f9622a-03b4-47b0-b380-5f6d64c13b5d" }, @@ -3066,10 +2470,6 @@ "uuid": "f8300596-def6-4640-8d9a-c08fea25bfda" }, "dark": { - "value": "rgb(243, 243, 254)", - "uuid": "11e00286-b34f-44c7-ba95-ab2e07990106" - }, - "darkest": { "value": "rgb(227, 228, 255)", "uuid": "c0bfd081-7859-4ed5-aa4c-c1f547dab8f3" }, @@ -3086,10 +2486,6 @@ "uuid": "4e8c10e6-0c7e-4f48-91a0-ff460915725d" }, "dark": { - "value": "rgb(255, 255, 255)", - "uuid": "ee07f360-a89e-49e6-baf5-462b84133aed" - }, - "darkest": { "value": "rgb(240, 240, 255)", "uuid": "080f9ea4-1d87-4691-adb7-3875a7708555" }, @@ -3106,10 +2502,6 @@ "uuid": "e80b112b-a26d-4392-a431-844b33d8bac8" }, "dark": { - "value": "rgb(76, 13, 157)", - "uuid": "1d180da0-3c21-488e-b017-728194ed8578" - }, - "darkest": { "value": "rgb(50, 16, 104)", "uuid": "ffc5aa7a-c339-4583-a586-3e8b1329d16d" }, @@ -3126,10 +2518,6 @@ "uuid": "65816c3d-544e-4bbd-bf0e-c0981e08a5cb" }, "dark": { - "value": "rgb(89, 17, 177)", - "uuid": "bad41b06-2848-4eb0-a3a0-6c2b90da8630" - }, - "darkest": { "value": "rgb(67, 13, 140)", "uuid": "2d67627b-372c-46af-b015-6c95bd027664" }, @@ -3146,10 +2534,6 @@ "uuid": "bea266d7-8f53-43b7-b7df-0daa5b7e6f89" }, "dark": { - "value": "rgb(105, 28, 200)", - "uuid": "22929eab-9a55-48b1-9798-d04d9bbea6cf" - }, - "darkest": { "value": "rgb(86, 16, 173)", "uuid": "be628028-f41d-4ace-abf3-f7f38ecb2e01" }, @@ -3166,10 +2550,6 @@ "uuid": "b68c2d3d-02e6-4130-9904-d2d32e67d115" }, "dark": { - "value": "rgb(122, 45, 218)", - "uuid": "d2c6a538-52af-4dc0-8318-b35453ffe8c4" - }, - "darkest": { "value": "rgb(106, 29, 200)", "uuid": "474fed30-921a-4795-8999-2310521c64c5" }, @@ -3186,10 +2566,6 @@ "uuid": "9625edd4-fcdd-406a-9a66-068dcfeb3bd9" }, "dark": { - "value": "rgb(140, 65, 233)", - "uuid": "3a969a81-eefb-468b-8889-1ad5b47c361f" - }, - "darkest": { "value": "rgb(126, 49, 222)", "uuid": "b912e8ba-ed77-4179-9b80-7448f9e37193" }, @@ -3206,10 +2582,6 @@ "uuid": "bfd24d4f-9100-4937-a45d-7614ce0ece74" }, "dark": { - "value": "rgb(157, 87, 243)", - "uuid": "694dda5b-71ac-4169-b71e-65fe62650098" - }, - "darkest": { "value": "rgb(145, 70, 236)", "uuid": "05638159-aaf7-4f3e-849e-a46e80cd9ee6" }, @@ -3226,10 +2598,6 @@ "uuid": "2f218111-4cef-432b-8d69-06492e7c40c1" }, "dark": { - "value": "rgb(172, 111, 249)", - "uuid": "84640df4-6e8f-4e2c-893c-187875bf8e2c" - }, - "darkest": { "value": "rgb(162, 94, 246)", "uuid": "fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c" }, @@ -3246,10 +2614,6 @@ "uuid": "a6205c53-9e63-475c-85f4-bdd5963e1eb2" }, "dark": { - "value": "rgb(187, 135, 251)", - "uuid": "421e2e18-233d-40d8-81ed-b777d7b4539b" - }, - "darkest": { "value": "rgb(178, 119, 250)", "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" }, @@ -3266,10 +2630,6 @@ "uuid": "b72cb9ff-2b75-487c-914f-1c10bff76f75" }, "dark": { - "value": "rgb(202, 159, 252)", - "uuid": "c767aaa3-0818-4404-a921-94f924159b8f" - }, - "darkest": { "value": "rgb(192, 143, 252)", "uuid": "12d86845-fd54-4d30-aac8-bb9451560ba5" }, @@ -3286,10 +2646,6 @@ "uuid": "163a3d87-cba9-48de-8384-c2820cf03984" }, "dark": { - "value": "rgb(215, 182, 254)", - "uuid": "8c16ea42-3e31-41e3-9492-73f1a554079c" - }, - "darkest": { "value": "rgb(206, 166, 253)", "uuid": "e527a3bd-3543-4b40-8a9c-eb465695bdb9" }, @@ -3306,10 +2662,6 @@ "uuid": "991db22a-d0c2-4f1a-a45b-95aaf13d747d" }, "dark": { - "value": "rgb(228, 204, 254)", - "uuid": "b45da3d4-6b07-451e-8960-ac7bca1e4da2" - }, - "darkest": { "value": "rgb(219, 188, 254)", "uuid": "18265c0a-e466-4575-a364-3dfda9e71bd4" }, @@ -3326,10 +2678,6 @@ "uuid": "b71041e1-ca59-4d0c-87e4-2a8e8821b3ab" }, "dark": { - "value": "rgb(239, 223, 255)", - "uuid": "5bac1ada-9c00-4243-af3a-bc3727745035" - }, - "darkest": { "value": "rgb(230, 207, 255)", "uuid": "ae071768-dcdd-4e30-8f72-d066abac97af" }, @@ -3346,10 +2694,6 @@ "uuid": "7a524851-d57b-40f7-930a-f67739c0e138" }, "dark": { - "value": "rgb(249, 240, 255)", - "uuid": "5e3bbc6d-1489-48ca-b5a1-423288727b1d" - }, - "darkest": { "value": "rgb(240, 224, 255)", "uuid": "fbaaff02-da93-4f45-830a-5fc449a58f0b" }, @@ -3366,10 +2710,6 @@ "uuid": "e1609d80-a6ba-46b6-bd52-83f32fd009ad" }, "dark": { - "value": "rgb(255, 253, 255)", - "uuid": "ae3f64d4-ed66-4d97-b7e5-65ee395f7883" - }, - "darkest": { "value": "rgb(248, 237, 255)", "uuid": "9ae063c9-5817-45b4-9f57-4b2196c845b9" }, @@ -3386,10 +2726,6 @@ "uuid": "2a8743fc-d3b3-444a-b3f1-8ad816945941" }, "dark": { - "value": "rgb(107, 3, 106)", - "uuid": "fcf73bd6-3852-429a-9095-14524c2efea3" - }, - "darkest": { "value": "rgb(70, 14, 68)", "uuid": "3a434405-c4b0-40ef-b383-7cb9a9b60cab" }, @@ -3406,10 +2742,6 @@ "uuid": "a304f27a-7a17-4c12-88d1-07171fa3ca75" }, "dark": { - "value": "rgb(123, 0, 123)", - "uuid": "57ce4570-03d7-45a8-8f6c-85a2994fb067" - }, - "darkest": { "value": "rgb(93, 9, 92)", "uuid": "779ec441-475d-41de-b207-3e139c7c3168" }, @@ -3426,10 +2758,6 @@ "uuid": "723a23a1-0bb0-4c11-89cf-0eca2a421867" }, "dark": { - "value": "rgb(144, 0, 145)", - "uuid": "a297d901-18ab-4da0-a5fa-d9749e8ea9db" - }, - "darkest": { "value": "rgb(120, 0, 120)", "uuid": "5fa7110f-0c33-4139-8277-eff40921939e" }, @@ -3446,10 +2774,6 @@ "uuid": "ce8ce579-0dca-462c-a9d3-49e451931812" }, "dark": { - "value": "rgb(165, 13, 166)", - "uuid": "7eb42bf3-0008-4e2c-a085-0c0b0a56deba" - }, - "darkest": { "value": "rgb(146, 0, 147)", "uuid": "a81bfdd6-4b80-4f1a-922d-2f6e04c27e01" }, @@ -3466,10 +2790,6 @@ "uuid": "779bda09-25fd-4912-9aa8-8e3a5643d0cb" }, "dark": { - "value": "rgb(185, 37, 185)", - "uuid": "5a5a7aac-7494-40d2-93c8-66e828c2397e" - }, - "darkest": { "value": "rgb(169, 19, 170)", "uuid": "7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4" }, @@ -3486,10 +2806,6 @@ "uuid": "bd2db3f8-5eae-4fcb-a1f6-307d3b8e4139" }, "dark": { - "value": "rgb(205, 57, 206)", - "uuid": "90ef0274-fb46-469e-a8d4-030b88dfe969" - }, - "darkest": { "value": "rgb(191, 43, 191)", "uuid": "0fb76488-9965-4cf9-878f-ceed7fc2be43" }, @@ -3506,10 +2822,6 @@ "uuid": "42525649-03ba-44f7-bc8c-9a824b898920" }, "dark": { - "value": "rgb(223, 81, 224)", - "uuid": "3cebbadd-c690-493d-a36e-fc55d99d4b4b" - }, - "darkest": { "value": "rgb(211, 65, 213)", "uuid": "5f971453-aa30-4c1f-8cbc-be45ff042fcd" }, @@ -3526,10 +2838,6 @@ "uuid": "3b2867ea-80f8-44ca-9394-7bb17e8c5a22" }, "dark": { - "value": "rgb(235, 110, 236)", - "uuid": "163fa258-c7a0-433a-bf26-875d55e2ba70" - }, - "darkest": { "value": "rgb(228, 91, 229)", "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" }, @@ -3546,10 +2854,6 @@ "uuid": "5fa3362b-01ee-4861-9a02-6af6da804f61" }, "dark": { - "value": "rgb(244, 140, 242)", - "uuid": "d0d6c85c-233c-4394-b6a3-ac326b70992f" - }, - "darkest": { "value": "rgb(239, 120, 238)", "uuid": "3c6d42c9-4cba-4373-a61c-c8617c509f92" }, @@ -3566,10 +2870,6 @@ "uuid": "fa79840c-fe56-4f21-b9c5-f1e24f89e031" }, "dark": { - "value": "rgb(250, 168, 245)", - "uuid": "31064db2-1b72-47c3-909d-339589204458" - }, - "darkest": { "value": "rgb(246, 149, 243)", "uuid": "a13d5f15-e4cc-4f7c-928f-aaccbf0d590e" }, @@ -3586,10 +2886,6 @@ "uuid": "44aeb8b3-dd63-43a5-adb6-67cca83ca4c5" }, "dark": { - "value": "rgb(254, 194, 248)", - "uuid": "135ce68a-832c-4903-b1e3-39b0c2e4f10b" - }, - "darkest": { "value": "rgb(251, 175, 246)", "uuid": "0a4eb3af-d067-4d9f-af91-66c676e49e26" }, @@ -3606,10 +2902,6 @@ "uuid": "fc66406d-0e4c-4f82-9fa6-aec444f04070" }, "dark": { - "value": "rgb(255, 219, 250)", - "uuid": "6c569c3e-48fe-4bde-8521-7b63d8c4a37d" - }, - "darkest": { "value": "rgb(254, 199, 248)", "uuid": "0d93ff9f-63e8-4caf-9e7b-714e56d968d4" }, @@ -3626,10 +2918,6 @@ "uuid": "00cfb450-b2b1-47ea-aaf2-221827cca75d" }, "dark": { - "value": "rgb(255, 239, 252)", - "uuid": "712ba0be-7bd6-42d1-a1db-ba4aebb7eb28" - }, - "darkest": { "value": "rgb(255, 220, 250)", "uuid": "abd44b32-b837-4e11-95c7-4ba1c34db44b" }, @@ -3646,10 +2934,6 @@ "uuid": "e5fc57ed-6d37-4496-a89c-db93104cb333" }, "dark": { - "value": "rgb(255, 253, 255)", - "uuid": "9b3a54f9-d94b-4a21-9145-5891d0cf1405" - }, - "darkest": { "value": "rgb(255, 235, 252)", "uuid": "7c819391-d74c-4326-ae0d-fe3534eb44e3" }, @@ -3666,10 +2950,6 @@ "uuid": "06219a66-5150-42ab-a9fd-c743058728af" }, "dark": { - "value": "rgb(118, 0, 58)", - "uuid": "c49f033b-6e6f-4945-b199-af3ad874e8ea" - }, - "darkest": { "value": "rgb(83, 3, 41)", "uuid": "9149371a-1978-4136-a89c-8895edd35e7d" }, @@ -3686,10 +2966,6 @@ "uuid": "0a9c01d3-0659-4884-a0e8-7032deeee766" }, "dark": { - "value": "rgb(137, 0, 66)", - "uuid": "28ea9b3a-7802-4f3e-a576-9ca1e217a7e4" - }, - "darkest": { "value": "rgb(106, 0, 52)", "uuid": "f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8" }, @@ -3706,10 +2982,6 @@ "uuid": "bfe2436d-c026-4641-8cd7-a9824f6948dd" }, "dark": { - "value": "rgb(160, 0, 77)", - "uuid": "8a21b266-6888-4f68-9f44-7026634d6bdf" - }, - "darkest": { "value": "rgb(133, 0, 65)", "uuid": "673ab9b4-e296-4472-b0b5-15adf9f1f762" }, @@ -3726,10 +2998,6 @@ "uuid": "4419b5e5-344d-4905-b39d-8935bedf7d6c" }, "dark": { - "value": "rgb(182, 18, 90)", - "uuid": "d0319094-27f1-4634-b436-07f1a0ade2ab" - }, - "darkest": { "value": "rgb(161, 0, 78)", "uuid": "60560de2-28e6-44b4-bcff-f357fe13a4a7" }, @@ -3746,10 +3014,6 @@ "uuid": "d7c3e696-4ec4-497f-89c5-bad17cb4699a" }, "dark": { - "value": "rgb(203, 38, 109)", - "uuid": "60a7cd2d-5c88-4fbe-8180-6840d52678fc" - }, - "darkest": { "value": "rgb(186, 22, 93)", "uuid": "830123a6-0e42-4c4f-9b20-2f4204d37af8" }, @@ -3766,10 +3030,6 @@ "uuid": "329f4efa-6f0b-4bc1-95f7-1121bda7f421" }, "dark": { - "value": "rgb(222, 61, 130)", - "uuid": "f7dd5e8b-4c41-4385-8d96-a984b62051be" - }, - "darkest": { "value": "rgb(209, 43, 114)", "uuid": "e6b14a1d-e26e-41c4-b386-7fb3f95b8c93" }, @@ -3786,10 +3046,6 @@ "uuid": "fcacf0f0-c919-4705-b4c2-6edbe2796fb0" }, "dark": { - "value": "rgb(237, 87, 149)", - "uuid": "3f07950a-4823-4826-9d78-d7b450c9e961" - }, - "darkest": { "value": "rgb(227, 69, 137)", "uuid": "11055a6b-7e81-4b59-9feb-8b0b6352be07" }, @@ -3806,10 +3062,6 @@ "uuid": "21e774f7-89d8-438d-9fc4-aa93261022d1" }, "dark": { - "value": "rgb(249, 114, 167)", - "uuid": "7903bf4c-e957-4e84-b0c0-276c80e9a4d9" - }, - "darkest": { "value": "rgb(241, 97, 156)", "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" }, @@ -3826,10 +3078,6 @@ "uuid": "0166ed9b-52e7-447a-b45d-de29ba85eb0d" }, "dark": { - "value": "rgb(255, 143, 185)", - "uuid": "f316b3d8-5763-4166-94fe-664f477dd76f" - }, - "darkest": { "value": "rgb(252, 124, 173)", "uuid": "fa5e523e-7ee3-46d0-971f-4ee95c7222b8" }, @@ -3846,10 +3094,6 @@ "uuid": "98125f18-a061-4aa7-a0c5-a746d635c4c5" }, "dark": { - "value": "rgb(255, 172, 202)", - "uuid": "6eeb3d6f-9eab-459c-b34c-e25c9ea107a4" - }, - "darkest": { "value": "rgb(255, 152, 191)", "uuid": "bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154" }, @@ -3866,10 +3110,6 @@ "uuid": "29d203d7-7c2c-4f36-a5f3-d84fab6be9f1" }, "dark": { - "value": "rgb(255, 198, 218)", - "uuid": "36c81f83-2299-4569-b133-4300d49fa3c2" - }, - "darkest": { "value": "rgb(255, 179, 207)", "uuid": "548a74eb-4401-44f4-85b4-921287d84ac9" }, @@ -3886,10 +3126,6 @@ "uuid": "2a9f4ecf-5678-4345-973a-da1e066eaf10" }, "dark": { - "value": "rgb(255, 221, 233)", - "uuid": "72e2e0cb-7512-4e3b-8ac6-42a63a746e2b" - }, - "darkest": { "value": "rgb(255, 202, 221)", "uuid": "9c634688-1ad5-438b-bd44-a92c64ef9934" }, @@ -3906,10 +3142,6 @@ "uuid": "0be3f108-028b-4fdd-9a98-8bb24deec2d8" }, "dark": { - "value": "rgb(255, 240, 245)", - "uuid": "b1caf781-77c9-48eb-84a5-507d84b6cdf4" - }, - "darkest": { "value": "rgb(255, 221, 233)", "uuid": "6c441ca7-0294-462f-ac18-7b28ff20d7ff" }, @@ -3926,10 +3158,6 @@ "uuid": "40d9a0f7-0085-4001-a22e-3c22d3887846" }, "dark": { - "value": "rgb(255, 252, 253)", - "uuid": "2dcf8d47-a293-4ed2-bac5-2f935ed7ca5b" - }, - "darkest": { "value": "rgb(255, 236, 243)", "uuid": "15f36ded-01af-4c5d-8b11-45523e7d908e" }, diff --git a/packages/tokens/src/icons.json b/packages/tokens/src/icons.json index ef7be5e8..455e388f 100644 --- a/packages/tokens/src/icons.json +++ b/packages/tokens/src/icons.json @@ -17,10 +17,6 @@ "uuid": "f53f030b-755f-46ca-b411-7d62f4eb901e" }, "dark": { - "value": "{blue-800}", - "uuid": "bcb2d920-29fe-4911-bfd6-058ed81a1c76" - }, - "darkest": { "value": "{blue-800}", "uuid": "1bac9a3f-4bc8-4a4d-8dfd-53c542b1d1d8" }, @@ -38,10 +34,6 @@ "uuid": "a0717159-cc62-4ba1-b1f1-a69dfb88c6ee" }, "dark": { - "value": "{green-800}", - "uuid": "ce9c0ea4-0c5a-4d3b-974f-1b9acf27b3fd" - }, - "darkest": { "value": "{green-800}", "uuid": "260ff567-2bdb-48cc-9576-f4f7629d3a8f" }, @@ -59,10 +51,6 @@ "uuid": "89656cae-d490-4b9f-93eb-75912b29ecf5" }, "dark": { - "value": "{red-700}", - "uuid": "5a1ef31d-a55d-44e2-9ce9-68c407ba8611" - }, - "darkest": { "value": "{red-700}", "uuid": "a60f2744-ad15-4cf7-b9dc-89ca307ed444" }, @@ -80,10 +68,6 @@ "uuid": "59cd6057-b3d8-4bdf-b752-7df17c2c4a95" }, "dark": { - "value": "{yellow-1000}", - "uuid": "646e82ab-3762-47de-87ec-a39b68d59de9" - }, - "darkest": { "value": "{yellow-1000}", "uuid": "5ebf8291-23f8-4806-865d-4ebab38ff03c" }, From a3b83909659e62ae1a5ea49408ab792fcf131106 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 19 Sep 2023 18:31:23 +0000 Subject: [PATCH 008/295] chore: release (beta) --- .changeset/pre.json | 5 +- packages/tokens/CHANGELOG.md | 375 +++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 379 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 29f94eef..7df35da8 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -6,7 +6,8 @@ "stvt": "0.0.0", "@adobe/spectrum-tokens": "12.19.1", "system-set-merge": "0.0.1", - "token-manifest-builder": "0.0.1" + "token-manifest-builder": "0.0.1", + "transform-tokens-json": "0.0.1" }, - "changesets": ["happy-students-vanish"] + "changesets": ["happy-students-vanish", "lemon-dragons-raise"] } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index ab3e91b0..5ba1e426 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,380 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.1 + +### Major Changes + +- f1cb901: Merged dark and darkest color sets. This was done by removing `dark` and renaming `darkest` to `dark`. + + ## Design Motivation + + The S2 microsite documentation discusses the move to a [single dark theme](https://s2.spectrum.corp.adobe.com/page/grays/#a-single-dark-theme). + + ## Token Diff + +
Token values updated (358): + + - `accent-background-color-default` + - `accent-background-color-down` + - `accent-background-color-hover` + - `accent-background-color-key-focus` + - `accent-visual-color` + - `background-base-color` + - `background-layer-1-color` + - `background-layer-2-color` + - `blue-100` + - `blue-1000` + - `blue-1100` + - `blue-1200` + - `blue-1300` + - `blue-1400` + - `blue-200` + - `blue-300` + - `blue-400` + - `blue-500` + - `blue-600` + - `blue-700` + - `blue-800` + - `blue-900` + - `blue-background-color-default` + - `blue-visual-color` + - `body-color` + - `card-selection-background-color` + - `celery-100` + - `celery-1000` + - `celery-1100` + - `celery-1200` + - `celery-1300` + - `celery-1400` + - `celery-200` + - `celery-300` + - `celery-400` + - `celery-500` + - `celery-600` + - `celery-700` + - `celery-800` + - `celery-900` + - `celery-background-color-default` + - `celery-visual-color` + - `chartreuse-100` + - `chartreuse-1000` + - `chartreuse-1100` + - `chartreuse-1200` + - `chartreuse-1300` + - `chartreuse-1400` + - `chartreuse-200` + - `chartreuse-300` + - `chartreuse-400` + - `chartreuse-500` + - `chartreuse-600` + - `chartreuse-700` + - `chartreuse-800` + - `chartreuse-900` + - `chartreuse-background-color-default` + - `chartreuse-visual-color` + - `coach-mark-pagination-color` + - `code-color` + - `color-area-border-color` + - `color-slider-border-color` + - `cyan-100` + - `cyan-1000` + - `cyan-1100` + - `cyan-1200` + - `cyan-1300` + - `cyan-1400` + - `cyan-200` + - `cyan-300` + - `cyan-400` + - `cyan-500` + - `cyan-600` + - `cyan-700` + - `cyan-800` + - `cyan-900` + - `cyan-background-color-default` + - `cyan-visual-color` + - `detail-color` + - `disabled-background-color` + - `disabled-border-color` + - `disabled-content-color` + - `drop-shadow-color` + - `drop-zone-background-color` + - `focus-indicator-color` + - `fuchsia-100` + - `fuchsia-1000` + - `fuchsia-1100` + - `fuchsia-1200` + - `fuchsia-1300` + - `fuchsia-1400` + - `fuchsia-200` + - `fuchsia-300` + - `fuchsia-400` + - `fuchsia-500` + - `fuchsia-600` + - `fuchsia-700` + - `fuchsia-800` + - `fuchsia-900` + - `fuchsia-background-color-default` + - `fuchsia-visual-color` + - `gray-100` + - `gray-200` + - `gray-300` + - `gray-400` + - `gray-50` + - `gray-500` + - `gray-600` + - `gray-700` + - `gray-75` + - `gray-800` + - `gray-900` + - `gray-background-color-default` + - `gray-visual-color` + - `green-100` + - `green-1000` + - `green-1100` + - `green-1200` + - `green-1300` + - `green-1400` + - `green-200` + - `green-300` + - `green-400` + - `green-500` + - `green-600` + - `green-700` + - `green-800` + - `green-900` + - `green-background-color-default` + - `green-visual-color` + - `heading-color` + - `icon-color-blue-primary-default` + - `icon-color-green-primary-default` + - `icon-color-inverse` + - `icon-color-primary-default` + - `icon-color-red-primary-default` + - `icon-color-yellow-primary-default` + - `indigo-100` + - `indigo-1000` + - `indigo-1100` + - `indigo-1200` + - `indigo-1300` + - `indigo-1400` + - `indigo-200` + - `indigo-300` + - `indigo-400` + - `indigo-500` + - `indigo-600` + - `indigo-700` + - `indigo-800` + - `indigo-900` + - `indigo-background-color-default` + - `indigo-visual-color` + - `informative-background-color-default` + - `informative-background-color-down` + - `informative-background-color-hover` + - `informative-background-color-key-focus` + - `informative-color-100` + - `informative-color-1000` + - `informative-color-1100` + - `informative-color-1200` + - `informative-color-1300` + - `informative-color-1400` + - `informative-color-200` + - `informative-color-300` + - `informative-color-400` + - `informative-color-500` + - `informative-color-600` + - `informative-color-700` + - `informative-color-800` + - `informative-color-900` + - `informative-visual-color` + - `magenta-100` + - `magenta-1000` + - `magenta-1100` + - `magenta-1200` + - `magenta-1300` + - `magenta-1400` + - `magenta-200` + - `magenta-300` + - `magenta-400` + - `magenta-500` + - `magenta-600` + - `magenta-700` + - `magenta-800` + - `magenta-900` + - `magenta-background-color-default` + - `magenta-visual-color` + - `negative-background-color-default` + - `negative-background-color-down` + - `negative-background-color-hover` + - `negative-background-color-key-focus` + - `negative-border-color-default` + - `negative-border-color-down` + - `negative-border-color-focus` + - `negative-border-color-focus-hover` + - `negative-border-color-hover` + - `negative-border-color-key-focus` + - `negative-color-100` + - `negative-color-1000` + - `negative-color-1100` + - `negative-color-1200` + - `negative-color-1300` + - `negative-color-1400` + - `negative-color-200` + - `negative-color-300` + - `negative-color-400` + - `negative-color-500` + - `negative-color-600` + - `negative-color-700` + - `negative-color-800` + - `negative-color-900` + - `negative-content-color-default` + - `negative-content-color-down` + - `negative-content-color-hover` + - `negative-content-color-key-focus` + - `negative-visual-color` + - `neutral-background-color-default` + - `neutral-background-color-down` + - `neutral-background-color-hover` + - `neutral-background-color-key-focus` + - `neutral-content-color-default` + - `neutral-content-color-down` + - `neutral-content-color-focus` + - `neutral-content-color-focus-hover` + - `neutral-content-color-hover` + - `neutral-content-color-key-focus` + - `neutral-subdued-background-color-default` + - `neutral-subdued-background-color-down` + - `neutral-subdued-background-color-hover` + - `neutral-subdued-background-color-key-focus` + - `neutral-subdued-content-color-default` + - `neutral-subdued-content-color-down` + - `neutral-subdued-content-color-hover` + - `neutral-subdued-content-color-key-focus` + - `neutral-subdued-content-color-selected` + - `neutral-visual-color` + - `notice-background-color-default` + - `notice-color-100` + - `notice-color-1000` + - `notice-color-1100` + - `notice-color-1200` + - `notice-color-1300` + - `notice-color-1400` + - `notice-color-200` + - `notice-color-300` + - `notice-color-400` + - `notice-color-500` + - `notice-color-600` + - `notice-color-700` + - `notice-color-800` + - `notice-color-900` + - `notice-visual-color` + - `opacity-checkerboard-square-dark` + - `orange-100` + - `orange-1000` + - `orange-1100` + - `orange-1200` + - `orange-1300` + - `orange-1400` + - `orange-200` + - `orange-300` + - `orange-400` + - `orange-500` + - `orange-600` + - `orange-700` + - `orange-800` + - `orange-900` + - `orange-background-color-default` + - `orange-visual-color` + - `overlay-opacity` + - `positive-background-color-default` + - `positive-background-color-down` + - `positive-background-color-hover` + - `positive-background-color-key-focus` + - `positive-color-100` + - `positive-color-1000` + - `positive-color-1100` + - `positive-color-1200` + - `positive-color-1300` + - `positive-color-1400` + - `positive-color-200` + - `positive-color-300` + - `positive-color-400` + - `positive-color-500` + - `positive-color-600` + - `positive-color-700` + - `positive-color-800` + - `positive-color-900` + - `positive-visual-color` + - `purple-100` + - `purple-1000` + - `purple-1100` + - `purple-1200` + - `purple-1300` + - `purple-1400` + - `purple-200` + - `purple-300` + - `purple-400` + - `purple-500` + - `purple-600` + - `purple-700` + - `purple-800` + - `purple-900` + - `purple-background-color-default` + - `purple-visual-color` + - `red-100` + - `red-1000` + - `red-1100` + - `red-1200` + - `red-1300` + - `red-1400` + - `red-200` + - `red-300` + - `red-400` + - `red-500` + - `red-600` + - `red-700` + - `red-800` + - `red-900` + - `red-background-color-default` + - `red-visual-color` + - `seafoam-100` + - `seafoam-1000` + - `seafoam-1100` + - `seafoam-1200` + - `seafoam-1300` + - `seafoam-1400` + - `seafoam-200` + - `seafoam-300` + - `seafoam-400` + - `seafoam-500` + - `seafoam-600` + - `seafoam-700` + - `seafoam-800` + - `seafoam-900` + - `seafoam-background-color-default` + - `seafoam-visual-color` + - `swatch-border-color` + - `table-row-hover-color` + - `table-selected-row-background-color` + - `thumbnail-border-color` + - `yellow-100` + - `yellow-1000` + - `yellow-1100` + - `yellow-1200` + - `yellow-1300` + - `yellow-1400` + - `yellow-200` + - `yellow-300` + - `yellow-400` + - `yellow-500` + - `yellow-600` + - `yellow-700` + - `yellow-800` + - `yellow-900` + - `yellow-background-color-default` + - `yellow-visual-color` + +
+ ## 13.0.0-beta.0 ### Major Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index a9bfa5b0..93dfe625 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.0", + "version": "13.0.0-beta.1", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From a17ffb8d079018ce2be5481cb5366586f6322f1b Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 25 Sep 2023 14:38:52 -0600 Subject: [PATCH 009/295] chore: update deps --- package.json | 2 +- pnpm-lock.yaml | 50 +++++++++++++++++++++++++------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/package.json b/package.json index 02ff55a9..1a03f671 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "@changesets/cli": "^2.26.2", "@commitlint/cli": "^17.6.6", "@commitlint/config-conventional": "^17.6.6", - "@moonrepo/cli": "^1.13.5", + "@moonrepo/cli": "^1.14.0", "ava": "^5.3.1", "husky": "^8.0.3", "lint-staged": "^13.2.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cc8e36bc..864bf5fa 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,8 +17,8 @@ importers: specifier: ^17.6.6 version: 17.6.6 "@moonrepo/cli": - specifier: ^1.13.5 - version: 1.13.5 + specifier: ^1.14.0 + version: 1.14.0 ava: specifier: ^5.3.1 version: 5.3.1 @@ -1051,29 +1051,29 @@ packages: read-yaml-file: 1.1.0 dev: true - /@moonrepo/cli@1.13.5: + /@moonrepo/cli@1.14.0: resolution: { - integrity: sha512-HI5JDm5Trf5dhBhyk64UQVbPtOEh3eQdNkJLBMZMey7tfoLuIQcEorGbEhTSxEAQrQnO7xZyJ6jC6XV1cfG1zw==, + integrity: sha512-T5rrgBEqCkKm42Dk0VzoXie/YEC6U+cVCF3CeCDi4nsdfyygvn9pj5mpNpNYmFJVcdS7TkBDVCMBd/DrRPh+OA==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.13.5 - "@moonrepo/core-linux-arm64-musl": 1.13.5 - "@moonrepo/core-linux-x64-gnu": 1.13.5 - "@moonrepo/core-linux-x64-musl": 1.13.5 - "@moonrepo/core-macos-arm64": 1.13.5 - "@moonrepo/core-macos-x64": 1.13.5 - "@moonrepo/core-windows-x64-msvc": 1.13.5 + "@moonrepo/core-linux-arm64-gnu": 1.14.0 + "@moonrepo/core-linux-arm64-musl": 1.14.0 + "@moonrepo/core-linux-x64-gnu": 1.14.0 + "@moonrepo/core-linux-x64-musl": 1.14.0 + "@moonrepo/core-macos-arm64": 1.14.0 + "@moonrepo/core-macos-x64": 1.14.0 + "@moonrepo/core-windows-x64-msvc": 1.14.0 dev: true - /@moonrepo/core-linux-arm64-gnu@1.13.5: + /@moonrepo/core-linux-arm64-gnu@1.14.0: resolution: { - integrity: sha512-KS9Lb/sNG1ZLMSwZs9z1s3vG2zsVmQc/6yE98mTtewR3/2jX6wRpH/BZyp5YT1cd+G5VMHE3JfDFDmq0GEC6Pg==, + integrity: sha512-XGcTmlbQLlA1jKNL38lvVabf7r0X8urhh8mpiw4h/VHnZVslLfutTczK1/n437VphAN2CokLSBLKVrWKF5fmIw==, } cpu: [arm64] os: [linux] @@ -1081,10 +1081,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.13.5: + /@moonrepo/core-linux-arm64-musl@1.14.0: resolution: { - integrity: sha512-6zsa6seKP9nd1Rb9fm1I3/ozw1IECrnSzwqXogKr358G8mbICEceVTJ3k7yT5DTVTJphjHKpq6xlmRgf+5YZeA==, + integrity: sha512-gb6351EmIcLiCi8cAS8d6gy6TU6MvO0PDvXzbo8pJnBZeNYN81C7hvc2hJdEPZi3AHGO3/Cvex4epF6Wk2YIuA==, } cpu: [arm64] os: [linux] @@ -1092,10 +1092,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.13.5: + /@moonrepo/core-linux-x64-gnu@1.14.0: resolution: { - integrity: sha512-5Ky68ecL1G0xJp9mJn3shSvKFZOC2P3GTY3SlC68OQwgySDvg5/lPgPYGXzmQhwzsXm12H2LkCXepvxSu6+6pg==, + integrity: sha512-stc3aP75LbLtTN5oGXIie1BvXg3GQ20bq4BzyWMr+2rePk61CZrSbyPuournhob7f/qsuDDfTHk/6NO/NGYicA==, } cpu: [x64] os: [linux] @@ -1103,10 +1103,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.13.5: + /@moonrepo/core-linux-x64-musl@1.14.0: resolution: { - integrity: sha512-xE2aluYBzVDt8WHM37E0rpKXf4JQ+bHGw1o8M0mQCEQSDvcmF4gbz76tHY+yjnogGY0q/Fg0rZnMrTpFu3V/ag==, + integrity: sha512-kw/nPUHiPbG5WtOggIKzSJzgz1LwPCYZFjYT6EFaL/PAR8rKUFpNfjQB2BfCcGAA6au6M684ZQT+Y8scD4XAmA==, } cpu: [x64] os: [linux] @@ -1114,10 +1114,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.13.5: + /@moonrepo/core-macos-arm64@1.14.0: resolution: { - integrity: sha512-t0HwLz14cybPy0ciDaaMEn0UZZMTkFIwNLQMdtGt02YzFk0ibptbyvzsCDbNXMu/qVwSY8OF9nyeVpKGavhyvA==, + integrity: sha512-InIYvh2vXxenAH7TRPPQRB/lHasucAqNMHOsTVjNafRJC/xdFkAYUOfYz4S2P2uylU2FLnfzUueDU8jr2QHedA==, } cpu: [arm64] os: [darwin] @@ -1125,10 +1125,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.13.5: + /@moonrepo/core-macos-x64@1.14.0: resolution: { - integrity: sha512-SY/oARt/TezBzU6MnmocOdFL56phUgbHTlGQRaM0s4R3Q3iHcNtOQWtn0en1mwQ+KPPC2RLT+Izh2ggMZckfnw==, + integrity: sha512-/lXqHH1u+P74xD2GuogvDJGM5ntx0hnT6+2GSIUmS4eMZSvn/bGOM1zomZZ28+7++4iFQ4kKehSAhpgauqmD1w==, } cpu: [x64] os: [darwin] @@ -1136,10 +1136,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.13.5: + /@moonrepo/core-windows-x64-msvc@1.14.0: resolution: { - integrity: sha512-qC8NVqtfSZ07kgqnmVBIK1CspN2voYDpZ+hHlpaO6kOpYd1On9fn7HQKt7Sp1FRPGsQ+sPOMxGv6SJmzn2qMMA==, + integrity: sha512-prRQz7C/IwIsGXFbBGkFFKM/cnJRK4xfn507FXbK3/YnuTjNAqHev9HxQ9b8Tg1HBlu2FTfGN5g7oZgqIQjgVg==, } cpu: [x64] os: [win32] From 0d82a6be27dd3c2c0c4b0219345a093a46a7a8a0 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 25 Sep 2023 14:40:15 -0600 Subject: [PATCH 010/295] chore: updated diff task to accept tag parameter --- packages/tokens/tasks/diff.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/tokens/tasks/diff.js b/packages/tokens/tasks/diff.js index 6cd2f1bd..4c96e66e 100644 --- a/packages/tokens/tasks/diff.js +++ b/packages/tokens/tasks/diff.js @@ -21,7 +21,7 @@ import tmp from "tmp-promise"; const execP = promisify(exec); -const tag = "latest"; +const tag = process.argv[2] || "latest"; const tokenPath = "dist/json/variables.json"; const localRootDir = join(dirname(fileURLToPath(import.meta.url)), ".."); const localTokenPath = join(localRootDir, tokenPath); @@ -71,6 +71,7 @@ async function getOldTokens() { }); const oldTokenPath = join(tmpDir.path, "package", tokenPath); await access(oldTokenPath); + console.log(`Comparing against ${stdout.trim()}`); return JSON.parse(await readFile(oldTokenPath, { encoding: "utf8" })); } From 14965a6cc2737ff9ef9df8fe23a7e50c03be4ce0 Mon Sep 17 00:00:00 2001 From: Cable Hicks Date: Thu, 21 Sep 2023 12:51:50 -0700 Subject: [PATCH 011/295] feat: updated s2 token data source: da0f3108cc71313f9ab18183dde0d5365040bccf --- packages/tokens/src/color-aliases.json | 68 +- packages/tokens/src/color-palette.json | 1176 +++++++++++------ .../tokens/src/semantic-color-palette.json | 40 + 3 files changed, 846 insertions(+), 438 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 887abe83..181b6f1f 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -54,11 +54,11 @@ "background-base-color": { "sets": { "light": { - "value": "{gray-200}", + "value": "{gray-100}", "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" }, "dark": { - "value": "{gray-50}", + "value": "{gray-25}", "uuid": "cf1299aa-86c7-4523-b6ae-6de597ac3712" }, "wireframe": { @@ -70,11 +70,11 @@ "background-layer-1-color": { "sets": { "light": { - "value": "{gray-100}", + "value": "{gray-50}", "uuid": "7e6678b7-2903-434b-8ee2-06c83815b01d" }, "dark": { - "value": "{gray-75}", + "value": "{gray-50}", "uuid": "da228344-5b83-4e08-96d2-089068138ba0" }, "wireframe": { @@ -86,11 +86,11 @@ "background-layer-2-color": { "sets": { "light": { - "value": "{gray-50}", + "value": "{gray-25}", "uuid": "b7b2bf98-b96a-40ca-b51e-5876d3418085" }, "dark": { - "value": "{gray-100}", + "value": "{gray-75}", "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" }, "wireframe": { @@ -106,7 +106,7 @@ "uuid": "5d54b2d5-b0c6-4438-b141-80ca91a0b8a4" }, "dark": { - "value": "{gray-400}", + "value": "{gray-800}", "uuid": "a1c5a204-e937-4ce1-a5be-580f6b0df7a5" }, "wireframe": { @@ -122,7 +122,7 @@ "uuid": "e0379e06-e2d3-4d6f-ba81-6cdf4012a022" }, "dark": { - "value": "{gray-300}", + "value": "{gray-900}", "uuid": "0ce569ea-d735-42a3-96c2-60201fcb616f" }, "wireframe": { @@ -138,7 +138,7 @@ "uuid": "5577ffde-5708-4ea7-a50d-d938f07eba7f" }, "dark": { - "value": "{gray-200}", + "value": "{gray-900}", "uuid": "4901987b-b70c-42ef-92fd-b8c5b6894bfc" }, "wireframe": { @@ -154,7 +154,7 @@ "uuid": "b8ba6d4d-737e-4c18-a901-bb35fdc173c3" }, "dark": { - "value": "{gray-300}", + "value": "{gray-900}", "uuid": "f90c1f60-5d23-41ed-ab42-30eeb9d079ba" }, "wireframe": { @@ -164,11 +164,11 @@ } }, "neutral-background-color-selected-default": { - "value": "{gray-700}", + "value": "{gray-800}", "uuid": "fd1c9f2b-8358-4bd3-a5cc-d211673428bc" }, "neutral-background-color-selected-hover": { - "value": "{gray-800}", + "value": "{gray-900}", "uuid": "1c220122-5f32-42f9-848f-ae10061241e5" }, "neutral-background-color-selected-down": { @@ -176,13 +176,13 @@ "uuid": "966c56d0-4461-45e7-9e20-0277f2111a34" }, "neutral-background-color-selected-key-focus": { - "value": "{gray-800}", + "value": "{gray-900}", "uuid": "9b8df7df-3439-4614-b446-97a4de782e27" }, "neutral-subdued-background-color-default": { "sets": { "light": { - "value": "{gray-600}", + "value": "{gray-700}", "uuid": "3b09b2fd-cbf9-4933-9655-27a75d984f06" }, "dark": { @@ -198,7 +198,7 @@ "neutral-subdued-background-color-hover": { "sets": { "light": { - "value": "{gray-700}", + "value": "{gray-800}", "uuid": "a1ab50d5-1aa1-4198-9510-7ea8458cc62f" }, "dark": { @@ -218,7 +218,7 @@ "uuid": "300d2800-a6e5-4b78-9b6c-aaf2f4af39c6" }, "dark": { - "value": "{gray-200}", + "value": "{gray-300}", "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" }, "wireframe": { @@ -230,7 +230,7 @@ "neutral-subdued-background-color-key-focus": { "sets": { "light": { - "value": "{gray-700}", + "value": "{gray-800}", "uuid": "eece165c-743c-4d7a-b770-3ee50e1951cf" }, "dark": { @@ -282,11 +282,11 @@ "accent-background-color-down": { "sets": { "light": { - "value": "{accent-color-1100}", + "value": "{accent-color-1000}", "uuid": "026b1d5e-7cbc-4ee9-91e8-19766b9ac541" }, "dark": { - "value": "{accent-color-400}", + "value": "{accent-color-500}", "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" }, "wireframe": { @@ -350,11 +350,11 @@ "informative-background-color-down": { "sets": { "light": { - "value": "{informative-color-1100}", + "value": "{informative-color-1000}", "uuid": "91f91b8c-0e65-4b7b-8c7b-60d3b6e235d8" }, "dark": { - "value": "{informative-color-400}", + "value": "{informative-color-500}", "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" }, "wireframe": { @@ -414,11 +414,11 @@ "negative-background-color-down": { "sets": { "light": { - "value": "{negative-color-1100}", + "value": "{negative-color-1000}", "uuid": "3c2d5afe-fff4-487d-a312-000f738c8704" }, "dark": { - "value": "{negative-color-400}", + "value": "{negative-color-500}", "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" }, "wireframe": { @@ -478,11 +478,11 @@ "positive-background-color-down": { "sets": { "light": { - "value": "{positive-color-1100}", + "value": "{positive-color-1000}", "uuid": "4096a319-241e-410c-ad51-521d57155004" }, "dark": { - "value": "{positive-color-400}", + "value": "{positive-color-500}", "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" }, "wireframe": { @@ -510,7 +510,7 @@ "notice-background-color-default": { "sets": { "light": { - "value": "{notice-color-600}", + "value": "{notice-color-800}", "uuid": "87666730-0d8e-434d-9bfb-0a45e729c482" }, "dark": { @@ -524,15 +524,15 @@ } }, "disabled-background-color": { - "value": "{gray-200}", + "value": "{gray-100}", "uuid": "a46de9d2-5c68-4a1e-97cd-7cbaf4038303" }, "disabled-static-white-background-color": { - "value": "{transparent-white-200}", + "value": "{transparent-white-100}", "uuid": "fbd40c55-bb12-43ff-9fa6-c93884befc89" }, "disabled-static-black-background-color": { - "value": "{transparent-black-200}", + "value": "{transparent-black-100}", "uuid": "579e401c-de49-41af-a8c7-a0a070c31979" }, "gray-background-color-default": { @@ -808,7 +808,7 @@ "uuid": "a6d8a177-3e5c-4d28-a675-c21c2695d2f6" }, "neutral-subdued-content-color-down": { - "value": "{gray-900}", + "value": "{gray-800}", "uuid": "8ab4accc-bd95-48e0-ae3a-539740a07cc6" }, "neutral-subdued-content-color-key-focus": { @@ -824,7 +824,7 @@ "uuid": "d6cd141c-d7a4-457f-bed5-9a725ca7a0fe" }, "accent-content-color-down": { - "value": "{accent-color-1100}", + "value": "{accent-color-1000}", "uuid": "25d3b2d2-e7d5-4686-95ff-bfaaddc14ff1" }, "accent-content-color-key-focus": { @@ -840,7 +840,7 @@ "uuid": "ff90152d-86bf-4a34-9a7e-ede61966bda0" }, "negative-content-color-down": { - "value": "{negative-color-1100}", + "value": "{negative-color-1000}", "uuid": "f760cc99-ebec-4d34-931e-5621aef995a0" }, "negative-content-color-key-focus": { @@ -852,11 +852,11 @@ "uuid": "8bf69fd3-1462-49b9-a78a-cc2f03380823" }, "disabled-static-white-content-color": { - "value": "{transparent-white-500}", + "value": "{transparent-white-400}", "uuid": "fe319bca-0413-4ad8-a783-c64563e05816" }, "disabled-static-black-content-color": { - "value": "{transparent-black-500}", + "value": "{transparent-black-400}", "uuid": "e75dbb08-80eb-4de5-afd4-55a532c69c97" }, "neutral-visual-color": { diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 7efd99b5..5189a5bf 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -3,90 +3,134 @@ "value": "rgb(255, 255, 255)", "uuid": "9b799da8-2130-417e-b7ee-5e1154a89837" }, - "transparent-white-100": { + "transparent-white-25": { "value": "rgba(255, 255, 255, 0)", + "uuid": "98a7279b-e21c-41ae-9bae-8b9b2b243e35" + }, + "transparent-white-50": { + "value": "rgba(255, 255, 255, 0.04)", + "uuid": "db1dbf26-fa48-42e1-b724-7953b0a6a543" + }, + "transparent-white-75": { + "value": "rgba(255, 255, 255, 0.07)", + "uuid": "28d11d38-570d-4d99-b581-855781b972c5" + }, + "transparent-white-100": { + "value": "rgba(255, 255, 255, 0.11)", "uuid": "a1b64a62-7c78-415e-a9be-c86acbf361ca" }, "transparent-white-200": { - "value": "rgba(255, 255, 255, 0.1)", + "value": "rgba(255, 255, 255, 0.14)", "uuid": "936db837-bc5a-40b0-a0e8-8e39b9fc62cb" }, "transparent-white-300": { - "value": "rgba(255, 255, 255, 0.25)", + "value": "rgba(255, 255, 255, 0.17)", "uuid": "5ffa0283-ce9c-4f96-9227-f559ec54ee0c" }, "transparent-white-400": { - "value": "rgba(255, 255, 255, 0.4)", + "value": "rgba(255, 255, 255, 0.21)", "uuid": "12e610d4-e3dc-4e86-9c09-09d86915b6f1" }, "transparent-white-500": { - "value": "rgba(255, 255, 255, 0.55)", + "value": "rgba(255, 255, 255, 0.39)", "uuid": "89c1380f-3e8e-4895-b025-027cee7ecd5b" }, "transparent-white-600": { - "value": "rgba(255, 255, 255, 0.7)", + "value": "rgba(255, 255, 255, 0.51)", "uuid": "b24431ee-5c72-4a73-8733-746c6f5d77c0" }, "transparent-white-700": { - "value": "rgba(255, 255, 255, 0.8)", + "value": "rgba(255, 255, 255, 0.66)", "uuid": "3ecc14ec-a21e-47ba-8225-915509a532af" }, "transparent-white-800": { - "value": "rgba(255, 255, 255, 0.9)", + "value": "rgba(255, 255, 255, 0.85)", "uuid": "b85836bf-af47-412a-900a-4ec5ad0733b2" }, "transparent-white-900": { - "value": "rgb(255, 255, 255)", + "value": "rgb(255, 255, 255, 0.94)", "uuid": "c5c823c6-1911-4e0e-ba2f-5105f467e108" }, + "transparent-white-1000": { + "value": "rgb(255, 255, 255)", + "uuid": "1409a50a-9a9d-463d-957f-fa2e4f98a0cd" + }, "black": { "value": "rgb(0, 0, 0)", "uuid": "28dea8b0-4e9a-46f9-babb-c8910e6ae783" }, - "transparent-black-100": { + "transparent-black-25": { "value": "rgba(0, 0, 0, 0)", + "uuid": "d0867b86-6245-4c02-8617-ea7fd5c80288" + }, + "transparent-black-50": { + "value": "rgba(0, 0, 0, 0.03)", + "uuid": "d6aa176c-30bd-423f-b05f-4360672bd87e" + }, + "transparent-black-75": { + "value": "rgba(0, 0, 0, 0.05)", + "uuid": "d33a66ea-ca60-416f-9e92-967dbbb1e983" + }, + "transparent-black-100": { + "value": "rgba(0, 0, 0, 0.09)", "uuid": "7565eb32-d745-4fc3-8779-a717f8ba910a" }, "transparent-black-200": { - "value": "rgba(0, 0, 0, 0.1)", + "value": "rgba(0, 0, 0, 0.12)", "uuid": "a84ecad8-8005-4ce4-add6-7f83f7e05ba0" }, "transparent-black-300": { - "value": "rgba(0, 0, 0, 0.25)", + "value": "rgba(0, 0, 0, 0.15)", "uuid": "16a871e1-d9df-42bb-8889-99059d70e82e" }, "transparent-black-400": { - "value": "rgba(0, 0, 0, 0.4)", + "value": "rgba(0, 0, 0, 0.22)", "uuid": "b769453b-586c-4dd2-b3a1-ddf5964160bc" }, "transparent-black-500": { - "value": "rgba(0, 0, 0, 0.55)", + "value": "rgba(0, 0, 0, 0.44)", "uuid": "cebedd9f-9e4b-47cf-addb-45d8ff9c9179" }, "transparent-black-600": { - "value": "rgba(0, 0, 0, 0.7)", + "value": "rgba(0, 0, 0, 0.56)", "uuid": "199e19a5-bf7d-4933-8425-d7d5881e4cf5" }, "transparent-black-700": { - "value": "rgba(0, 0, 0, 0.8)", + "value": "rgba(0, 0, 0, 0.69)", "uuid": "56da822f-98ea-4ad1-b993-3f052de45f36" }, "transparent-black-800": { - "value": "rgba(0, 0, 0, 0.9)", + "value": "rgba(0, 0, 0, 0.84)", "uuid": "3e89f180-b0f0-4de0-904b-c80f0210a361" }, "transparent-black-900": { - "value": "rgb(0, 0, 0)", + "value": "rgb(0, 0, 0, 0.93)", "uuid": "c0a331f9-53e3-4c72-b5e3-139d730a1752" }, - "gray-50": { + "transparent-black-1000": { + "value": "rgb(0, 0, 0)", + "uuid": "098f2f56-e52f-47b1-943a-d1d7218de484" + }, + "gray-25": { "sets": { + "dark": { + "value": "rgb(17, 17, 17)", + "uuid": "ac61b090-d356-4f7f-ac6d-b4f20617c9e3" + }, "light": { "value": "rgb(255, 255, 255)", + "uuid": "a8c6363c-5297-41e3-ad76-1b6d0d3a3cc9" + } + } + }, + "gray-50": { + "sets": { + "light": { + "value": "rgb(248, 248, 248)", "uuid": "f6e408a6-81ae-4658-8375-a532f324eba0" }, "dark": { - "value": "rgb(0, 0, 0)", + "value": "rgb(27, 27, 27)", "uuid": "0913be1e-b648-4b80-9976-fd8e5e53f4fc" }, "wireframe": { @@ -98,11 +142,11 @@ "gray-75": { "sets": { "light": { - "value": "rgb(253, 253, 253)", + "value": "rgb(243, 243, 243)", "uuid": "01cd6c7e-f2eb-4b5d-9e2a-30940e1ab37b" }, "dark": { - "value": "rgb(14, 14, 14)", + "value": "rgb(34, 34, 34)", "uuid": "1666d544-ad1b-445a-9a57-d2277fb752eb" }, "wireframe": { @@ -114,11 +158,11 @@ "gray-100": { "sets": { "light": { - "value": "rgb(248, 248, 248)", + "value": "rgb(233, 233, 233)", "uuid": "64e2dbc2-05fa-43d7-80ae-d4d11c55348f" }, "dark": { - "value": "rgb(29, 29, 29)", + "value": "rgb(44, 44, 44)", "uuid": "abd011c4-87a5-4b1f-82e2-e94d118f417f" }, "wireframe": { @@ -130,11 +174,11 @@ "gray-200": { "sets": { "light": { - "value": "rgb(230, 230, 230)", + "value": "rgb(225, 225, 225)", "uuid": "8de4888d-8da5-45a0-8d5d-64a734993ae4" }, "dark": { - "value": "rgb(48, 48, 48)", + "value": "rgb(50, 50, 50)", "uuid": "0a676e7a-8a89-4607-a918-3abcfb0234a2" }, "wireframe": { @@ -146,11 +190,11 @@ "gray-300": { "sets": { "light": { - "value": "rgb(213, 213, 213)", + "value": "rgb(218, 218, 218)", "uuid": "aad52960-a7ec-4f69-85f9-3e1a87975120" }, "dark": { - "value": "rgb(75, 75, 75)", + "value": "rgb(57, 57, 57)", "uuid": "cc8c4299-c40d-4e93-80b2-c052ee8aaf40" }, "wireframe": { @@ -162,11 +206,11 @@ "gray-400": { "sets": { "light": { - "value": "rgb(177, 177, 177)", + "value": "rgb(198, 198, 198)", "uuid": "9a4b4fc4-25e4-4ca8-b0d1-949c5851b47e" }, "dark": { - "value": "rgb(106, 106, 106)", + "value": "rgb(68, 68, 68)", "uuid": "c34dd99f-e576-4c98-a89d-86dd47514c55" }, "wireframe": { @@ -178,11 +222,11 @@ "gray-500": { "sets": { "light": { - "value": "rgb(144, 144, 144)", + "value": "rgb(143, 143, 143)", "uuid": "7fa86c73-f058-4922-be8d-19902515cf44" }, "dark": { - "value": "rgb(141, 141, 141)", + "value": "rgb(109, 109, 109)", "uuid": "05808575-f14b-49d1-aefb-e3667ec0f5a4" }, "wireframe": { @@ -194,11 +238,11 @@ "gray-600": { "sets": { "light": { - "value": "rgb(109, 109, 109)", + "value": "rgb(113, 113, 113)", "uuid": "e6a41088-a188-483c-b197-63ed3c70463d" }, "dark": { - "value": "rgb(176, 176, 176)", + "value": "rgb(138, 138, 138)", "uuid": "8880b8f1-7850-49ef-a7ab-fd4e16cb37a6" }, "wireframe": { @@ -210,11 +254,11 @@ "gray-700": { "sets": { "light": { - "value": "rgb(70, 70, 70)", + "value": "rgb(80, 80, 80)", "uuid": "97111e8e-5823-47f2-af64-c3244b8d3492" }, "dark": { - "value": "rgb(208, 208, 208)", + "value": "rgb(175, 175, 175)", "uuid": "3cc563c6-386e-4b08-850d-68d4a292e559" }, "wireframe": { @@ -226,11 +270,11 @@ "gray-800": { "sets": { "light": { - "value": "rgb(34, 34, 34)", + "value": "rgb(41, 41, 41)", "uuid": "2caf1f36-80b9-4659-90be-8d89672bb19f" }, "dark": { - "value": "rgb(235, 235, 235)", + "value": "rgb(219, 219, 219)", "uuid": "d39fc368-ec71-40cd-85e9-afb07862f2b7" }, "wireframe": { @@ -242,11 +286,11 @@ "gray-900": { "sets": { "light": { - "value": "rgb(0, 0, 0)", + "value": "rgb(19, 19, 19)", "uuid": "59093f0d-98b7-4659-bea6-3248ad20e96c" }, "dark": { - "value": "rgb(255, 255, 255)", + "value": "rgb(242, 242, 242)", "uuid": "90d25d68-afb1-4b2a-9dba-3fe22d44976f" }, "wireframe": { @@ -255,14 +299,26 @@ } } }, + "gray-1000": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "5ce8c477-ae6e-427a-ac5c-79d15c8056ab" + }, + "light": { + "value": "rgb(0, 0, 0)", + "uuid": "457fbeb8-56cd-4f3c-9950-f5e01f83f07c" + } + } + }, "blue-100": { "sets": { "light": { - "value": "rgb(224, 242, 255)", + "value": "rgb(245, 249, 255)", "uuid": "bb610367-a43d-4ba9-b667-84b4d8da69b2" }, "dark": { - "value": "rgb(0, 38, 81)", + "value": "rgb(14, 23, 63)", "uuid": "7d56ac58-fd58-41b3-9bbd-448ae0a7dd85" }, "wireframe": { @@ -274,11 +330,11 @@ "blue-200": { "sets": { "light": { - "value": "rgb(202, 232, 255)", + "value": "rgb(229, 240, 254)", "uuid": "989a37a5-66f2-4a84-a118-8d36caee6695" }, "dark": { - "value": "rgb(0, 50, 106)", + "value": "rgb(15, 27, 77)", "uuid": "7b7d1fd8-cc1e-4053-b320-e481b8f64c46" }, "wireframe": { @@ -290,11 +346,11 @@ "blue-300": { "sets": { "light": { - "value": "rgb(181, 222, 255)", + "value": "rgb(203, 226, 254)", "uuid": "58dc7d3a-3a6d-4ee4-ad38-5e01a07335bd" }, "dark": { - "value": "rgb(0, 64, 135)", + "value": "rgb(13, 34, 119)", "uuid": "d88d1685-29dc-486b-a0b9-9c90f60b8cde" }, "wireframe": { @@ -306,11 +362,11 @@ "blue-400": { "sets": { "light": { - "value": "rgb(150, 206, 253)", + "value": "rgb(176, 209, 253)", "uuid": "9c39c15f-04ee-4cb3-acf3-04c390f14780" }, "dark": { - "value": "rgb(0, 78, 166)", + "value": "rgb(17, 42, 144)", "uuid": "29d339bb-ef80-40f8-a69b-afa778b60805" }, "wireframe": { @@ -322,11 +378,11 @@ "blue-500": { "sets": { "light": { - "value": "rgb(120, 187, 250)", + "value": "rgb(147, 189, 252)", "uuid": "ccc5c654-280e-4f46-964e-9d589f571bc6" }, "dark": { - "value": "rgb(0, 92, 200)", + "value": "rgb(22, 52, 179)", "uuid": "a61ed901-7f77-4667-9d19-fff6bab20623" }, "wireframe": { @@ -338,11 +394,11 @@ "blue-600": { "sets": { "light": { - "value": "rgb(89, 167, 246)", + "value": "rgb(122, 167, 253)", "uuid": "b781aad3-054c-4e81-a368-a8165e6035fd" }, "dark": { - "value": "rgb(6, 108, 231)", + "value": "rgb(29, 63, 209)", "uuid": "7e770996-780a-4494-91ea-08c1ae6cfa80" }, "wireframe": { @@ -354,11 +410,11 @@ "blue-700": { "sets": { "light": { - "value": "rgb(56, 146, 243)", + "value": "rgb(100, 144, 255)", "uuid": "1a25f1fe-6d20-49f9-b8f9-d304efc83626" }, "dark": { - "value": "rgb(29, 128, 245)", + "value": "rgb(40, 78, 236)", "uuid": "5cc66280-e13a-459d-8529-c3f531aa5e4e" }, "wireframe": { @@ -370,11 +426,11 @@ "blue-800": { "sets": { "light": { - "value": "rgb(20, 122, 243)", + "value": "rgb(80, 123, 255)", "uuid": "5ac73d3a-a6cc-4403-a8d5-46bc262d62e9" }, "dark": { - "value": "rgb(64, 150, 243)", + "value": "rgb(56, 96, 250)", "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" }, "wireframe": { @@ -386,11 +442,11 @@ "blue-900": { "sets": { "light": { - "value": "rgb(2, 101, 220)", + "value": "rgb(59, 99, 251)", "uuid": "3451c170-3e78-449b-86f2-8b7dbea24c1c" }, "dark": { - "value": "rgb(94, 170, 247)", + "value": "rgb(77, 120, 255)", "uuid": "82b09b04-6a70-4a95-9eb5-a321a66a6465" }, "wireframe": { @@ -402,11 +458,11 @@ "blue-1000": { "sets": { "light": { - "value": "rgb(0, 84, 182)", + "value": "rgb(39, 77, 234)", "uuid": "da15fc4a-a3ce-4cbe-a2d1-bf5a2e77e5c4" }, "dark": { - "value": "rgb(124, 189, 250)", + "value": "rgb(102, 146, 254)", "uuid": "147ed079-b4f0-4cd7-89cd-7ec93750d688" }, "wireframe": { @@ -418,11 +474,11 @@ "blue-1100": { "sets": { "light": { - "value": "rgb(0, 68, 145)", + "value": "rgb(29, 62, 207)", "uuid": "7044000c-09c4-4c12-8b37-94f8601217e2" }, "dark": { - "value": "rgb(152, 206, 253)", + "value": "rgb(124, 169, 252)", "uuid": "2a5d2e32-930d-4c50-b1fd-6781a1dc1db5" }, "wireframe": { @@ -434,11 +490,11 @@ "blue-1200": { "sets": { "light": { - "value": "rgb(0, 53, 113)", + "value": "rgb(21, 50, 173)", "uuid": "aae7bf70-35c6-49f9-a6da-ba40ee217c3d" }, "dark": { - "value": "rgb(179, 222, 254)", + "value": "rgb(152, 192, 252)", "uuid": "ce7da4ba-77ed-4bdd-a154-90f389af6c2a" }, "wireframe": { @@ -450,11 +506,11 @@ "blue-1300": { "sets": { "light": { - "value": "rgb(0, 39, 84)", + "value": "rgb(16, 40, 140)", "uuid": "c6fce6c2-ca99-4a3d-b2af-d96a35ec70dc" }, "dark": { - "value": "rgb(206, 234, 255)", + "value": "rgb(181, 213, 253)", "uuid": "2bc63c0d-691c-4cc4-95b6-b4e530a44978" }, "wireframe": { @@ -466,11 +522,11 @@ "blue-1400": { "sets": { "light": { - "value": "rgb(0, 28, 60)", + "value": "rgb(12, 31, 105)", "uuid": "af563d02-b975-4ba5-82d3-02bcf30f762c" }, "dark": { - "value": "rgb(227, 243, 255)", + "value": "rgb(213, 231, 254)", "uuid": "eb86d777-ec23-47e4-adc6-1203709dc00d" }, "wireframe": { @@ -479,14 +535,38 @@ } } }, + "blue-1500": { + "sets": { + "dark": { + "value": "rgb(238, 245, 255)", + "uuid": "616c28b4-d9bf-4ff3-9075-6acaad6c112c" + }, + "light": { + "value": "rgb(14, 24, 67)", + "uuid": "a24a53d4-d3c3-4d84-b6eb-048326659524" + } + } + }, + "blue-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "7e8a7cd3-c803-41a9-9178-b43f9eb2e735" + }, + "light": { + "value": "rgb(7, 11, 30)", + "uuid": "29610c54-a311-470d-ad77-c28c000730e3" + } + } + }, "red-100": { "sets": { "light": { - "value": "rgb(255, 235, 231)", + "value": "rgb(255, 246, 245)", "uuid": "c9e0870a-8cf0-438e-9395-8141c316ad57" }, "dark": { - "value": "rgb(87, 0, 0)", + "value": "rgb(54, 10, 3)", "uuid": "04f6044b-d0fa-4705-858c-2dc5721ec30f" }, "wireframe": { @@ -498,11 +578,11 @@ "red-200": { "sets": { "light": { - "value": "rgb(255, 221, 214)", + "value": "rgb(255, 235, 232)", "uuid": "a1f7b6a3-4195-44dc-a772-9a04d3cf859c" }, "dark": { - "value": "rgb(110, 0, 0)", + "value": "rgb(67, 13, 5)", "uuid": "b18ca77b-898e-4e09-88e2-8901de3e9172" }, "wireframe": { @@ -514,11 +594,11 @@ "red-300": { "sets": { "light": { - "value": "rgb(255, 205, 195)", + "value": "rgb(255, 214, 209)", "uuid": "3a393af6-c7f2-45bb-a4bc-9b55518c71ac" }, "dark": { - "value": "rgb(138, 0, 0)", + "value": "rgb(89, 18, 7)", "uuid": "fcfcf026-be31-4a05-b833-6757cacb8b05" }, "wireframe": { @@ -530,11 +610,11 @@ "red-400": { "sets": { "light": { - "value": "rgb(255, 183, 169)", + "value": "rgb(255, 192, 184)", "uuid": "49e7cf3a-1f2a-4487-a0a9-3869a30593f1" }, "dark": { - "value": "rgb(167, 0, 0)", + "value": "rgb(109, 22, 10)", "uuid": "8f9fa135-5aca-4e42-b247-fdfbf74bc07b" }, "wireframe": { @@ -546,11 +626,11 @@ "red-500": { "sets": { "light": { - "value": "rgb(255, 155, 136)", + "value": "rgb(255, 163, 152)", "uuid": "70b11bf5-60c8-48a6-a1d5-2a74bc22e283" }, "dark": { - "value": "rgb(196, 7, 6)", + "value": "rgb(134, 28, 15)", "uuid": "ec50a21c-88aa-41a8-b607-c8b1c407ac4f" }, "wireframe": { @@ -562,11 +642,11 @@ "red-600": { "sets": { "light": { - "value": "rgb(255, 124, 101)", + "value": "rgb(255, 132, 118)", "uuid": "00d13447-f1f9-4cda-89b4-6a839260e91a" }, "dark": { - "value": "rgb(221, 33, 24)", + "value": "rgb(158, 34, 19)", "uuid": "ff0fa040-17d6-4570-84b5-7a88c5bb9f45" }, "wireframe": { @@ -578,11 +658,11 @@ "red-700": { "sets": { "light": { - "value": "rgb(247, 92, 70)", + "value": "rgb(255, 95, 76)", "uuid": "a84b6ffe-5235-4517-9beb-320ed79cf6b0" }, "dark": { - "value": "rgb(238, 67, 49)", + "value": "rgb(185, 41, 24)", "uuid": "cb2486de-b2be-45e5-b459-6e371b29d357" }, "wireframe": { @@ -594,11 +674,11 @@ "red-800": { "sets": { "light": { - "value": "rgb(234, 56, 41)", + "value": "rgb(247, 59, 38)", "uuid": "6c3daf67-9cdc-4c02-9912-ff0b902c22ed" }, "dark": { - "value": "rgb(249, 99, 76)", + "value": "rgb(212, 48, 31)", "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" }, "wireframe": { @@ -610,11 +690,11 @@ "red-900": { "sets": { "light": { - "value": "rgb(211, 21, 16)", + "value": "rgb(215, 50, 32)", "uuid": "d5d3bc64-629c-44b0-8ff5-81f260521f5b" }, "dark": { - "value": "rgb(255, 129, 107)", + "value": "rgb(243, 57, 36)", "uuid": "ccb79099-59f4-4bf2-b149-0de72f556a45" }, "wireframe": { @@ -626,11 +706,11 @@ "red-1000": { "sets": { "light": { - "value": "rgb(180, 0, 0)", + "value": "rgb(183, 40, 24)", "uuid": "4a585714-4331-44b1-b81f-25a8ff1cc8ea" }, "dark": { - "value": "rgb(255, 158, 140)", + "value": "rgb(255, 98, 79)", "uuid": "95621c5a-1768-4707-a2ce-bd15c61c89f4" }, "wireframe": { @@ -642,11 +722,11 @@ "red-1100": { "sets": { "light": { - "value": "rgb(147, 0, 0)", + "value": "rgb(156, 33, 19)", "uuid": "a02ee7fb-b9de-45f1-bee7-8ffe2145cbec" }, "dark": { - "value": "rgb(255, 183, 169)", + "value": "rgb(255, 134, 120)", "uuid": "53617d38-1075-4b47-87c7-4695b385a2d7" }, "wireframe": { @@ -658,11 +738,11 @@ "red-1200": { "sets": { "light": { - "value": "rgb(116, 0, 0)", + "value": "rgb(129, 27, 14)", "uuid": "ea79c634-9d94-4012-bae0-903479c34dc5" }, "dark": { - "value": "rgb(255, 205, 195)", + "value": "rgb(255, 167, 157)", "uuid": "e7820c1c-ff58-431d-b521-b81ee3281db0" }, "wireframe": { @@ -674,11 +754,11 @@ "red-1300": { "sets": { "light": { - "value": "rgb(89, 0, 0)", + "value": "rgb(104, 21, 10)", "uuid": "63934482-260f-4c73-a176-cad11427c537" }, "dark": { - "value": "rgb(255, 223, 217)", + "value": "rgb(255, 196, 189)", "uuid": "7691bca6-3749-4cb7-a950-a94fe3d2910f" }, "wireframe": { @@ -690,11 +770,11 @@ "red-1400": { "sets": { "light": { - "value": "rgb(67, 0, 0)", + "value": "rgb(80, 16, 6)", "uuid": "1c208bc2-2eca-4727-a195-f80fe0e7ea11" }, "dark": { - "value": "rgb(255, 237, 234)", + "value": "rgb(255, 222, 219)", "uuid": "aaafa24c-cb3c-48cd-9cb7-e164be140ab5" }, "wireframe": { @@ -703,14 +783,38 @@ } } }, + "red-1500": { + "sets": { + "dark": { + "value": "rgb(255, 242, 240)", + "uuid": "e99ac2fd-25ab-4202-a279-41808cc8dbc6" + }, + "light": { + "value": "rgb(59, 11, 4)", + "uuid": "45ef3c1f-fb24-4a0e-98c3-69c6027eb709" + } + } + }, + "red-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "685778a4-bc17-4d74-a713-1776fc2516af" + }, + "light": { + "value": "rgb(29, 5, 2)", + "uuid": "3d8a70af-6e0b-449f-98e3-515498bf00ca" + } + } + }, "orange-100": { "sets": { "light": { - "value": "rgb(255, 236, 204)", + "value": "rgb(255, 246, 231)", "uuid": "8bfd5eff-55b4-4b98-9b2e-2871e4ec6ff6" }, "dark": { - "value": "rgb(72, 24, 1)", + "value": "rgb(49, 16, 0)", "uuid": "974ab8ec-6691-4696-b38c-77e16fb3df88" }, "wireframe": { @@ -722,11 +826,11 @@ "orange-200": { "sets": { "light": { - "value": "rgb(255, 223, 173)", + "value": "rgb(255, 238, 210)", "uuid": "64371717-ac11-4ec3-a0aa-9042cf43fa8f" }, "dark": { - "value": "rgb(92, 32, 0)", + "value": "rgb(59, 20, 0)", "uuid": "587d4ce3-4275-4d2a-916c-2b1bf78c38ea" }, "wireframe": { @@ -738,11 +842,11 @@ "orange-300": { "sets": { "light": { - "value": "rgb(253, 210, 145)", + "value": "rgb(255, 218, 158)", "uuid": "f34f9b32-ef46-4473-bfd6-10b858e53f55" }, "dark": { - "value": "rgb(115, 43, 0)", + "value": "rgb(80, 27, 0)", "uuid": "74f40bbb-5afd-4c88-89d3-e69de9e2b604" }, "wireframe": { @@ -754,11 +858,11 @@ "orange-400": { "sets": { "light": { - "value": "rgb(255, 187, 99)", + "value": "rgb(255, 197, 103)", "uuid": "15bea688-4c32-44c0-9ee3-242bdb50954c" }, "dark": { - "value": "rgb(138, 55, 0)", + "value": "rgb(99, 34, 0)", "uuid": "b912089a-b6c9-49ef-8a4b-0a1f6fbbe963" }, "wireframe": { @@ -770,11 +874,11 @@ "orange-500": { "sets": { "light": { - "value": "rgb(255, 160, 55)", + "value": "rgb(255, 169, 33)", "uuid": "33bd4908-1259-4e75-8e96-bd410bebcfd6" }, "dark": { - "value": "rgb(162, 68, 0)", + "value": "rgb(122, 42, 0)", "uuid": "8a56b352-d7d4-45d4-b403-448557656dab" }, "wireframe": { @@ -786,11 +890,11 @@ "orange-600": { "sets": { "light": { - "value": "rgb(246, 133, 17)", + "value": "rgb(255, 137, 0)", "uuid": "eeede364-d711-40e5-9d2a-0255b10d36f2" }, "dark": { - "value": "rgb(186, 82, 0)", + "value": "rgb(145, 52, 0)", "uuid": "27b198b5-bf02-476a-a440-84c9a5bd2ce3" }, "wireframe": { @@ -802,11 +906,11 @@ "orange-700": { "sets": { "light": { - "value": "rgb(228, 111, 0)", + "value": "rgb(239, 112, 0)", "uuid": "a4527b6f-e2d4-4a0f-b013-007dc5a2d3ac" }, "dark": { - "value": "rgb(210, 98, 0)", + "value": "rgb(169, 63, 0)", "uuid": "f9e84513-57d6-4786-b8db-c86055cebfc6" }, "wireframe": { @@ -818,11 +922,11 @@ "orange-800": { "sets": { "light": { - "value": "rgb(203, 93, 0)", + "value": "rgb(218, 95, 0)", "uuid": "437e4f5b-e68c-4491-b26c-a9fa1503561b" }, "dark": { - "value": "rgb(232, 116, 0)", + "value": "rgb(190, 76, 0)", "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" }, "wireframe": { @@ -834,11 +938,11 @@ "orange-900": { "sets": { "light": { - "value": "rgb(177, 76, 0)", + "value": "rgb(193, 78, 0)", "uuid": "e9df9a43-f509-44f3-89f6-c277f7445651" }, "dark": { - "value": "rgb(249, 137, 23)", + "value": "rgb(214, 93, 0)", "uuid": "0fbe4f46-02a8-444d-ace5-c245c6f15112" }, "wireframe": { @@ -850,11 +954,11 @@ "orange-1000": { "sets": { "light": { - "value": "rgb(149, 61, 0)", + "value": "rgb(167, 62, 0)", "uuid": "7dc902b9-6512-429e-9cb4-c2f97ca08e99" }, "dark": { - "value": "rgb(255, 162, 59)", + "value": "rgb(240, 114, 0)", "uuid": "92e06ff6-8347-4320-9a98-3054ba458d0e" }, "wireframe": { @@ -866,11 +970,11 @@ "orange-1100": { "sets": { "light": { - "value": "rgb(122, 47, 0)", + "value": "rgb(144, 51, 0)", "uuid": "b6c1e499-f043-4b5a-81cf-4224a0f83fce" }, "dark": { - "value": "rgb(255, 188, 102)", + "value": "rgb(255, 137, 0)", "uuid": "a571e2cd-2aff-4344-b608-45a48162cb61" }, "wireframe": { @@ -882,11 +986,11 @@ "orange-1200": { "sets": { "light": { - "value": "rgb(97, 35, 0)", + "value": "rgb(118, 41, 0)", "uuid": "14da1231-c89f-45a1-845e-f3bd902f704b" }, "dark": { - "value": "rgb(253, 210, 145)", + "value": "rgb(255, 173, 45)", "uuid": "8e3fe8e0-2b14-4331-869f-de2680ea60ac" }, "wireframe": { @@ -898,11 +1002,11 @@ "orange-1300": { "sets": { "light": { - "value": "rgb(73, 25, 1)", + "value": "rgb(95, 32, 0)", "uuid": "f650301b-6586-4193-9937-9f12d6c3f99f" }, "dark": { - "value": "rgb(255, 226, 181)", + "value": "rgb(255, 201, 116)", "uuid": "06afaefe-7e0a-42e2-99b5-e62674e1185d" }, "wireframe": { @@ -914,11 +1018,11 @@ "orange-1400": { "sets": { "light": { - "value": "rgb(53, 18, 1)", + "value": "rgb(73, 24, 0)", "uuid": "99a43835-df3a-4447-b91d-9d943659b07f" }, "dark": { - "value": "rgb(255, 239, 213)", + "value": "rgb(255, 225, 178)", "uuid": "9f2f551f-b606-48ce-9493-888587d3ccb6" }, "wireframe": { @@ -927,14 +1031,38 @@ } } }, + "orange-1500": { + "sets": { + "dark": { + "value": "rgb(255, 243, 225)", + "uuid": "48b0167c-d675-4fc5-9130-1b36a94fd163" + }, + "light": { + "value": "rgb(52, 18, 0)", + "uuid": "8aa75bbd-fd78-463d-a321-8672e5a537d6" + } + } + }, + "orange-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "b2f21ea2-e546-4b1a-a72d-e840172857b4" + }, + "light": { + "value": "rgb(25, 8, 0)", + "uuid": "e99566f3-7b29-4c75-a4bd-ce17c0d84c3f" + } + } + }, "yellow-100": { "sets": { "light": { - "value": "rgb(251, 241, 152)", + "value": "rgb(255, 248, 204)", "uuid": "910d2e36-245f-4df6-a99c-92a5bb4d4cce" }, "dark": { - "value": "rgb(53, 36, 0)", + "value": "rgb(37, 23, 0)", "uuid": "7bef094a-1523-4392-a0ca-59c48409f17a" }, "wireframe": { @@ -946,11 +1074,11 @@ "yellow-200": { "sets": { "light": { - "value": "rgb(248, 231, 80)", + "value": "rgb(255, 241, 151)", "uuid": "0ebcaa53-4d19-4eed-99d1-4477f4358a58" }, "dark": { - "value": "rgb(68, 47, 0)", + "value": "rgb(47, 29, 0)", "uuid": "f4fdc925-63b3-4670-9f2b-a057c27c834a" }, "wireframe": { @@ -962,11 +1090,11 @@ "yellow-300": { "sets": { "light": { - "value": "rgb(248, 217, 4)", + "value": "rgb(255, 222, 44)", "uuid": "97ea0771-52c6-48f0-8725-dc514b0738d4" }, "dark": { - "value": "rgb(86, 62, 0)", + "value": "rgb(63, 40, 0)", "uuid": "238147c6-0302-4d43-b3a3-42df832c7857" }, "wireframe": { @@ -978,11 +1106,11 @@ "yellow-400": { "sets": { "light": { - "value": "rgb(232, 198, 0)", + "value": "rgb(247, 203, 0)", "uuid": "8ffb47cc-cc5c-4179-807e-4a1cb45c6496" }, "dark": { - "value": "rgb(103, 77, 0)", + "value": "rgb(78, 49, 0)", "uuid": "62ab6892-66ea-4b55-8c1a-fcc191d29717" }, "wireframe": { @@ -994,11 +1122,11 @@ "yellow-500": { "sets": { "light": { - "value": "rgb(215, 179, 0)", + "value": "rgb(233, 179, 0)", "uuid": "68a43979-6dee-45b9-963d-3e827b2554f4" }, "dark": { - "value": "rgb(122, 92, 0)", + "value": "rgb(97, 61, 0)", "uuid": "efa1fdd8-4478-411a-892c-0ecf23939489" }, "wireframe": { @@ -1010,11 +1138,11 @@ "yellow-600": { "sets": { "light": { - "value": "rgb(196, 159, 0)", + "value": "rgb(217, 158, 0)", "uuid": "8c86293e-334b-49ed-a7aa-eb4fe987002f" }, "dark": { - "value": "rgb(141, 108, 0)", + "value": "rgb(116, 73, 0)", "uuid": "8ae3c5ec-aabe-47a0-b822-ba0907e67ed4" }, "wireframe": { @@ -1026,11 +1154,11 @@ "yellow-700": { "sets": { "light": { - "value": "rgb(176, 140, 0)", + "value": "rgb(199, 137, 0)", "uuid": "881b7389-0c65-46e6-a391-d1d5800c535c" }, "dark": { - "value": "rgb(161, 126, 0)", + "value": "rgb(135, 86, 0)", "uuid": "ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359" }, "wireframe": { @@ -1042,11 +1170,11 @@ "yellow-800": { "sets": { "light": { - "value": "rgb(155, 120, 0)", + "value": "rgb(180, 119, 0)", "uuid": "b9ee2410-9573-4acd-bff8-ce11bf0f72a0" }, "dark": { - "value": "rgb(180, 144, 0)", + "value": "rgb(155, 100, 0)", "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" }, "wireframe": { @@ -1058,11 +1186,11 @@ "yellow-900": { "sets": { "light": { - "value": "rgb(133, 102, 0)", + "value": "rgb(158, 102, 0)", "uuid": "1b030fd3-f5bc-4e84-8efd-33db77bf64b8" }, "dark": { - "value": "rgb(199, 162, 0)", + "value": "rgb(178, 117, 0)", "uuid": "a12f6cac-7fdc-4fd4-8120-ad957823ff6b" }, "wireframe": { @@ -1074,11 +1202,11 @@ "yellow-1000": { "sets": { "light": { - "value": "rgb(112, 83, 0)", + "value": "rgb(134, 85, 0)", "uuid": "a9d84db4-e9db-45a8-9010-4e64822f0408" }, "dark": { - "value": "rgb(216, 181, 0)", + "value": "rgb(200, 138, 0)", "uuid": "4cf4a500-37a2-4dd8-a243-14f6c012b53c" }, "wireframe": { @@ -1090,11 +1218,11 @@ "yellow-1100": { "sets": { "light": { - "value": "rgb(91, 67, 0)", + "value": "rgb(114, 72, 0)", "uuid": "b6001568-2f26-4722-85e2-e6a3a8ad0ec8" }, "dark": { - "value": "rgb(233, 199, 0)", + "value": "rgb(218, 159, 0)", "uuid": "4eee9daf-e19d-4e0b-b12d-4fdcc4852956" }, "wireframe": { @@ -1106,11 +1234,11 @@ "yellow-1200": { "sets": { "light": { - "value": "rgb(72, 51, 0)", + "value": "rgb(93, 59, 0)", "uuid": "7be15b50-51c6-4d0c-9ec8-89b4ac170a5a" }, "dark": { - "value": "rgb(247, 216, 4)", + "value": "rgb(235, 183, 0)", "uuid": "69059dfa-e2e1-4f8d-b06b-058a8724e071" }, "wireframe": { @@ -1122,11 +1250,11 @@ "yellow-1300": { "sets": { "light": { - "value": "rgb(54, 37, 0)", + "value": "rgb(75, 47, 0)", "uuid": "b5808c39-38db-4378-96db-1f6d44ce5172" }, "dark": { - "value": "rgb(249, 233, 97)", + "value": "rgb(249, 206, 0)", "uuid": "b2a1039c-cbfe-44bf-a0fe-822c5f576f52" }, "wireframe": { @@ -1138,11 +1266,11 @@ "yellow-1400": { "sets": { "light": { - "value": "rgb(40, 26, 0)", + "value": "rgb(56, 35, 0)", "uuid": "65ad1c10-fb0d-4dd2-a9f5-66ab34dcc86b" }, "dark": { - "value": "rgb(252, 243, 170)", + "value": "rgb(255, 230, 86)", "uuid": "dfd355e7-82fd-4fdb-96bd-b584d7268ee9" }, "wireframe": { @@ -1151,14 +1279,38 @@ } } }, + "yellow-1500": { + "sets": { + "dark": { + "value": "rgb(255, 246, 195)", + "uuid": "166ee2cc-b727-4f3c-9c08-5c586a0f6c11" + }, + "light": { + "value": "rgb(40, 25, 0)", + "uuid": "d8eebb60-7b0c-496e-ae04-1f1fc61f3013" + } + } + }, + "yellow-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "3df0b31f-656a-4400-99c4-d559da586714" + }, + "light": { + "value": "rgb(18, 11, 0)", + "uuid": "ada313e4-768c-4fd0-b93c-b6f6d2a50f68" + } + } + }, "chartreuse-100": { "sets": { "light": { - "value": "rgb(219, 252, 110)", + "value": "rgb(246, 251, 222)", "uuid": "b7cca467-abe9-4632-b01a-dda350c93480" }, "dark": { - "value": "rgb(32, 43, 0)", + "value": "rgb(23, 28, 0)", "uuid": "bdc6a473-3109-44c6-9e2f-198d3224d75f" }, "wireframe": { @@ -1170,11 +1322,11 @@ "chartreuse-200": { "sets": { "light": { - "value": "rgb(203, 244, 67)", + "value": "rgb(234, 246, 173)", "uuid": "c1146153-61bf-4a31-8254-54a1d25a93c5" }, "dark": { - "value": "rgb(42, 56, 0)", + "value": "rgb(29, 35, 0)", "uuid": "b18f4550-5bbe-496c-b4a5-13df8fd0c7d7" }, "wireframe": { @@ -1186,11 +1338,11 @@ "chartreuse-300": { "sets": { "light": { - "value": "rgb(188, 233, 42)", + "value": "rgb(208, 236, 70)", "uuid": "f8812b11-742b-44d6-a21a-7fd3db39fe71" }, "dark": { - "value": "rgb(54, 72, 0)", + "value": "rgb(40, 48, 0)", "uuid": "b98dec90-df71-4593-946d-91df7918caac" }, "wireframe": { @@ -1202,11 +1354,11 @@ "chartreuse-400": { "sets": { "light": { - "value": "rgb(170, 216, 22)", + "value": "rgb(184, 221, 0)", "uuid": "32e471ce-5b0d-40f1-a77a-67feff02775e" }, "dark": { - "value": "rgb(66, 88, 0)", + "value": "rgb(50, 59, 0)", "uuid": "6a974b7d-ccd2-4778-baae-8caf419a529c" }, "wireframe": { @@ -1218,11 +1370,11 @@ "chartreuse-500": { "sets": { "light": { - "value": "rgb(152, 197, 10)", + "value": "rgb(166, 200, 0)", "uuid": "fe3be762-b55e-43cb-9163-68ee7dafc53e" }, "dark": { - "value": "rgb(79, 105, 0)", + "value": "rgb(62, 74, 0)", "uuid": "46d8fd3b-0e51-4cdd-a33c-de184b82dcc5" }, "wireframe": { @@ -1234,11 +1386,11 @@ "chartreuse-600": { "sets": { "light": { - "value": "rgb(135, 177, 3)", + "value": "rgb(149, 180, 0)", "uuid": "d61e865b-6538-42a8-aba8-0842359b80c2" }, "dark": { - "value": "rgb(93, 123, 0)", + "value": "rgb(74, 88, 0)", "uuid": "965174d2-e743-41df-a8e2-570b2ae2f447" }, "wireframe": { @@ -1250,11 +1402,11 @@ "chartreuse-700": { "sets": { "light": { - "value": "rgb(118, 156, 0)", + "value": "rgb(133, 159, 0)", "uuid": "3d0fd171-80f3-4f08-9ac0-eb46d0e755f9" }, "dark": { - "value": "rgb(107, 142, 0)", + "value": "rgb(87, 104, 0)", "uuid": "a615bb51-0249-4201-b1c9-1c6269b82ec2" }, "wireframe": { @@ -1266,11 +1418,11 @@ "chartreuse-800": { "sets": { "light": { - "value": "rgb(103, 136, 0)", + "value": "rgb(118, 141, 0)", "uuid": "9a0701e4-81a0-420b-b751-c6a46670fbf3" }, "dark": { - "value": "rgb(122, 161, 0)", + "value": "rgb(100, 120, 0)", "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" }, "wireframe": { @@ -1282,11 +1434,11 @@ "chartreuse-900": { "sets": { "light": { - "value": "rgb(87, 116, 0)", + "value": "rgb(102, 122, 0)", "uuid": "7d22a144-0f7c-435e-ad05-b2d7672dff08" }, "dark": { - "value": "rgb(138, 180, 3)", + "value": "rgb(116, 139, 0)", "uuid": "1637c50e-88e4-4273-8a75-6e8a233a690c" }, "wireframe": { @@ -1298,11 +1450,11 @@ "chartreuse-1000": { "sets": { "light": { - "value": "rgb(72, 96, 0)", + "value": "rgb(86, 103, 0)", "uuid": "00100510-9965-4086-ba82-0cb62ffebba1" }, "dark": { - "value": "rgb(154, 198, 11)", + "value": "rgb(134, 161, 0)", "uuid": "7dbedc59-e21c-4953-a7af-5e91d170604a" }, "wireframe": { @@ -1314,11 +1466,11 @@ "chartreuse-1100": { "sets": { "light": { - "value": "rgb(58, 77, 0)", + "value": "rgb(73, 87, 0)", "uuid": "e964b654-261d-44a5-ab0a-78c8137a7783" }, "dark": { - "value": "rgb(170, 216, 22)", + "value": "rgb(151, 181, 0)", "uuid": "90417b40-97dd-47b3-9dbc-4ac45f8e4a5f" }, "wireframe": { @@ -1330,11 +1482,11 @@ "chartreuse-1200": { "sets": { "light": { - "value": "rgb(44, 59, 0)", + "value": "rgb(60, 71, 0)", "uuid": "6bf184f6-f0e1-41af-94a4-47aa1a37b0aa" }, "dark": { - "value": "rgb(187, 232, 41)", + "value": "rgb(169, 203, 0)", "uuid": "e4b04d5d-e99d-41c5-8b24-540d653ef3ff" }, "wireframe": { @@ -1346,11 +1498,11 @@ "chartreuse-1300": { "sets": { "light": { - "value": "rgb(33, 44, 0)", + "value": "rgb(47, 57, 0)", "uuid": "e320e57d-2794-4c1e-97ef-3a8b04be1328" }, "dark": { - "value": "rgb(205, 246, 72)", + "value": "rgb(187, 225, 0)", "uuid": "615841b9-08b2-4e21-981a-b8f5247e9e89" }, "wireframe": { @@ -1362,11 +1514,11 @@ "chartreuse-1400": { "sets": { "light": { - "value": "rgb(24, 31, 0)", + "value": "rgb(35, 43, 0)", "uuid": "56b4f40c-d9f2-4360-99eb-7097aafedf94" }, "dark": { - "value": "rgb(225, 253, 132)", + "value": "rgb(219, 240, 117)", "uuid": "a75188c9-02e3-4337-8056-9a6f8f39001f" }, "wireframe": { @@ -1375,14 +1527,38 @@ } } }, + "chartreuse-1500": { + "sets": { + "dark": { + "value": "rgb(242, 249, 206)", + "uuid": "d7f569e2-f91c-439e-8e5a-8c8c825367ff" + }, + "light": { + "value": "rgb(25, 30, 0)", + "uuid": "63f13dcb-6d61-4ff0-9999-33e16d30e5d6" + } + } + }, + "chartreuse-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "753f7aa2-6c7d-4b43-baf9-c72adbd9279d" + }, + "light": { + "value": "rgb(11, 14, 0)", + "uuid": "01b68e1d-06d7-44a3-91e6-08e17353008c" + } + } + }, "celery-100": { "sets": { "light": { - "value": "rgb(205, 252, 191)", + "value": "rgb(235, 255, 220)", "uuid": "b4a22d71-d90a-4f6e-8f6d-e4967849376f" }, "dark": { - "value": "rgb(0, 47, 7)", + "value": "rgb(11, 31, 0)", "uuid": "43feed9a-9a2a-44e0-9506-9bc5eb8eab1d" }, "wireframe": { @@ -1394,11 +1570,11 @@ "celery-200": { "sets": { "light": { - "value": "rgb(174, 246, 157)", + "value": "rgb(202, 255, 164)", "uuid": "30941af9-354a-4d61-9462-aca4bcd50093" }, "dark": { - "value": "rgb(0, 61, 9)", + "value": "rgb(14, 37, 0)", "uuid": "741a30fb-62a9-4c76-a78e-cc2590af9c7d" }, "wireframe": { @@ -1410,11 +1586,11 @@ "celery-300": { "sets": { "light": { - "value": "rgb(150, 238, 133)", + "value": "rgb(155, 246, 90)", "uuid": "3562f589-ba34-465e-9549-2600e2527ab8" }, "dark": { - "value": "rgb(0, 77, 12)", + "value": "rgb(21, 51, 1)", "uuid": "5eda4487-8f82-48ed-8b22-aa38601bbf88" }, "wireframe": { @@ -1426,11 +1602,11 @@ "celery-400": { "sets": { "light": { - "value": "rgb(114, 224, 106)", + "value": "rgb(131, 230, 60)", "uuid": "d86c4477-a2f4-449a-8883-daaf33608fde" }, "dark": { - "value": "rgb(0, 95, 15)", + "value": "rgb(28, 63, 3)", "uuid": "646d80c1-7073-4e13-bbfe-4bd0c2226079" }, "wireframe": { @@ -1442,11 +1618,11 @@ "celery-500": { "sets": { "light": { - "value": "rgb(78, 207, 80)", + "value": "rgb(113, 210, 44)", "uuid": "9c5fc2d5-30cc-4389-b219-2db69f8a86f9" }, "dark": { - "value": "rgb(0, 113, 15)", + "value": "rgb(36, 78, 6)", "uuid": "7d4c282b-78ce-4b2c-ab39-26bf02366e4d" }, "wireframe": { @@ -1458,11 +1634,11 @@ "celery-600": { "sets": { "light": { - "value": "rgb(39, 187, 54)", + "value": "rgb(99, 189, 34)", "uuid": "c2cfbc22-b556-4cb5-b5ee-670254d5ecbc" }, "dark": { - "value": "rgb(0, 132, 15)", + "value": "rgb(44, 93, 9)", "uuid": "260d8921-3810-4a5d-a20f-cd00170cf951" }, "wireframe": { @@ -1474,11 +1650,11 @@ "celery-700": { "sets": { "light": { - "value": "rgb(7, 167, 33)", + "value": "rgb(85, 168, 27)", "uuid": "59b03f98-f898-4888-ad71-07a434e2fc7e" }, "dark": { - "value": "rgb(0, 151, 20)", + "value": "rgb(53, 110, 12)", "uuid": "7e7e6abb-a2e9-4308-ac8e-e6866ec17c64" }, "wireframe": { @@ -1490,11 +1666,11 @@ "celery-800": { "sets": { "light": { - "value": "rgb(0, 145, 18)", + "value": "rgb(75, 149, 21)", "uuid": "41747345-10ab-476a-9d3d-e657f9383e8e" }, "dark": { - "value": "rgb(13, 171, 37)", + "value": "rgb(62, 126, 16)", "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" }, "wireframe": { @@ -1506,11 +1682,11 @@ "celery-900": { "sets": { "light": { - "value": "rgb(0, 124, 15)", + "value": "rgb(64, 129, 17)", "uuid": "deec9c21-caeb-4ec4-bca4-a7661a2c5f91" }, "dark": { - "value": "rgb(45, 191, 58)", + "value": "rgb(73, 146, 21)", "uuid": "706f3a95-ab27-497f-aab7-f4ed806eef30" }, "wireframe": { @@ -1522,11 +1698,11 @@ "celery-1000": { "sets": { "light": { - "value": "rgb(0, 103, 15)", + "value": "rgb(52, 109, 12)", "uuid": "3d509755-d653-4a3f-a5a3-fcbed0c2e21c" }, "dark": { - "value": "rgb(80, 208, 82)", + "value": "rgb(87, 169, 27)", "uuid": "021a55b8-26ae-4767-82fb-06b20c58762b" }, "wireframe": { @@ -1538,11 +1714,11 @@ "celery-1100": { "sets": { "light": { - "value": "rgb(0, 83, 13)", + "value": "rgb(44, 92, 9)", "uuid": "ea7327bb-48a8-41dd-b139-c7bda3dedaee" }, "dark": { - "value": "rgb(115, 224, 107)", + "value": "rgb(100, 190, 35)", "uuid": "e091babe-6e02-4393-a67e-63222ab860b4" }, "wireframe": { @@ -1554,11 +1730,11 @@ "celery-1200": { "sets": { "light": { - "value": "rgb(0, 64, 10)", + "value": "rgb(35, 75, 6)", "uuid": "fc4dedc3-0009-4a5a-8e93-f52ba4155e0a" }, "dark": { - "value": "rgb(147, 237, 131)", + "value": "rgb(116, 213, 46)", "uuid": "9913e84a-4070-476f-a570-a16781a924cf" }, "wireframe": { @@ -1570,11 +1746,11 @@ "celery-1300": { "sets": { "light": { - "value": "rgb(0, 48, 7)", + "value": "rgb(27, 60, 3)", "uuid": "7a3d9646-272f-4ca1-a4e6-0708eb2cd378" }, "dark": { - "value": "rgb(180, 247, 162)", + "value": "rgb(136, 234, 65)", "uuid": "d2d8dc91-da75-4c56-a0d8-e6e9802434ad" }, "wireframe": { @@ -1586,11 +1762,11 @@ "celery-1400": { "sets": { "light": { - "value": "rgb(0, 34, 5)", + "value": "rgb(19, 46, 0)", "uuid": "02e66104-cbf7-4e27-89cf-f18b1ef04f2d" }, "dark": { - "value": "rgb(213, 252, 202)", + "value": "rgb(170, 251, 112)", "uuid": "c5c3c68c-8293-4ebb-a8d1-9f4af902906e" }, "wireframe": { @@ -1599,14 +1775,38 @@ } } }, + "celery-1500": { + "sets": { + "dark": { + "value": "rgb(222, 255, 198)", + "uuid": "ad9c1278-7296-4aef-9e19-6cabc2997bfa" + }, + "light": { + "value": "rgb(12, 33, 0)", + "uuid": "ca5c139e-1784-4139-89a3-281a83dbeb99" + } + } + }, + "celery-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "f1a7d5b6-4414-493a-a5d8-77d81a0121a2" + }, + "light": { + "value": "rgb(4, 15, 0)", + "uuid": "56e0d793-ce33-4da3-8e67-d7df10b2cd89" + } + } + }, "green-100": { "sets": { "light": { - "value": "rgb(206, 248, 224)", + "value": "rgb(237, 252, 241)", "uuid": "4428dba5-df85-4125-ba54-1c022b986847" }, "dark": { - "value": "rgb(10, 44, 28)", + "value": "rgb(0, 31, 23)", "uuid": "e5a14d4a-47c5-4a53-84c5-589a0749d906" }, "wireframe": { @@ -1618,11 +1818,11 @@ "green-200": { "sets": { "light": { - "value": "rgb(173, 244, 206)", + "value": "rgb(215, 247, 225)", "uuid": "9d32cd19-8375-4da3-9324-0e8334c2e714" }, "dark": { - "value": "rgb(7, 59, 36)", + "value": "rgb(0, 38, 28)", "uuid": "e8f294f5-cb17-4fdc-b370-ca2e3f95d342" }, "wireframe": { @@ -1634,11 +1834,11 @@ "green-300": { "sets": { "light": { - "value": "rgb(137, 236, 188)", + "value": "rgb(173, 238, 197)", "uuid": "88bac762-84e1-4652-8152-384f3b1faf59" }, "dark": { - "value": "rgb(0, 76, 46)", + "value": "rgb(0, 52, 38)", "uuid": "cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2" }, "wireframe": { @@ -1650,11 +1850,11 @@ "green-400": { "sets": { "light": { - "value": "rgb(103, 222, 168)", + "value": "rgb(113, 229, 165)", "uuid": "5cb02868-9f86-4e20-85e0-e4f5df24853c" }, "dark": { - "value": "rgb(0, 93, 57)", + "value": "rgb(0, 64, 45)", "uuid": "c5e88879-9773-446c-883e-96531bcb8fad" }, "wireframe": { @@ -1666,11 +1866,11 @@ "green-500": { "sets": { "light": { - "value": "rgb(73, 204, 147)", + "value": "rgb(48, 212, 128)", "uuid": "8b315766-4fa0-4acc-a679-89da4162a15c" }, "dark": { - "value": "rgb(0, 111, 69)", + "value": "rgb(1, 79, 53)", "uuid": "27649ccc-69a8-48d6-9d52-6d6e2e28ae17" }, "wireframe": { @@ -1682,11 +1882,11 @@ "green-600": { "sets": { "light": { - "value": "rgb(47, 184, 128)", + "value": "rgb(23, 192, 108)", "uuid": "4c6c7b90-29ac-4186-a991-c298f19aa83d" }, "dark": { - "value": "rgb(0, 130, 82)", + "value": "rgb(2, 95, 61)", "uuid": "a0513e49-8483-40f8-8b8f-41fdc222f13d" }, "wireframe": { @@ -1698,11 +1898,11 @@ "green-700": { "sets": { "light": { - "value": "rgb(21, 164, 110)", + "value": "rgb(13, 171, 96)", "uuid": "19a07ad0-9e01-4adc-861d-f7634de1f1ab" }, "dark": { - "value": "rgb(0, 149, 98)", + "value": "rgb(3, 112, 69)", "uuid": "9c24175e-34a5-46c8-b646-f70c08292776" }, "wireframe": { @@ -1714,11 +1914,11 @@ "green-800": { "sets": { "light": { - "value": "rgb(0, 143, 93)", + "value": "rgb(8, 151, 86)", "uuid": "1be225f8-3612-422c-923f-b35f1ec4fc00" }, "dark": { - "value": "rgb(28, 168, 114)", + "value": "rgb(5, 128, 76)", "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" }, "wireframe": { @@ -1730,11 +1930,11 @@ "green-900": { "sets": { "light": { - "value": "rgb(0, 122, 77)", + "value": "rgb(5, 131, 77)", "uuid": "cd39a520-2020-41d0-96d1-3b0fdb453fef" }, "dark": { - "value": "rgb(52, 187, 132)", + "value": "rgb(8, 149, 85)", "uuid": "5afee2ee-a5d5-4dcf-a917-11dfdd0c3691" }, "wireframe": { @@ -1746,11 +1946,11 @@ "green-1000": { "sets": { "light": { - "value": "rgb(0, 101, 62)", + "value": "rgb(3, 110, 68)", "uuid": "b0846caa-d394-4614-aaa2-af179de285f4" }, "dark": { - "value": "rgb(75, 205, 149)", + "value": "rgb(13, 172, 97)", "uuid": "3d6732a1-a1f9-4e18-927b-93cebaae3895" }, "wireframe": { @@ -1762,11 +1962,11 @@ "green-1100": { "sets": { "light": { - "value": "rgb(0, 81, 50)", + "value": "rgb(2, 93, 60)", "uuid": "8d0742b8-c334-41e0-a8e1-50fc8ea3b3ef" }, "dark": { - "value": "rgb(103, 222, 168)", + "value": "rgb(24, 193, 110)", "uuid": "a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82" }, "wireframe": { @@ -1778,11 +1978,11 @@ "green-1200": { "sets": { "light": { - "value": "rgb(5, 63, 39)", + "value": "rgb(1, 76, 52)", "uuid": "4ea6f2d0-bc92-44fa-90e9-9618806a19c2" }, "dark": { - "value": "rgb(137, 236, 188)", + "value": "rgb(57, 215, 134)", "uuid": "07fa1b72-bf84-4fd5-9565-28373fae6a1f" }, "wireframe": { @@ -1794,11 +1994,11 @@ "green-1300": { "sets": { "light": { - "value": "rgb(10, 46, 29)", + "value": "rgb(0, 61, 44)", "uuid": "569d58d2-c7e4-4a0c-b92a-841e45fcbc09" }, "dark": { - "value": "rgb(177, 244, 209)", + "value": "rgb(126, 231, 172)", "uuid": "c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73" }, "wireframe": { @@ -1810,11 +2010,11 @@ "green-1400": { "sets": { "light": { - "value": "rgb(10, 32, 21)", + "value": "rgb(0, 46, 34)", "uuid": "c0711ebf-a91a-4041-8e1a-259ed6c3c54c" }, "dark": { - "value": "rgb(214, 249, 228)", + "value": "rgb(189, 241, 208)", "uuid": "df5458e5-891b-4a88-a96c-748a812978a7" }, "wireframe": { @@ -1823,14 +2023,38 @@ } } }, + "green-1500": { + "sets": { + "dark": { + "value": "rgb(229, 250, 236)", + "uuid": "8efbb45d-4d6d-423e-8a3d-cb7117f9fbf8" + }, + "light": { + "value": "rgb(0, 33, 25)", + "uuid": "f853b643-e7bf-4af6-81f4-bc6de9007f3c" + } + } + }, + "green-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "ce6f19ce-d3fe-4bad-a4fc-7863ea9fd186" + }, + "light": { + "value": "rgb(0, 15, 12)", + "uuid": "2b4c3a1a-8ea4-4149-862d-801b559e4f65" + } + } + }, "seafoam-100": { "sets": { "light": { - "value": "rgb(206, 247, 243)", + "value": "rgb(226, 252, 253)", "uuid": "2330ab05-6153-47a1-ab56-18f3cb1c579f" }, "dark": { - "value": "rgb(18, 43, 42)", + "value": "rgb(0, 29, 32)", "uuid": "080b56a3-6f95-422a-9f4b-d850966c4984" }, "wireframe": { @@ -1842,11 +2066,11 @@ "seafoam-200": { "sets": { "light": { - "value": "rgb(170, 241, 234)", + "value": "rgb(202, 248, 250)", "uuid": "870298fd-4e1f-4649-bfbc-5ad5b768c2e3" }, "dark": { - "value": "rgb(19, 57, 55)", + "value": "rgb(0, 37, 40)", "uuid": "2876bdd7-af97-4cd6-89cc-bdb9c2110946" }, "wireframe": { @@ -1858,11 +2082,11 @@ "seafoam-300": { "sets": { "light": { - "value": "rgb(140, 233, 226)", + "value": "rgb(138, 239, 242)", "uuid": "1fe5483a-95bd-4597-802a-9e84c1486dbe" }, "dark": { - "value": "rgb(16, 73, 70)", + "value": "rgb(0, 50, 53)", "uuid": "d90b7496-0f54-41ce-96eb-c973457661ae" }, "wireframe": { @@ -1874,11 +2098,11 @@ "seafoam-400": { "sets": { "light": { - "value": "rgb(101, 218, 210)", + "value": "rgb(86, 226, 231)", "uuid": "e2b4d354-9a1d-4153-b988-4fc24c117252" }, "dark": { - "value": "rgb(3, 91, 88)", + "value": "rgb(0, 62, 66)", "uuid": "ec603c2c-b2b2-4769-a889-ba7c91a458eb" }, "wireframe": { @@ -1890,11 +2114,11 @@ "seafoam-500": { "sets": { "light": { - "value": "rgb(63, 201, 193)", + "value": "rgb(60, 206, 211)", "uuid": "a1da1af7-df37-455d-8d27-2920b36f209f" }, "dark": { - "value": "rgb(0, 108, 104)", + "value": "rgb(4, 77, 81)", "uuid": "c24b866c-5ac0-49de-857b-48c655fa9990" }, "wireframe": { @@ -1906,11 +2130,11 @@ "seafoam-600": { "sets": { "light": { - "value": "rgb(15, 181, 174)", + "value": "rgb(45, 185, 190)", "uuid": "cfd8a8b3-d567-4eb4-9b6f-5db352607dab" }, "dark": { - "value": "rgb(0, 127, 121)", + "value": "rgb(8, 91, 96)", "uuid": "73b58f7e-008b-44ae-8969-19d981d444d6" }, "wireframe": { @@ -1922,11 +2146,11 @@ "seafoam-700": { "sets": { "light": { - "value": "rgb(0, 161, 154)", + "value": "rgb(35, 164, 169)", "uuid": "a036b309-95ec-45e6-b035-f30f0f922422" }, "dark": { - "value": "rgb(0, 146, 140)", + "value": "rgb(13, 108, 113)", "uuid": "0b8528e6-ceea-47a5-9727-24e97d7bc138" }, "wireframe": { @@ -1938,11 +2162,11 @@ "seafoam-800": { "sets": { "light": { - "value": "rgb(0, 140, 135)", + "value": "rgb(27, 146, 151)", "uuid": "ac4f12a3-a3f0-4053-87f4-5fc42b08cf23" }, "dark": { - "value": "rgb(0, 165, 159)", + "value": "rgb(19, 124, 129)", "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" }, "wireframe": { @@ -1954,11 +2178,11 @@ "seafoam-900": { "sets": { "light": { - "value": "rgb(0, 119, 114)", + "value": "rgb(20, 126, 131)", "uuid": "74cb44f8-8ab0-4a36-9920-0735756e0ddc" }, "dark": { - "value": "rgb(26, 185, 178)", + "value": "rgb(26, 143, 148)", "uuid": "dca23a18-2b19-48bf-9894-2f0948f6c05e" }, "wireframe": { @@ -1970,11 +2194,11 @@ "seafoam-1000": { "sets": { "light": { - "value": "rgb(0, 99, 95)", + "value": "rgb(13, 106, 111)", "uuid": "84e4e598-4fd7-445a-a6cf-2884c0aae4d0" }, "dark": { - "value": "rgb(66, 202, 195)", + "value": "rgb(36, 166, 171)", "uuid": "c416b5c5-0506-419f-88ca-f722f12a9d86" }, "wireframe": { @@ -1986,11 +2210,11 @@ "seafoam-1100": { "sets": { "light": { - "value": "rgb(12, 79, 76)", + "value": "rgb(8, 90, 95)", "uuid": "d1bb038a-f83b-4e97-b95f-b215c7bc2916" }, "dark": { - "value": "rgb(102, 218, 211)", + "value": "rgb(46, 186, 192)", "uuid": "4a853bfc-f1b0-4e39-8cd8-da0350c99cd5" }, "wireframe": { @@ -2002,11 +2226,11 @@ "seafoam-1200": { "sets": { "light": { - "value": "rgb(18, 60, 58)", + "value": "rgb(3, 74, 79)", "uuid": "0eab9416-b6f5-4d26-bde6-9b8a840f7681" }, "dark": { - "value": "rgb(139, 232, 225)", + "value": "rgb(62, 209, 214)", "uuid": "8e4c65b7-d819-4ffd-9398-71e9d294ba63" }, "wireframe": { @@ -2018,11 +2242,11 @@ "seafoam-1300": { "sets": { "light": { - "value": "rgb(18, 44, 43)", + "value": "rgb(0, 59, 63)", "uuid": "a88e0c6e-dfd5-4a43-8d43-97fa10101165" }, "dark": { - "value": "rgb(179, 242, 237)", + "value": "rgb(94, 229, 234)", "uuid": "ef35ace8-870d-42e0-8ce6-2df61415431f" }, "wireframe": { @@ -2034,11 +2258,11 @@ "seafoam-1400": { "sets": { "light": { - "value": "rgb(15, 31, 30)", + "value": "rgb(0, 45, 48)", "uuid": "52c9177c-bc81-41b1-ba6d-9b075fbe8541" }, "dark": { - "value": "rgb(215, 248, 244)", + "value": "rgb(170, 242, 245)", "uuid": "9499384b-336c-4a41-af05-645a92ae40d4" }, "wireframe": { @@ -2047,14 +2271,38 @@ } } }, + "seafoam-1500": { + "sets": { + "dark": { + "value": "rgb(219, 251, 252)", + "uuid": "6e538a2b-05f7-41f5-af4b-89bc3039c25a" + }, + "light": { + "value": "rgb(0, 32, 35)", + "uuid": "4cbacecc-89c9-482d-b3f5-7d8f85f0a3f1" + } + } + }, + "seafoam-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "29aae26e-f4a4-4e5a-acd2-02df01f6cc90" + }, + "light": { + "value": "rgb(0, 15, 17)", + "uuid": "ebbfe9f4-5c24-46b2-983a-98570ed5ec78" + } + } + }, "cyan-100": { "sets": { "light": { - "value": "rgb(197, 248, 255)", + "value": "rgb(238, 250, 254)", "uuid": "72bef490-0c3a-4627-9341-fc6627cf3f74" }, "dark": { - "value": "rgb(0, 41, 68)", + "value": "rgb(0, 29, 39)", "uuid": "24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7" }, "wireframe": { @@ -2066,11 +2314,11 @@ "cyan-200": { "sets": { "light": { - "value": "rgb(164, 240, 255)", + "value": "rgb(217, 244, 253)", "uuid": "c2aaf729-7f39-499a-8b67-e23801073b05" }, "dark": { - "value": "rgb(0, 54, 88)", + "value": "rgb(0, 36, 49)", "uuid": "3445cf4b-2460-4692-acf2-71844d687da4" }, "wireframe": { @@ -2082,11 +2330,11 @@ "cyan-300": { "sets": { "light": { - "value": "rgb(136, 231, 250)", + "value": "rgb(181, 230, 252)", "uuid": "b54275ad-3ea6-4e69-aea2-97f488308fcc" }, "dark": { - "value": "rgb(0, 69, 108)", + "value": "rgb(0, 48, 65)", "uuid": "e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47" }, "wireframe": { @@ -2098,11 +2346,11 @@ "cyan-400": { "sets": { "light": { - "value": "rgb(96, 216, 243)", + "value": "rgb(146, 216, 255)", "uuid": "a33de292-77a9-40b7-961e-41ebfe331ad0" }, "dark": { - "value": "rgb(0, 86, 128)", + "value": "rgb(0, 60, 82)", "uuid": "94a5bd53-d69a-4063-b630-1976230d4f2d" }, "wireframe": { @@ -2114,11 +2362,11 @@ "cyan-500": { "sets": { "light": { - "value": "rgb(51, 197, 232)", + "value": "rgb(99, 196, 255)", "uuid": "f3e8ff9f-e60b-4bce-9c39-280aef6fcb08" }, "dark": { - "value": "rgb(0, 103, 147)", + "value": "rgb(0, 74, 101)", "uuid": "909baeef-fd2f-4550-89ea-fb7ac9ea2db5" }, "wireframe": { @@ -2130,11 +2378,11 @@ "cyan-600": { "sets": { "light": { - "value": "rgb(18, 176, 218)", + "value": "rgb(60, 175, 255)", "uuid": "d65f3e1d-ad9d-4fa7-ac06-37235124e999" }, "dark": { - "value": "rgb(0, 121, 167)", + "value": "rgb(0, 88, 123)", "uuid": "d753ef33-bfc0-424b-a2ac-ea87ecbee590" }, "wireframe": { @@ -2146,11 +2394,11 @@ "cyan-700": { "sets": { "light": { - "value": "rgb(1, 156, 200)", + "value": "rgb(34, 155, 239)", "uuid": "08b4548a-618d-4ab5-ae46-2a60c7936f57" }, "dark": { - "value": "rgb(0, 140, 186)", + "value": "rgb(4, 104, 147)", "uuid": "3cb348d4-14a9-43da-84c4-068cf46c8c6f" }, "wireframe": { @@ -2162,11 +2410,11 @@ "cyan-800": { "sets": { "light": { - "value": "rgb(0, 134, 180)", + "value": "rgb(21, 138, 212)", "uuid": "6dbdd00d-3b03-4eab-a77c-3a1f16d5e6ef" }, "dark": { - "value": "rgb(4, 160, 205)", + "value": "rgb(10, 118, 175)", "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" }, "wireframe": { @@ -2178,11 +2426,11 @@ "cyan-900": { "sets": { "light": { - "value": "rgb(0, 113, 159)", + "value": "rgb(11, 120, 179)", "uuid": "71769f93-467d-497a-b214-45c8753f34f5" }, "dark": { - "value": "rgb(23, 180, 221)", + "value": "rgb(19, 136, 207)", "uuid": "9c183829-4858-4908-b1ac-d89f40f2e903" }, "wireframe": { @@ -2194,11 +2442,11 @@ "cyan-1000": { "sets": { "light": { - "value": "rgb(0, 93, 137)", + "value": "rgb(4, 102, 145)", "uuid": "25c689a1-7876-44fa-8849-3a8db03a866c" }, "dark": { - "value": "rgb(57, 199, 234)", + "value": "rgb(36, 156, 242)", "uuid": "04f3d463-9118-43d5-973d-8bf94417912d" }, "wireframe": { @@ -2210,11 +2458,11 @@ "cyan-1100": { "sets": { "light": { - "value": "rgb(0, 74, 115)", + "value": "rgb(0, 87, 121)", "uuid": "57ca59a9-1677-4813-9c0d-28267233ba35" }, "dark": { - "value": "rgb(96, 216, 243)", + "value": "rgb(63, 177, 255)", "uuid": "62a7ebff-a49b-4e7a-981f-692a506b4146" }, "wireframe": { @@ -2226,11 +2474,11 @@ "cyan-1200": { "sets": { "light": { - "value": "rgb(0, 57, 93)", + "value": "rgb(0, 71, 98)", "uuid": "d6ba8ac5-09d4-44e2-8ade-216c626eb154" }, "dark": { - "value": "rgb(134, 230, 250)", + "value": "rgb(107, 199, 255)", "uuid": "36a2af99-eef4-476b-a3b8-58eade0931b7" }, "wireframe": { @@ -2242,11 +2490,11 @@ "cyan-1300": { "sets": { "light": { - "value": "rgb(0, 42, 70)", + "value": "rgb(0, 57, 78)", "uuid": "1b179218-9e53-457d-977b-902509ef28aa" }, "dark": { - "value": "rgb(170, 242, 255)", + "value": "rgb(152, 219, 255)", "uuid": "5f3df12b-1330-4482-ad34-c623bd36253c" }, "wireframe": { @@ -2258,11 +2506,11 @@ "cyan-1400": { "sets": { "light": { - "value": "rgb(0, 30, 51)", + "value": "rgb(0, 43, 59)", "uuid": "3eac8807-136f-4687-8403-203fb49fbd74" }, "dark": { - "value": "rgb(206, 249, 255)", + "value": "rgb(195, 236, 252)", "uuid": "fe63b8a3-ebb9-45fe-99c2-e246b53e06a6" }, "wireframe": { @@ -2271,14 +2519,38 @@ } } }, + "cyan-1500": { + "sets": { + "dark": { + "value": "rgb(230, 248, 253)", + "uuid": "ce687c28-38ce-4fbe-8181-060e566b4196" + }, + "light": { + "value": "rgb(0, 31, 43)", + "uuid": "4d029c4c-4658-4207-b43c-d69b138b25a3" + } + } + }, + "cyan-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "291e6a5c-41b3-4bf1-ad10-38d427e80e48" + }, + "light": { + "value": "rgb(0, 14, 20)", + "uuid": "e6cd6257-d8de-428e-8ebf-c1c812031e5e" + } + } + }, "indigo-100": { "sets": { "light": { - "value": "rgb(237, 238, 255)", + "value": "rgb(247, 248, 255)", "uuid": "04cf76e0-1e7c-479a-9411-0dcad2f6ab25" }, "dark": { - "value": "rgb(26, 29, 97)", + "value": "rgb(30, 0, 93)", "uuid": "e60cb247-c265-4009-9f0a-bcbbbb801dd4" }, "wireframe": { @@ -2290,11 +2562,11 @@ "indigo-200": { "sets": { "light": { - "value": "rgb(224, 226, 255)", + "value": "rgb(235, 238, 255)", "uuid": "ab568cfd-20e5-4e20-a3bf-32292297df8f" }, "dark": { - "value": "rgb(35, 39, 125)", + "value": "rgb(35, 0, 110)", "uuid": "56c709dd-b41e-478a-8098-21014e3f9ec8" }, "wireframe": { @@ -2306,11 +2578,11 @@ "indigo-300": { "sets": { "light": { - "value": "rgb(211, 213, 255)", + "value": "rgb(214, 221, 255)", "uuid": "a220a225-3bb9-446c-8ee3-732a96a150d2" }, "dark": { - "value": "rgb(46, 50, 158)", + "value": "rgb(47, 1, 141)", "uuid": "716f244e-67c5-4566-b824-ed7f2192b585" }, "wireframe": { @@ -2322,11 +2594,11 @@ "indigo-400": { "sets": { "light": { - "value": "rgb(193, 196, 255)", + "value": "rgb(195, 204, 255)", "uuid": "891799a7-b51d-4769-abe3-62dd0da6e190" }, "dark": { - "value": "rgb(58, 63, 189)", + "value": "rgb(58, 8, 165)", "uuid": "c256e06e-07bc-4dcd-9239-48841916c93b" }, "wireframe": { @@ -2338,11 +2610,11 @@ "indigo-500": { "sets": { "light": { - "value": "rgb(172, 175, 255)", + "value": "rgb(171, 182, 255)", "uuid": "2751b8ae-f347-4a57-938d-98a5ee86071c" }, "dark": { - "value": "rgb(73, 78, 216)", + "value": "rgb(72, 21, 195)", "uuid": "1ea0564b-6e88-456e-a796-4620d57b8771" }, "wireframe": { @@ -2354,11 +2626,11 @@ "indigo-600": { "sets": { "light": { - "value": "rgb(149, 153, 255)", + "value": "rgb(152, 160, 255)", "uuid": "2d69bbe7-37c1-4302-9fee-39733bb13a86" }, "dark": { - "value": "rgb(90, 96, 235)", + "value": "rgb(85, 38, 220)", "uuid": "df590853-ce16-4ddf-bbe9-a912695eae17" }, "wireframe": { @@ -2370,11 +2642,11 @@ "indigo-700": { "sets": { "light": { - "value": "rgb(126, 132, 252)", + "value": "rgb(136, 136, 254)", "uuid": "3c57f9f6-e837-450b-9443-a702caa049a4" }, "dark": { - "value": "rgb(110, 115, 246)", + "value": "rgb(100, 58, 240)", "uuid": "0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16" }, "wireframe": { @@ -2386,11 +2658,11 @@ "indigo-800": { "sets": { "light": { - "value": "rgb(104, 109, 244)", + "value": "rgb(125, 112, 254)", "uuid": "f5a317ea-25f2-4193-9305-f20c231e786e" }, "dark": { - "value": "rgb(132, 136, 253)", + "value": "rgb(112, 81, 249)", "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" }, "wireframe": { @@ -2402,11 +2674,11 @@ "indigo-900": { "sets": { "light": { - "value": "rgb(82, 88, 228)", + "value": "rgb(113, 84, 250)", "uuid": "87b65e85-d767-47bb-8af5-01b85282c663" }, "dark": { - "value": "rgb(153, 157, 255)", + "value": "rgb(123, 109, 253)", "uuid": "5cb7ff5e-ec53-4df8-b59d-a1419190a6cf" }, "wireframe": { @@ -2418,11 +2690,11 @@ "indigo-1000": { "sets": { "light": { - "value": "rgb(64, 70, 202)", + "value": "rgb(99, 56, 238)", "uuid": "9d1a9aa9-a7b3-4254-9e55-a992784bb7b5" }, "dark": { - "value": "rgb(174, 177, 255)", + "value": "rgb(137, 137, 254)", "uuid": "0bf6170c-50d7-4600-96fe-2d1af93f173a" }, "wireframe": { @@ -2434,11 +2706,11 @@ "indigo-1100": { "sets": { "light": { - "value": "rgb(50, 54, 168)", + "value": "rgb(84, 36, 219)", "uuid": "2f59721c-2922-4ad3-b50a-37327d592050" }, "dark": { - "value": "rgb(194, 196, 255)", + "value": "rgb(153, 161, 255)", "uuid": "c85ea1d9-e28d-46c5-abd0-c053858770e0" }, "wireframe": { @@ -2450,11 +2722,11 @@ "indigo-1200": { "sets": { "light": { - "value": "rgb(38, 41, 134)", + "value": "rgb(69, 19, 191)", "uuid": "4aaedaea-2d42-4593-84e4-18a12ce5efc2" }, "dark": { - "value": "rgb(212, 213, 255)", + "value": "rgb(176, 186, 255)", "uuid": "91f9622a-03b4-47b0-b380-5f6d64c13b5d" }, "wireframe": { @@ -2466,11 +2738,11 @@ "indigo-1300": { "sets": { "light": { - "value": "rgb(27, 30, 100)", + "value": "rgb(55, 6, 160)", "uuid": "f8300596-def6-4640-8d9a-c08fea25bfda" }, "dark": { - "value": "rgb(227, 228, 255)", + "value": "rgb(199, 208, 255)", "uuid": "c0bfd081-7859-4ed5-aa4c-c1f547dab8f3" }, "wireframe": { @@ -2482,11 +2754,11 @@ "indigo-1400": { "sets": { "light": { - "value": "rgb(20, 22, 72)", + "value": "rgb(42, 0, 129)", "uuid": "4e8c10e6-0c7e-4f48-91a0-ff460915725d" }, "dark": { - "value": "rgb(240, 240, 255)", + "value": "rgb(223, 228, 255)", "uuid": "080f9ea4-1d87-4691-adb7-3875a7708555" }, "wireframe": { @@ -2495,14 +2767,38 @@ } } }, + "indigo-1500": { + "sets": { + "dark": { + "value": "rgb(243, 244, 255)", + "uuid": "498d2f9c-7304-406d-a3f8-802a2cbd3502" + }, + "light": { + "value": "rgb(31, 0, 98)", + "uuid": "2653368d-d90b-4a5a-97f3-8380fe2e7551" + } + } + }, + "indigo-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "c498c300-86e8-4c71-bd3e-5a344324b9c1" + }, + "light": { + "value": "rgb(17, 0, 54)", + "uuid": "6a0ad8e2-b574-4148-b151-e0607c4d5317" + } + } + }, "purple-100": { "sets": { "light": { - "value": "rgb(246, 235, 255)", + "value": "rgb(251, 247, 254)", "uuid": "e80b112b-a26d-4392-a431-844b33d8bac8" }, "dark": { - "value": "rgb(50, 16, 104)", + "value": "rgb(41, 0, 79)", "uuid": "ffc5aa7a-c339-4583-a586-3e8b1329d16d" }, "wireframe": { @@ -2514,11 +2810,11 @@ "purple-200": { "sets": { "light": { - "value": "rgb(238, 221, 255)", + "value": "rgb(245, 237, 252)", "uuid": "65816c3d-544e-4bbd-bf0e-c0981e08a5cb" }, "dark": { - "value": "rgb(67, 13, 140)", + "value": "rgb(50, 0, 96)", "uuid": "2d67627b-372c-46af-b015-6c95bd027664" }, "wireframe": { @@ -2530,11 +2826,11 @@ "purple-300": { "sets": { "light": { - "value": "rgb(230, 208, 255)", + "value": "rgb(234, 216, 249)", "uuid": "bea266d7-8f53-43b7-b7df-0daa5b7e6f89" }, "dark": { - "value": "rgb(86, 16, 173)", + "value": "rgb(64, 0, 122)", "uuid": "be628028-f41d-4ace-abf3-f7f38ecb2e01" }, "wireframe": { @@ -2546,11 +2842,11 @@ "purple-400": { "sets": { "light": { - "value": "rgb(219, 187, 254)", + "value": "rgb(223, 196, 247)", "uuid": "b68c2d3d-02e6-4130-9904-d2d32e67d115" }, "dark": { - "value": "rgb(106, 29, 200)", + "value": "rgb(78, 0, 151)", "uuid": "474fed30-921a-4795-8999-2310521c64c5" }, "wireframe": { @@ -2562,11 +2858,11 @@ "purple-500": { "sets": { "light": { - "value": "rgb(204, 164, 253)", + "value": "rgb(210, 171, 243)", "uuid": "9625edd4-fcdd-406a-9a66-068dcfeb3bd9" }, "dark": { - "value": "rgb(126, 49, 222)", + "value": "rgb(96, 0, 182)", "uuid": "b912e8ba-ed77-4179-9b80-7448f9e37193" }, "wireframe": { @@ -2578,11 +2874,11 @@ "purple-600": { "sets": { "light": { - "value": "rgb(189, 139, 252)", + "value": "rgb(196, 147, 240)", "uuid": "bfd24d4f-9100-4937-a45d-7614ce0ece74" }, "dark": { - "value": "rgb(145, 70, 236)", + "value": "rgb(116, 15, 205)", "uuid": "05638159-aaf7-4f3e-849e-a46e80cd9ee6" }, "wireframe": { @@ -2594,11 +2890,11 @@ "purple-700": { "sets": { "light": { - "value": "rgb(174, 114, 249)", + "value": "rgb(183, 122, 236)", "uuid": "2f218111-4cef-432b-8d69-06492e7c40c1" }, "dark": { - "value": "rgb(162, 94, 246)", + "value": "rgb(136, 42, 218)", "uuid": "fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c" }, "wireframe": { @@ -2610,11 +2906,11 @@ "purple-800": { "sets": { "light": { - "value": "rgb(157, 87, 244)", + "value": "rgb(169, 98, 232)", "uuid": "a6205c53-9e63-475c-85f4-bdd5963e1eb2" }, "dark": { - "value": "rgb(178, 119, 250)", + "value": "rgb(151, 68, 225)", "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" }, "wireframe": { @@ -2626,11 +2922,11 @@ "purple-900": { "sets": { "light": { - "value": "rgb(137, 61, 231)", + "value": "rgb(153, 71, 226)", "uuid": "b72cb9ff-2b75-487c-914f-1c10bff76f75" }, "dark": { - "value": "rgb(192, 143, 252)", + "value": "rgb(167, 95, 231)", "uuid": "12d86845-fd54-4d30-aac8-bb9451560ba5" }, "wireframe": { @@ -2642,11 +2938,11 @@ "purple-1000": { "sets": { "light": { - "value": "rgb(115, 38, 211)", + "value": "rgb(134, 40, 217)", "uuid": "163a3d87-cba9-48de-8384-c2820cf03984" }, "dark": { - "value": "rgb(206, 166, 253)", + "value": "rgb(183, 123, 236)", "uuid": "e527a3bd-3543-4b40-8a9c-eb465695bdb9" }, "wireframe": { @@ -2658,11 +2954,11 @@ "purple-1100": { "sets": { "light": { - "value": "rgb(93, 19, 183)", + "value": "rgb(115, 13, 204)", "uuid": "991db22a-d0c2-4f1a-a45b-95aaf13d747d" }, "dark": { - "value": "rgb(219, 188, 254)", + "value": "rgb(197, 149, 240)", "uuid": "18265c0a-e466-4575-a364-3dfda9e71bd4" }, "wireframe": { @@ -2674,11 +2970,11 @@ "purple-1200": { "sets": { "light": { - "value": "rgb(71, 12, 148)", + "value": "rgb(93, 0, 177)", "uuid": "b71041e1-ca59-4d0c-87e4-2a8e8821b3ab" }, "dark": { - "value": "rgb(230, 207, 255)", + "value": "rgb(212, 176, 244)", "uuid": "ae071768-dcdd-4e30-8f72-d066abac97af" }, "wireframe": { @@ -2690,11 +2986,11 @@ "purple-1300": { "sets": { "light": { - "value": "rgb(51, 16, 106)", + "value": "rgb(75, 0, 144)", "uuid": "7a524851-d57b-40f7-930a-f67739c0e138" }, "dark": { - "value": "rgb(240, 224, 255)", + "value": "rgb(225, 201, 247)", "uuid": "fbaaff02-da93-4f45-830a-5fc449a58f0b" }, "wireframe": { @@ -2706,11 +3002,11 @@ "purple-1400": { "sets": { "light": { - "value": "rgb(35, 15, 73)", + "value": "rgb(59, 0, 111)", "uuid": "e1609d80-a6ba-46b6-bd52-83f32fd009ad" }, "dark": { - "value": "rgb(248, 237, 255)", + "value": "rgb(238, 224, 250)", "uuid": "9ae063c9-5817-45b4-9f57-4b2196c845b9" }, "wireframe": { @@ -2719,14 +3015,38 @@ } } }, + "purple-1500": { + "sets": { + "dark": { + "value": "rgb(248, 243, 253)", + "uuid": "d96c8fa3-5872-4bd2-81a3-0109ddf0bf18" + }, + "light": { + "value": "rgb(44, 0, 84)", + "uuid": "f43e7a56-8663-41a9-b688-5b6471e3fcff" + } + } + }, + "purple-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "0f10b720-c0f8-46db-9205-fdde265d05f7" + }, + "light": { + "value": "rgb(23, 0, 45)", + "uuid": "8adc4493-0971-4b9c-bff7-c5ce8100fc43" + } + } + }, "fuchsia-100": { "sets": { "light": { - "value": "rgb(255, 233, 252)", + "value": "rgb(255, 245, 255)", "uuid": "2a8743fc-d3b3-444a-b3f1-8ad816945941" }, "dark": { - "value": "rgb(70, 14, 68)", + "value": "rgb(54, 0, 53)", "uuid": "3a434405-c4b0-40ef-b383-7cb9a9b60cab" }, "wireframe": { @@ -2738,11 +3058,11 @@ "fuchsia-200": { "sets": { "light": { - "value": "rgb(255, 218, 250)", + "value": "rgb(255, 232, 254)", "uuid": "a304f27a-7a17-4c12-88d1-07171fa3ca75" }, "dark": { - "value": "rgb(93, 9, 92)", + "value": "rgb(65, 0, 64)", "uuid": "779ec441-475d-41de-b207-3e139c7c3168" }, "wireframe": { @@ -2754,11 +3074,11 @@ "fuchsia-300": { "sets": { "light": { - "value": "rgb(254, 199, 248)", + "value": "rgb(255, 208, 254)", "uuid": "723a23a1-0bb0-4c11-89cf-0eca2a421867" }, "dark": { - "value": "rgb(120, 0, 120)", + "value": "rgb(84, 0, 82)", "uuid": "5fa7110f-0c33-4139-8277-eff40921939e" }, "wireframe": { @@ -2770,11 +3090,11 @@ "fuchsia-400": { "sets": { "light": { - "value": "rgb(251, 174, 246)", + "value": "rgb(255, 182, 254)", "uuid": "ce8ce579-0dca-462c-a9d3-49e451931812" }, "dark": { - "value": "rgb(146, 0, 147)", + "value": "rgb(103, 2, 99)", "uuid": "a81bfdd6-4b80-4f1a-922d-2f6e04c27e01" }, "wireframe": { @@ -2786,11 +3106,11 @@ "fuchsia-500": { "sets": { "light": { - "value": "rgb(245, 146, 243)", + "value": "rgb(255, 149, 252)", "uuid": "779bda09-25fd-4912-9aa8-8e3a5643d0cb" }, "dark": { - "value": "rgb(169, 19, 170)", + "value": "rgb(124, 11, 119)", "uuid": "7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4" }, "wireframe": { @@ -2802,11 +3122,11 @@ "fuchsia-600": { "sets": { "light": { - "value": "rgb(237, 116, 237)", + "value": "rgb(255, 109, 249)", "uuid": "bd2db3f8-5eae-4fcb-a1f6-307d3b8e4139" }, "dark": { - "value": "rgb(191, 43, 191)", + "value": "rgb(145, 22, 138)", "uuid": "0fb76488-9965-4cf9-878f-ceed7fc2be43" }, "wireframe": { @@ -2818,11 +3138,11 @@ "fuchsia-700": { "sets": { "light": { - "value": "rgb(224, 85, 226)", + "value": "rgb(243, 75, 231)", "uuid": "42525649-03ba-44f7-bc8c-9a824b898920" }, "dark": { - "value": "rgb(211, 65, 213)", + "value": "rgb(168, 35, 158)", "uuid": "5f971453-aa30-4c1f-8cbc-be45ff042fcd" }, "wireframe": { @@ -2834,11 +3154,11 @@ "fuchsia-800": { "sets": { "light": { - "value": "rgb(205, 58, 206)", + "value": "rgb(217, 66, 204)", "uuid": "3b2867ea-80f8-44ca-9394-7bb17e8c5a22" }, "dark": { - "value": "rgb(228, 91, 229)", + "value": "rgb(189, 48, 177)", "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" }, "wireframe": { @@ -2850,11 +3170,11 @@ "fuchsia-900": { "sets": { "light": { - "value": "rgb(182, 34, 183)", + "value": "rgb(192, 50, 180)", "uuid": "5fa3362b-01ee-4861-9a02-6af6da804f61" }, "dark": { - "value": "rgb(239, 120, 238)", + "value": "rgb(214, 64, 201)", "uuid": "3c6d42c9-4cba-4373-a61c-c8617c509f92" }, "wireframe": { @@ -2866,11 +3186,11 @@ "fuchsia-1000": { "sets": { "light": { - "value": "rgb(157, 3, 158)", + "value": "rgb(166, 34, 157)", "uuid": "fa79840c-fe56-4f21-b9c5-f1e24f89e031" }, "dark": { - "value": "rgb(246, 149, 243)", + "value": "rgb(245, 76, 234)", "uuid": "a13d5f15-e4cc-4f7c-928f-aaccbf0d590e" }, "wireframe": { @@ -2882,11 +3202,11 @@ "fuchsia-1100": { "sets": { "light": { - "value": "rgb(128, 0, 129)", + "value": "rgb(144, 21, 137)", "uuid": "44aeb8b3-dd63-43a5-adb6-67cca83ca4c5" }, "dark": { - "value": "rgb(251, 175, 246)", + "value": "rgb(255, 112, 249)", "uuid": "0a4eb3af-d067-4d9f-af91-66c676e49e26" }, "wireframe": { @@ -2898,11 +3218,11 @@ "fuchsia-1200": { "sets": { "light": { - "value": "rgb(100, 6, 100)", + "value": "rgb(120, 9, 116)", "uuid": "fc66406d-0e4c-4f82-9fa6-aec444f04070" }, "dark": { - "value": "rgb(254, 199, 248)", + "value": "rgb(255, 154, 253)", "uuid": "0d93ff9f-63e8-4caf-9e7b-714e56d968d4" }, "wireframe": { @@ -2914,11 +3234,11 @@ "fuchsia-1300": { "sets": { "light": { - "value": "rgb(71, 14, 70)", + "value": "rgb(99, 1, 96)", "uuid": "00cfb450-b2b1-47ea-aaf2-221827cca75d" }, "dark": { - "value": "rgb(255, 220, 250)", + "value": "rgb(255, 188, 254)", "uuid": "abd44b32-b837-4e11-95c7-4ba1c34db44b" }, "wireframe": { @@ -2930,11 +3250,11 @@ "fuchsia-1400": { "sets": { "light": { - "value": "rgb(50, 13, 49)", + "value": "rgb(77, 0, 75)", "uuid": "e5fc57ed-6d37-4496-a89c-db93104cb333" }, "dark": { - "value": "rgb(255, 235, 252)", + "value": "rgb(255, 218, 254)", "uuid": "7c819391-d74c-4326-ae0d-fe3534eb44e3" }, "wireframe": { @@ -2943,14 +3263,38 @@ } } }, + "fuchsia-1500": { + "sets": { + "dark": { + "value": "rgb(255, 240, 255)", + "uuid": "ff510e34-7c7c-4795-a224-b1e1c5cc25e0" + }, + "light": { + "value": "rgb(57, 0, 56)", + "uuid": "afdfcd22-19fd-4306-a069-c8f9cd0d4f2d" + } + } + }, + "fuchsia-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "c06ab95f-6471-4840-99cc-710851d25de4" + }, + "light": { + "value": "rgb(31, 0, 30)", + "uuid": "38117e2a-efd1-4edd-8284-6fb0bc7482cc" + } + } + }, "magenta-100": { "sets": { "light": { - "value": "rgb(255, 234, 241)", + "value": "rgb(255, 245, 248)", "uuid": "06219a66-5150-42ab-a9fd-c743058728af" }, "dark": { - "value": "rgb(83, 3, 41)", + "value": "rgb(61, 0, 21)", "uuid": "9149371a-1978-4136-a89c-8895edd35e7d" }, "wireframe": { @@ -2962,11 +3306,11 @@ "magenta-200": { "sets": { "light": { - "value": "rgb(255, 220, 232)", + "value": "rgb(255, 235, 242)", "uuid": "0a9c01d3-0659-4884-a0e8-7032deeee766" }, "dark": { - "value": "rgb(106, 0, 52)", + "value": "rgb(73, 0, 25)", "uuid": "f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8" }, "wireframe": { @@ -2978,11 +3322,11 @@ "magenta-300": { "sets": { "light": { - "value": "rgb(255, 202, 221)", + "value": "rgb(255, 211, 226)", "uuid": "bfe2436d-c026-4641-8cd7-a9824f6948dd" }, "dark": { - "value": "rgb(133, 0, 65)", + "value": "rgb(94, 0, 33)", "uuid": "673ab9b4-e296-4472-b0b5-15adf9f1f762" }, "wireframe": { @@ -2994,11 +3338,11 @@ "magenta-400": { "sets": { "light": { - "value": "rgb(255, 178, 206)", + "value": "rgb(255, 189, 212)", "uuid": "4419b5e5-344d-4905-b39d-8935bedf7d6c" }, "dark": { - "value": "rgb(161, 0, 78)", + "value": "rgb(115, 0, 41)", "uuid": "60560de2-28e6-44b4-bcff-f357fe13a4a7" }, "wireframe": { @@ -3010,11 +3354,11 @@ "magenta-500": { "sets": { "light": { - "value": "rgb(255, 149, 189)", + "value": "rgb(255, 158, 192)", "uuid": "d7c3e696-4ec4-497f-89c5-bad17cb4699a" }, "dark": { - "value": "rgb(186, 22, 93)", + "value": "rgb(141, 1, 52)", "uuid": "830123a6-0e42-4c4f-9b20-2f4204d37af8" }, "wireframe": { @@ -3026,11 +3370,11 @@ "magenta-600": { "sets": { "light": { - "value": "rgb(250, 119, 170)", + "value": "rgb(255, 126, 172)", "uuid": "329f4efa-6f0b-4bc1-95f7-1121bda7f421" }, "dark": { - "value": "rgb(209, 43, 114)", + "value": "rgb(165, 5, 63)", "uuid": "e6b14a1d-e26e-41c4-b386-7fb3f95b8c93" }, "wireframe": { @@ -3042,11 +3386,11 @@ "magenta-700": { "sets": { "light": { - "value": "rgb(239, 90, 152)", + "value": "rgb(255, 86, 145)", "uuid": "fcacf0f0-c919-4705-b4c2-6edbe2796fb0" }, "dark": { - "value": "rgb(227, 69, 137)", + "value": "rgb(192, 10, 74)", "uuid": "11055a6b-7e81-4b59-9feb-8b0b6352be07" }, "wireframe": { @@ -3058,11 +3402,11 @@ "magenta-800": { "sets": { "light": { - "value": "rgb(222, 61, 130)", + "value": "rgb(249, 41, 111)", "uuid": "21e774f7-89d8-438d-9fc4-aa93261022d1" }, "dark": { - "value": "rgb(241, 97, 156)", + "value": "rgb(219, 18, 87)", "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" }, "wireframe": { @@ -3074,11 +3418,11 @@ "magenta-900": { "sets": { "light": { - "value": "rgb(200, 34, 105)", + "value": "rgb(222, 20, 89)", "uuid": "0166ed9b-52e7-447a-b45d-de29ba85eb0d" }, "dark": { - "value": "rgb(252, 124, 173)", + "value": "rgb(247, 38, 108)", "uuid": "fa5e523e-7ee3-46d0-971f-4ee95c7222b8" }, "wireframe": { @@ -3090,11 +3434,11 @@ "magenta-1000": { "sets": { "light": { - "value": "rgb(173, 9, 85)", + "value": "rgb(190, 9, 73)", "uuid": "98125f18-a061-4aa7-a0c5-a746d635c4c5" }, "dark": { - "value": "rgb(255, 152, 191)", + "value": "rgb(255, 89, 147)", "uuid": "bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154" }, "wireframe": { @@ -3106,11 +3450,11 @@ "magenta-1100": { "sets": { "light": { - "value": "rgb(142, 0, 69)", + "value": "rgb(163, 5, 62)", "uuid": "29d203d7-7c2c-4f36-a5f3-d84fab6be9f1" }, "dark": { - "value": "rgb(255, 179, 207)", + "value": "rgb(255, 128, 173)", "uuid": "548a74eb-4401-44f4-85b4-921287d84ac9" }, "wireframe": { @@ -3122,11 +3466,11 @@ "magenta-1200": { "sets": { "light": { - "value": "rgb(112, 0, 55)", + "value": "rgb(136, 0, 51)", "uuid": "2a9f4ecf-5678-4345-973a-da1e066eaf10" }, "dark": { - "value": "rgb(255, 202, 221)", + "value": "rgb(255, 163, 196)", "uuid": "9c634688-1ad5-438b-bd44-a92c64ef9934" }, "wireframe": { @@ -3138,11 +3482,11 @@ "magenta-1300": { "sets": { "light": { - "value": "rgb(84, 3, 42)", + "value": "rgb(111, 0, 40)", "uuid": "0be3f108-028b-4fdd-9a98-8bb24deec2d8" }, "dark": { - "value": "rgb(255, 221, 233)", + "value": "rgb(255, 193, 215)", "uuid": "6c441ca7-0294-462f-ac18-7b28ff20d7ff" }, "wireframe": { @@ -3154,11 +3498,11 @@ "magenta-1400": { "sets": { "light": { - "value": "rgb(60, 6, 29)", + "value": "rgb(86, 0, 30)", "uuid": "40d9a0f7-0085-4001-a22e-3c22d3887846" }, "dark": { - "value": "rgb(255, 236, 243)", + "value": "rgb(255, 220, 233)", "uuid": "15f36ded-01af-4c5d-8b11-45523e7d908e" }, "wireframe": { @@ -3166,5 +3510,29 @@ "uuid": "b6dd1b22-5f8f-46d8-924e-4ce02ad5a99f" } } + }, + "magenta-1500": { + "sets": { + "dark": { + "value": "rgb(255, 241, 246)", + "uuid": "d2814529-9c64-47fd-a317-8669d565cf67" + }, + "light": { + "value": "rgb(64, 0, 22)", + "uuid": "70dd220b-46cd-4975-ad8b-5ca31f7c33dc" + } + } + }, + "magenta-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "c24954cd-f17c-47b4-8a3e-8cb019a3e330" + }, + "light": { + "value": "rgb(35, 0, 12)", + "uuid": "fd25d1ee-438b-49a3-93d8-1d59b2a06f72" + } + } } } diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index adbe4a62..00901778 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -55,6 +55,14 @@ "value": "{blue-1400}", "uuid": "06585cf4-a924-49b2-b6c8-f0e80b57c576" }, + "accent-color-1500": { + "value": "{blue-1500}", + "uuid": "c43d9991-8929-4b1c-8631-670eef6bde83" + }, + "accent-color-1600": { + "value": "{blue-1600}", + "uuid": "4b70c929-f48d-403d-9607-5963203433dc" + }, "informative-color-100": { "value": "{blue-100}", "uuid": "b9fc8b82-275a-49fe-98d7-95f136b48772" @@ -111,6 +119,14 @@ "value": "{blue-1400}", "uuid": "b178b13b-93ee-422c-af98-3bf89105754b" }, + "informative-color-1500": { + "value": "{blue-1500}", + "uuid": "beeee44c-dc6b-4892-949e-67f069fc4a94" + }, + "informative-color-1600": { + "value": "{blue-1600}", + "uuid": "68aa069d-d8a6-413a-b330-0ec6af905e6d" + }, "negative-color-100": { "value": "{red-100}", "uuid": "c37f795e-e338-4220-b0ab-5cf899f114c0" @@ -167,6 +183,14 @@ "value": "{red-1400}", "uuid": "58824d04-e2c0-4f0c-a3d7-9b88a01bf28d" }, + "negative-color-1500": { + "value": "{red-1500}", + "uuid": "b4c1f747-e665-43bb-a1a9-1bf9f252471d" + }, + "negative-color-1600": { + "value": "{red-1600}", + "uuid": "62beb7ee-c347-4cd7-a84b-40c84fcbc135" + }, "notice-color-100": { "value": "{orange-100}", "uuid": "d0382c45-0cf7-4c3b-89fb-3536459cbc31" @@ -223,6 +247,14 @@ "value": "{orange-1400}", "uuid": "4eccc44a-1cd5-4d9e-8627-18f7a363d3c8" }, + "notice-color-1500": { + "value": "{orange-1500}", + "uuid": "3da89d37-cf33-4408-b316-05bb61c25759" + }, + "notice-color-1600": { + "value": "{orange-1600}", + "uuid": "67e534f5-5421-493c-9324-624f0fd491f3" + }, "positive-color-100": { "value": "{green-100}", "uuid": "09503086-ccd2-4dfb-9bc1-6b86cf595976" @@ -278,5 +310,13 @@ "positive-color-1400": { "value": "{green-1400}", "uuid": "eb2fdab7-ea9e-42a3-a3d1-f9beec0c7b66" + }, + "positive-color-1500": { + "value": "{green-1500}", + "uuid": "2381ba55-11ff-4ef0-a770-dfd402650d5d" + }, + "positive-color-1600": { + "value": "{green-1600}", + "uuid": "de206438-991f-4580-8aa1-1488acb03a09" } } From ee158517752eacfc68bcc0f95d77643ede8daa4a Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 26 Sep 2023 12:17:42 -0600 Subject: [PATCH 012/295] chore: added changeset with token diff and design motivation --- .changeset/good-peas-mix.md | 475 ++++++++++++++++++++++++++++++++++++ 1 file changed, 475 insertions(+) create mode 100644 .changeset/good-peas-mix.md diff --git a/.changeset/good-peas-mix.md b/.changeset/good-peas-mix.md new file mode 100644 index 00000000..90577046 --- /dev/null +++ b/.changeset/good-peas-mix.md @@ -0,0 +1,475 @@ +--- +"@adobe/spectrum-tokens": major +--- + +Updated color tokens to use S2 values + +## Design Motivation + +The S2 microsite documentation discusses changes to the [grays](https://s2.spectrum.corp.adobe.com/page/grays/) and [colors](https://s2.spectrum.corp.adobe.com/page/colors/). + +## Token Diff + +
Tokens added (46): + +- `accent-color-1500` +- `accent-color-1600` +- `blue-1500` +- `blue-1600` +- `celery-1500` +- `celery-1600` +- `chartreuse-1500` +- `chartreuse-1600` +- `cyan-1500` +- `cyan-1600` +- `fuchsia-1500` +- `fuchsia-1600` +- `gray-1000` +- `gray-25` +- `green-1500` +- `green-1600` +- `indigo-1500` +- `indigo-1600` +- `informative-color-1500` +- `informative-color-1600` +- `magenta-1500` +- `magenta-1600` +- `negative-color-1500` +- `negative-color-1600` +- `notice-color-1500` +- `notice-color-1600` +- `orange-1500` +- `orange-1600` +- `positive-color-1500` +- `positive-color-1600` +- `purple-1500` +- `purple-1600` +- `red-1500` +- `red-1600` +- `seafoam-1500` +- `seafoam-1600` +- `transparent-black-1000` +- `transparent-black-25` +- `transparent-black-50` +- `transparent-black-75` +- `transparent-white-1000` +- `transparent-white-25` +- `transparent-white-50` +- `transparent-white-75` +- `yellow-1500` +- `yellow-1600` + +
+ +
Token values updated (408): + +- `accent-background-color-default` +- `accent-background-color-down` +- `accent-background-color-hover` +- `accent-background-color-key-focus` +- `accent-color-100` +- `accent-color-1000` +- `accent-color-1100` +- `accent-color-1200` +- `accent-color-1300` +- `accent-color-1400` +- `accent-color-200` +- `accent-color-300` +- `accent-color-400` +- `accent-color-500` +- `accent-color-600` +- `accent-color-700` +- `accent-color-800` +- `accent-color-900` +- `accent-content-color-default` +- `accent-content-color-down` +- `accent-content-color-hover` +- `accent-content-color-key-focus` +- `accent-content-color-selected` +- `accent-visual-color` +- `background-base-color` +- `background-layer-1-color` +- `background-layer-2-color` +- `blue-100` +- `blue-1000` +- `blue-1100` +- `blue-1200` +- `blue-1300` +- `blue-1400` +- `blue-200` +- `blue-300` +- `blue-400` +- `blue-500` +- `blue-600` +- `blue-700` +- `blue-800` +- `blue-900` +- `blue-background-color-default` +- `blue-visual-color` +- `body-color` +- `card-selection-background-color` +- `celery-100` +- `celery-1000` +- `celery-1100` +- `celery-1200` +- `celery-1300` +- `celery-1400` +- `celery-200` +- `celery-300` +- `celery-400` +- `celery-500` +- `celery-600` +- `celery-700` +- `celery-800` +- `celery-900` +- `celery-background-color-default` +- `celery-visual-color` +- `chartreuse-100` +- `chartreuse-1000` +- `chartreuse-1100` +- `chartreuse-1200` +- `chartreuse-1300` +- `chartreuse-1400` +- `chartreuse-200` +- `chartreuse-300` +- `chartreuse-400` +- `chartreuse-500` +- `chartreuse-600` +- `chartreuse-700` +- `chartreuse-800` +- `chartreuse-900` +- `chartreuse-background-color-default` +- `chartreuse-visual-color` +- `coach-mark-pagination-color` +- `code-color` +- `color-area-border-color` +- `color-loupe-drop-shadow-color` +- `color-loupe-inner-border` +- `color-slider-border-color` +- `cyan-100` +- `cyan-1000` +- `cyan-1100` +- `cyan-1200` +- `cyan-1300` +- `cyan-1400` +- `cyan-200` +- `cyan-300` +- `cyan-400` +- `cyan-500` +- `cyan-600` +- `cyan-700` +- `cyan-800` +- `cyan-900` +- `cyan-background-color-default` +- `cyan-visual-color` +- `detail-color` +- `disabled-background-color` +- `disabled-border-color` +- `disabled-content-color` +- `disabled-static-black-background-color` +- `disabled-static-black-border-color` +- `disabled-static-black-content-color` +- `disabled-static-white-background-color` +- `disabled-static-white-border-color` +- `disabled-static-white-content-color` +- `drop-zone-background-color` +- `floating-action-button-drop-shadow-color` +- `floating-action-button-shadow-color` +- `focus-indicator-color` +- `fuchsia-100` +- `fuchsia-1000` +- `fuchsia-1100` +- `fuchsia-1200` +- `fuchsia-1300` +- `fuchsia-1400` +- `fuchsia-200` +- `fuchsia-300` +- `fuchsia-400` +- `fuchsia-500` +- `fuchsia-600` +- `fuchsia-700` +- `fuchsia-800` +- `fuchsia-900` +- `fuchsia-background-color-default` +- `fuchsia-visual-color` +- `gray-100` +- `gray-200` +- `gray-300` +- `gray-400` +- `gray-50` +- `gray-500` +- `gray-600` +- `gray-700` +- `gray-75` +- `gray-800` +- `gray-900` +- `gray-background-color-default` +- `gray-visual-color` +- `green-100` +- `green-1000` +- `green-1100` +- `green-1200` +- `green-1300` +- `green-1400` +- `green-200` +- `green-300` +- `green-400` +- `green-500` +- `green-600` +- `green-700` +- `green-800` +- `green-900` +- `green-background-color-default` +- `green-visual-color` +- `heading-color` +- `icon-color-blue-primary-default` +- `icon-color-green-primary-default` +- `icon-color-inverse` +- `icon-color-primary-default` +- `icon-color-red-primary-default` +- `icon-color-yellow-primary-default` +- `indigo-100` +- `indigo-1000` +- `indigo-1100` +- `indigo-1200` +- `indigo-1300` +- `indigo-1400` +- `indigo-200` +- `indigo-300` +- `indigo-400` +- `indigo-500` +- `indigo-600` +- `indigo-700` +- `indigo-800` +- `indigo-900` +- `indigo-background-color-default` +- `indigo-visual-color` +- `informative-background-color-default` +- `informative-background-color-down` +- `informative-background-color-hover` +- `informative-background-color-key-focus` +- `informative-color-100` +- `informative-color-1000` +- `informative-color-1100` +- `informative-color-1200` +- `informative-color-1300` +- `informative-color-1400` +- `informative-color-200` +- `informative-color-300` +- `informative-color-400` +- `informative-color-500` +- `informative-color-600` +- `informative-color-700` +- `informative-color-800` +- `informative-color-900` +- `informative-visual-color` +- `magenta-100` +- `magenta-1000` +- `magenta-1100` +- `magenta-1200` +- `magenta-1300` +- `magenta-1400` +- `magenta-200` +- `magenta-300` +- `magenta-400` +- `magenta-500` +- `magenta-600` +- `magenta-700` +- `magenta-800` +- `magenta-900` +- `magenta-background-color-default` +- `magenta-visual-color` +- `negative-background-color-default` +- `negative-background-color-down` +- `negative-background-color-hover` +- `negative-background-color-key-focus` +- `negative-border-color-default` +- `negative-border-color-down` +- `negative-border-color-focus` +- `negative-border-color-focus-hover` +- `negative-border-color-hover` +- `negative-border-color-key-focus` +- `negative-color-100` +- `negative-color-1000` +- `negative-color-1100` +- `negative-color-1200` +- `negative-color-1300` +- `negative-color-1400` +- `negative-color-200` +- `negative-color-300` +- `negative-color-400` +- `negative-color-500` +- `negative-color-600` +- `negative-color-700` +- `negative-color-800` +- `negative-color-900` +- `negative-content-color-default` +- `negative-content-color-down` +- `negative-content-color-hover` +- `negative-content-color-key-focus` +- `negative-visual-color` +- `neutral-background-color-default` +- `neutral-background-color-down` +- `neutral-background-color-hover` +- `neutral-background-color-key-focus` +- `neutral-background-color-selected-default` +- `neutral-background-color-selected-down` +- `neutral-background-color-selected-hover` +- `neutral-background-color-selected-key-focus` +- `neutral-content-color-default` +- `neutral-content-color-down` +- `neutral-content-color-focus` +- `neutral-content-color-focus-hover` +- `neutral-content-color-hover` +- `neutral-content-color-key-focus` +- `neutral-subdued-background-color-default` +- `neutral-subdued-background-color-down` +- `neutral-subdued-background-color-hover` +- `neutral-subdued-background-color-key-focus` +- `neutral-subdued-content-color-default` +- `neutral-subdued-content-color-down` +- `neutral-subdued-content-color-hover` +- `neutral-subdued-content-color-key-focus` +- `neutral-subdued-content-color-selected` +- `neutral-visual-color` +- `notice-background-color-default` +- `notice-color-100` +- `notice-color-1000` +- `notice-color-1100` +- `notice-color-1200` +- `notice-color-1300` +- `notice-color-1400` +- `notice-color-200` +- `notice-color-300` +- `notice-color-400` +- `notice-color-500` +- `notice-color-600` +- `notice-color-700` +- `notice-color-800` +- `notice-color-900` +- `notice-visual-color` +- `opacity-checkerboard-square-dark` +- `orange-100` +- `orange-1000` +- `orange-1100` +- `orange-1200` +- `orange-1300` +- `orange-1400` +- `orange-200` +- `orange-300` +- `orange-400` +- `orange-500` +- `orange-600` +- `orange-700` +- `orange-800` +- `orange-900` +- `orange-background-color-default` +- `orange-visual-color` +- `positive-background-color-default` +- `positive-background-color-down` +- `positive-background-color-hover` +- `positive-background-color-key-focus` +- `positive-color-100` +- `positive-color-1000` +- `positive-color-1100` +- `positive-color-1200` +- `positive-color-1300` +- `positive-color-1400` +- `positive-color-200` +- `positive-color-300` +- `positive-color-400` +- `positive-color-500` +- `positive-color-600` +- `positive-color-700` +- `positive-color-800` +- `positive-color-900` +- `positive-visual-color` +- `purple-100` +- `purple-1000` +- `purple-1100` +- `purple-1200` +- `purple-1300` +- `purple-1400` +- `purple-200` +- `purple-300` +- `purple-400` +- `purple-500` +- `purple-600` +- `purple-700` +- `purple-800` +- `purple-900` +- `purple-background-color-default` +- `purple-visual-color` +- `red-100` +- `red-1000` +- `red-1100` +- `red-1200` +- `red-1300` +- `red-1400` +- `red-200` +- `red-300` +- `red-400` +- `red-500` +- `red-600` +- `red-700` +- `red-800` +- `red-900` +- `red-background-color-default` +- `red-visual-color` +- `seafoam-100` +- `seafoam-1000` +- `seafoam-1100` +- `seafoam-1200` +- `seafoam-1300` +- `seafoam-1400` +- `seafoam-200` +- `seafoam-300` +- `seafoam-400` +- `seafoam-500` +- `seafoam-600` +- `seafoam-700` +- `seafoam-800` +- `seafoam-900` +- `seafoam-background-color-default` +- `seafoam-visual-color` +- `swatch-border-color` +- `table-row-hover-color` +- `table-selected-row-background-color` +- `table-selected-row-background-color-non-emphasized` +- `thumbnail-border-color` +- `transparent-black-100` +- `transparent-black-200` +- `transparent-black-300` +- `transparent-black-400` +- `transparent-black-500` +- `transparent-black-600` +- `transparent-black-700` +- `transparent-black-800` +- `transparent-black-900` +- `transparent-white-100` +- `transparent-white-200` +- `transparent-white-300` +- `transparent-white-400` +- `transparent-white-500` +- `transparent-white-600` +- `transparent-white-700` +- `transparent-white-800` +- `transparent-white-900` +- `yellow-100` +- `yellow-1000` +- `yellow-1100` +- `yellow-1200` +- `yellow-1300` +- `yellow-1400` +- `yellow-200` +- `yellow-300` +- `yellow-400` +- `yellow-500` +- `yellow-600` +- `yellow-700` +- `yellow-800` +- `yellow-900` +- `yellow-background-color-default` +- `yellow-visual-color` + +
From 9e4b2ef029e9e731839bf13d8cedfef894f6d219 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 26 Sep 2023 18:23:42 +0000 Subject: [PATCH 013/295] chore: release (beta) --- .changeset/pre.json | 6 +- packages/tokens/CHANGELOG.md | 476 +++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 482 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 7df35da8..633accb0 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -9,5 +9,9 @@ "token-manifest-builder": "0.0.1", "transform-tokens-json": "0.0.1" }, - "changesets": ["happy-students-vanish", "lemon-dragons-raise"] + "changesets": [ + "good-peas-mix", + "happy-students-vanish", + "lemon-dragons-raise" + ] } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 5ba1e426..74afd775 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,481 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.2 + +### Major Changes + +- ee15851: Updated color tokens to use S2 values + + ## Design Motivation + + The S2 microsite documentation discusses changes to the [grays](https://s2.spectrum.corp.adobe.com/page/grays/) and [colors](https://s2.spectrum.corp.adobe.com/page/colors/). + + ## Token Diff + +
Tokens added (46): + + - `accent-color-1500` + - `accent-color-1600` + - `blue-1500` + - `blue-1600` + - `celery-1500` + - `celery-1600` + - `chartreuse-1500` + - `chartreuse-1600` + - `cyan-1500` + - `cyan-1600` + - `fuchsia-1500` + - `fuchsia-1600` + - `gray-1000` + - `gray-25` + - `green-1500` + - `green-1600` + - `indigo-1500` + - `indigo-1600` + - `informative-color-1500` + - `informative-color-1600` + - `magenta-1500` + - `magenta-1600` + - `negative-color-1500` + - `negative-color-1600` + - `notice-color-1500` + - `notice-color-1600` + - `orange-1500` + - `orange-1600` + - `positive-color-1500` + - `positive-color-1600` + - `purple-1500` + - `purple-1600` + - `red-1500` + - `red-1600` + - `seafoam-1500` + - `seafoam-1600` + - `transparent-black-1000` + - `transparent-black-25` + - `transparent-black-50` + - `transparent-black-75` + - `transparent-white-1000` + - `transparent-white-25` + - `transparent-white-50` + - `transparent-white-75` + - `yellow-1500` + - `yellow-1600` + +
+ +
Token values updated (408): + + - `accent-background-color-default` + - `accent-background-color-down` + - `accent-background-color-hover` + - `accent-background-color-key-focus` + - `accent-color-100` + - `accent-color-1000` + - `accent-color-1100` + - `accent-color-1200` + - `accent-color-1300` + - `accent-color-1400` + - `accent-color-200` + - `accent-color-300` + - `accent-color-400` + - `accent-color-500` + - `accent-color-600` + - `accent-color-700` + - `accent-color-800` + - `accent-color-900` + - `accent-content-color-default` + - `accent-content-color-down` + - `accent-content-color-hover` + - `accent-content-color-key-focus` + - `accent-content-color-selected` + - `accent-visual-color` + - `background-base-color` + - `background-layer-1-color` + - `background-layer-2-color` + - `blue-100` + - `blue-1000` + - `blue-1100` + - `blue-1200` + - `blue-1300` + - `blue-1400` + - `blue-200` + - `blue-300` + - `blue-400` + - `blue-500` + - `blue-600` + - `blue-700` + - `blue-800` + - `blue-900` + - `blue-background-color-default` + - `blue-visual-color` + - `body-color` + - `card-selection-background-color` + - `celery-100` + - `celery-1000` + - `celery-1100` + - `celery-1200` + - `celery-1300` + - `celery-1400` + - `celery-200` + - `celery-300` + - `celery-400` + - `celery-500` + - `celery-600` + - `celery-700` + - `celery-800` + - `celery-900` + - `celery-background-color-default` + - `celery-visual-color` + - `chartreuse-100` + - `chartreuse-1000` + - `chartreuse-1100` + - `chartreuse-1200` + - `chartreuse-1300` + - `chartreuse-1400` + - `chartreuse-200` + - `chartreuse-300` + - `chartreuse-400` + - `chartreuse-500` + - `chartreuse-600` + - `chartreuse-700` + - `chartreuse-800` + - `chartreuse-900` + - `chartreuse-background-color-default` + - `chartreuse-visual-color` + - `coach-mark-pagination-color` + - `code-color` + - `color-area-border-color` + - `color-loupe-drop-shadow-color` + - `color-loupe-inner-border` + - `color-slider-border-color` + - `cyan-100` + - `cyan-1000` + - `cyan-1100` + - `cyan-1200` + - `cyan-1300` + - `cyan-1400` + - `cyan-200` + - `cyan-300` + - `cyan-400` + - `cyan-500` + - `cyan-600` + - `cyan-700` + - `cyan-800` + - `cyan-900` + - `cyan-background-color-default` + - `cyan-visual-color` + - `detail-color` + - `disabled-background-color` + - `disabled-border-color` + - `disabled-content-color` + - `disabled-static-black-background-color` + - `disabled-static-black-border-color` + - `disabled-static-black-content-color` + - `disabled-static-white-background-color` + - `disabled-static-white-border-color` + - `disabled-static-white-content-color` + - `drop-zone-background-color` + - `floating-action-button-drop-shadow-color` + - `floating-action-button-shadow-color` + - `focus-indicator-color` + - `fuchsia-100` + - `fuchsia-1000` + - `fuchsia-1100` + - `fuchsia-1200` + - `fuchsia-1300` + - `fuchsia-1400` + - `fuchsia-200` + - `fuchsia-300` + - `fuchsia-400` + - `fuchsia-500` + - `fuchsia-600` + - `fuchsia-700` + - `fuchsia-800` + - `fuchsia-900` + - `fuchsia-background-color-default` + - `fuchsia-visual-color` + - `gray-100` + - `gray-200` + - `gray-300` + - `gray-400` + - `gray-50` + - `gray-500` + - `gray-600` + - `gray-700` + - `gray-75` + - `gray-800` + - `gray-900` + - `gray-background-color-default` + - `gray-visual-color` + - `green-100` + - `green-1000` + - `green-1100` + - `green-1200` + - `green-1300` + - `green-1400` + - `green-200` + - `green-300` + - `green-400` + - `green-500` + - `green-600` + - `green-700` + - `green-800` + - `green-900` + - `green-background-color-default` + - `green-visual-color` + - `heading-color` + - `icon-color-blue-primary-default` + - `icon-color-green-primary-default` + - `icon-color-inverse` + - `icon-color-primary-default` + - `icon-color-red-primary-default` + - `icon-color-yellow-primary-default` + - `indigo-100` + - `indigo-1000` + - `indigo-1100` + - `indigo-1200` + - `indigo-1300` + - `indigo-1400` + - `indigo-200` + - `indigo-300` + - `indigo-400` + - `indigo-500` + - `indigo-600` + - `indigo-700` + - `indigo-800` + - `indigo-900` + - `indigo-background-color-default` + - `indigo-visual-color` + - `informative-background-color-default` + - `informative-background-color-down` + - `informative-background-color-hover` + - `informative-background-color-key-focus` + - `informative-color-100` + - `informative-color-1000` + - `informative-color-1100` + - `informative-color-1200` + - `informative-color-1300` + - `informative-color-1400` + - `informative-color-200` + - `informative-color-300` + - `informative-color-400` + - `informative-color-500` + - `informative-color-600` + - `informative-color-700` + - `informative-color-800` + - `informative-color-900` + - `informative-visual-color` + - `magenta-100` + - `magenta-1000` + - `magenta-1100` + - `magenta-1200` + - `magenta-1300` + - `magenta-1400` + - `magenta-200` + - `magenta-300` + - `magenta-400` + - `magenta-500` + - `magenta-600` + - `magenta-700` + - `magenta-800` + - `magenta-900` + - `magenta-background-color-default` + - `magenta-visual-color` + - `negative-background-color-default` + - `negative-background-color-down` + - `negative-background-color-hover` + - `negative-background-color-key-focus` + - `negative-border-color-default` + - `negative-border-color-down` + - `negative-border-color-focus` + - `negative-border-color-focus-hover` + - `negative-border-color-hover` + - `negative-border-color-key-focus` + - `negative-color-100` + - `negative-color-1000` + - `negative-color-1100` + - `negative-color-1200` + - `negative-color-1300` + - `negative-color-1400` + - `negative-color-200` + - `negative-color-300` + - `negative-color-400` + - `negative-color-500` + - `negative-color-600` + - `negative-color-700` + - `negative-color-800` + - `negative-color-900` + - `negative-content-color-default` + - `negative-content-color-down` + - `negative-content-color-hover` + - `negative-content-color-key-focus` + - `negative-visual-color` + - `neutral-background-color-default` + - `neutral-background-color-down` + - `neutral-background-color-hover` + - `neutral-background-color-key-focus` + - `neutral-background-color-selected-default` + - `neutral-background-color-selected-down` + - `neutral-background-color-selected-hover` + - `neutral-background-color-selected-key-focus` + - `neutral-content-color-default` + - `neutral-content-color-down` + - `neutral-content-color-focus` + - `neutral-content-color-focus-hover` + - `neutral-content-color-hover` + - `neutral-content-color-key-focus` + - `neutral-subdued-background-color-default` + - `neutral-subdued-background-color-down` + - `neutral-subdued-background-color-hover` + - `neutral-subdued-background-color-key-focus` + - `neutral-subdued-content-color-default` + - `neutral-subdued-content-color-down` + - `neutral-subdued-content-color-hover` + - `neutral-subdued-content-color-key-focus` + - `neutral-subdued-content-color-selected` + - `neutral-visual-color` + - `notice-background-color-default` + - `notice-color-100` + - `notice-color-1000` + - `notice-color-1100` + - `notice-color-1200` + - `notice-color-1300` + - `notice-color-1400` + - `notice-color-200` + - `notice-color-300` + - `notice-color-400` + - `notice-color-500` + - `notice-color-600` + - `notice-color-700` + - `notice-color-800` + - `notice-color-900` + - `notice-visual-color` + - `opacity-checkerboard-square-dark` + - `orange-100` + - `orange-1000` + - `orange-1100` + - `orange-1200` + - `orange-1300` + - `orange-1400` + - `orange-200` + - `orange-300` + - `orange-400` + - `orange-500` + - `orange-600` + - `orange-700` + - `orange-800` + - `orange-900` + - `orange-background-color-default` + - `orange-visual-color` + - `positive-background-color-default` + - `positive-background-color-down` + - `positive-background-color-hover` + - `positive-background-color-key-focus` + - `positive-color-100` + - `positive-color-1000` + - `positive-color-1100` + - `positive-color-1200` + - `positive-color-1300` + - `positive-color-1400` + - `positive-color-200` + - `positive-color-300` + - `positive-color-400` + - `positive-color-500` + - `positive-color-600` + - `positive-color-700` + - `positive-color-800` + - `positive-color-900` + - `positive-visual-color` + - `purple-100` + - `purple-1000` + - `purple-1100` + - `purple-1200` + - `purple-1300` + - `purple-1400` + - `purple-200` + - `purple-300` + - `purple-400` + - `purple-500` + - `purple-600` + - `purple-700` + - `purple-800` + - `purple-900` + - `purple-background-color-default` + - `purple-visual-color` + - `red-100` + - `red-1000` + - `red-1100` + - `red-1200` + - `red-1300` + - `red-1400` + - `red-200` + - `red-300` + - `red-400` + - `red-500` + - `red-600` + - `red-700` + - `red-800` + - `red-900` + - `red-background-color-default` + - `red-visual-color` + - `seafoam-100` + - `seafoam-1000` + - `seafoam-1100` + - `seafoam-1200` + - `seafoam-1300` + - `seafoam-1400` + - `seafoam-200` + - `seafoam-300` + - `seafoam-400` + - `seafoam-500` + - `seafoam-600` + - `seafoam-700` + - `seafoam-800` + - `seafoam-900` + - `seafoam-background-color-default` + - `seafoam-visual-color` + - `swatch-border-color` + - `table-row-hover-color` + - `table-selected-row-background-color` + - `table-selected-row-background-color-non-emphasized` + - `thumbnail-border-color` + - `transparent-black-100` + - `transparent-black-200` + - `transparent-black-300` + - `transparent-black-400` + - `transparent-black-500` + - `transparent-black-600` + - `transparent-black-700` + - `transparent-black-800` + - `transparent-black-900` + - `transparent-white-100` + - `transparent-white-200` + - `transparent-white-300` + - `transparent-white-400` + - `transparent-white-500` + - `transparent-white-600` + - `transparent-white-700` + - `transparent-white-800` + - `transparent-white-900` + - `yellow-100` + - `yellow-1000` + - `yellow-1100` + - `yellow-1200` + - `yellow-1300` + - `yellow-1400` + - `yellow-200` + - `yellow-300` + - `yellow-400` + - `yellow-500` + - `yellow-600` + - `yellow-700` + - `yellow-800` + - `yellow-900` + - `yellow-background-color-default` + - `yellow-visual-color` + +
+ ## 13.0.0-beta.1 ### Major Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 93dfe625..5e36e91b 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.1", + "version": "13.0.0-beta.2", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 9bc062f86cd5f5fc80d5f474891eeecd530a2243 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 28 Sep 2023 17:44:52 -0600 Subject: [PATCH 014/295] fix(tokens): added back some tokens that deleted by mistake --- packages/tokens/src/layout-component.json | 617 ++++++++++++++++++++-- packages/tokens/src/layout.json | 78 ++- 2 files changed, 645 insertions(+), 50 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 19101695..9d521d10 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1,32 +1,368 @@ { - "checkbox-control-size-small": {}, - "checkbox-control-size-medium": {}, - "checkbox-control-size-large": {}, - "checkbox-control-size-extra-large": {}, - "checkbox-top-to-control-small": {}, - "checkbox-top-to-control-medium": {}, - "checkbox-top-to-control-large": {}, - "checkbox-top-to-control-extra-large": {}, - "switch-control-width-small": {}, - "switch-control-width-medium": {}, - "switch-control-width-large": {}, - "switch-control-width-extra-large": {}, - "switch-control-height-small": {}, - "switch-control-height-medium": {}, - "switch-control-height-large": {}, - "switch-control-height-extra-large": {}, - "switch-top-to-control-small": {}, - "switch-top-to-control-medium": {}, - "switch-top-to-control-large": {}, - "switch-top-to-control-extra-large": {}, - "radio-button-control-size-small": {}, - "radio-button-control-size-medium": {}, - "radio-button-control-size-large": {}, - "radio-button-control-size-extra-large": {}, - "radio-button-top-to-control-small": {}, - "radio-button-top-to-control-medium": {}, - "radio-button-top-to-control-large": {}, - "radio-button-top-to-control-extra-large": {}, + "checkbox-control-size-small": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "12px", + "uuid": "460e8170-de69-4f8e-8420-6c87a1f6f5cd" + }, + "mobile": { + "value": "16px", + "uuid": "af31c1a5-ffce-4a54-8862-3e711ca53d25" + } + } + }, + "checkbox-control-size-medium": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "14px", + "uuid": "86288454-7192-4e4c-b55f-fc509fc58c01" + }, + "mobile": { + "value": "18px", + "uuid": "00fee3f7-a743-45d6-a2b6-028d5d96964a" + } + } + }, + "checkbox-control-size-large": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "16px", + "uuid": "839a52bc-b9ee-473f-acde-0799b4f55ded" + }, + "mobile": { + "value": "20px", + "uuid": "b4367578-989e-438d-9a3e-7cb077f2f7c9" + } + } + }, + "checkbox-control-size-extra-large": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "18px", + "uuid": "4ba47ba1-c9bd-447e-8948-009d5b424e0d" + }, + "mobile": { + "value": "22px", + "uuid": "13093f8b-e38e-449f-a982-7f960bb84dfa" + } + } + }, + "checkbox-top-to-control-small": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "6px", + "uuid": "20518175-5bc7-4659-8007-e74339c39433" + }, + "mobile": { + "value": "7px", + "uuid": "f254146e-f469-44b1-b0c9-1ac72e88f9e3" + } + } + }, + "checkbox-top-to-control-medium": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "9px", + "uuid": "dcde5d2d-60f8-4d56-bfb1-bba44a087515" + }, + "mobile": { + "value": "11px", + "uuid": "e3751526-2db9-421c-85f9-d60071aac49b" + } + } + }, + "checkbox-top-to-control-large": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "12px", + "uuid": "93edae08-5320-4e7e-a006-a9af1d3665ad" + }, + "mobile": { + "value": "15px", + "uuid": "d040d2f4-9bb4-4d27-adac-40fef079d958" + } + } + }, + "checkbox-top-to-control-extra-large": { + "component": "checkbox", + "sets": { + "desktop": { + "value": "15px", + "uuid": "3c4217bb-91f2-4347-9f65-a0528992f600" + }, + "mobile": { + "value": "19px", + "uuid": "b3be5ac8-2415-4490-8b4a-c08661ec84d1" + } + } + }, + "switch-control-width-small": { + "component": "switch", + "sets": { + "desktop": { + "value": "23px", + "uuid": "f4d6fe1a-70bd-473a-9fa5-477865ea898e" + }, + "mobile": { + "value": "32px", + "uuid": "ca939c4d-9369-498c-81cb-61df1397f657" + } + } + }, + "switch-control-width-medium": { + "component": "switch", + "sets": { + "desktop": { + "value": "26px", + "uuid": "d329eda6-f13d-4a44-b962-ff06c371ed93" + }, + "mobile": { + "value": "36px", + "uuid": "ec2f3b6b-80db-4c43-bdd2-caee98796775" + } + } + }, + "switch-control-width-large": { + "component": "switch", + "sets": { + "desktop": { + "value": "29px", + "uuid": "cef839a5-2ba7-4e47-9a85-d94260a8ff10" + }, + "mobile": { + "value": "41px", + "uuid": "5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea" + } + } + }, + "switch-control-width-extra-large": { + "component": "switch", + "sets": { + "desktop": { + "value": "33px", + "uuid": "f3102afd-e5df-4912-9203-8226ce37fed5" + }, + "mobile": { + "value": "46px", + "uuid": "4e9d9b63-989a-4b63-b74d-22b5188f8df7" + } + } + }, + "switch-control-height-small": { + "component": "switch", + "sets": { + "desktop": { + "value": "12px", + "uuid": "3bf75a24-5e95-4c18-9da2-b7088377fe21" + }, + "mobile": { + "value": "16px", + "uuid": "a1dbcaf0-bbcf-444d-9d22-7f86db20303a" + } + } + }, + "switch-control-height-medium": { + "component": "switch", + "sets": { + "desktop": { + "value": "14px", + "uuid": "f97f0f1b-c0c2-410f-b116-86d30f4d52cf" + }, + "mobile": { + "value": "18px", + "uuid": "0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928" + } + } + }, + "switch-control-height-large": { + "component": "switch", + "sets": { + "desktop": { + "value": "16px", + "uuid": "8301bfca-a086-4efd-a22f-1d348cbd6dcf" + }, + "mobile": { + "value": "20px", + "uuid": "91b828ce-8ff9-4d32-958e-a8a23ef9b345" + } + } + }, + "switch-control-height-extra-large": { + "component": "switch", + "sets": { + "desktop": { + "value": "18px", + "uuid": "2372d602-78ce-45a7-9dff-152152e55117" + }, + "mobile": { + "value": "22px", + "uuid": "b7ae7b32-b347-4e09-9978-3b0b92a4dbab" + } + } + }, + "switch-top-to-control-small": { + "component": "switch", + "sets": { + "desktop": { + "value": "6px", + "uuid": "8a907825-236c-4548-91c4-2123e095726c" + }, + "mobile": { + "value": "7px", + "uuid": "f379c453-da21-41f6-92d1-9b6bdb95fd86" + } + } + }, + "switch-top-to-control-medium": { + "component": "switch", + "sets": { + "desktop": { + "value": "9px", + "uuid": "0135b823-5097-43bb-9911-9f731146af3b" + }, + "mobile": { + "value": "11px", + "uuid": "68276028-41d8-49e1-b0d4-f70cd27ab149" + } + } + }, + "switch-top-to-control-large": { + "component": "switch", + "sets": { + "desktop": { + "value": "12px", + "uuid": "f2c965e6-89fb-4b9d-843d-cfde31b7703d" + }, + "mobile": { + "value": "15px", + "uuid": "035e786b-17f2-488e-a049-84b257a3312f" + } + } + }, + "switch-top-to-control-extra-large": { + "component": "switch", + "sets": { + "desktop": { + "value": "15px", + "uuid": "fbc21571-970f-4bb2-8280-f6262446896b" + }, + "mobile": { + "value": "19px", + "uuid": "7e95ad9a-ca10-4f06-9c19-8dd2270cfdad" + } + } + }, + "radio-button-control-size-small": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "12px", + "uuid": "407304fc-7c74-4427-9032-b44ab03c07ce" + }, + "mobile": { + "value": "16px", + "uuid": "90a2b18a-61c7-40d8-926c-d6b18a641010" + } + } + }, + "radio-button-control-size-medium": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "14px", + "uuid": "9de5b045-532c-48ef-872e-bd3c22f89a41" + }, + "mobile": { + "value": "18px", + "uuid": "2eef4003-e666-48e7-b25b-8c50063ce400" + } + } + }, + "radio-button-control-size-large": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "16px", + "uuid": "cadf4b9e-b4d4-4ff5-808b-557864cf7dc8" + }, + "mobile": { + "value": "20px", + "uuid": "23d0a4aa-693d-4b79-b942-3898f9cf0b80" + } + } + }, + "radio-button-control-size-extra-large": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "18px", + "uuid": "f8f1d29b-4093-40ed-b73c-7a27e27a63a4" + }, + "mobile": { + "value": "22px", + "uuid": "cc041f48-aaa4-4c20-8990-599e0c56134e" + } + } + }, + "radio-button-top-to-control-small": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "6px", + "uuid": "b775d7e9-d182-4818-9ae0-b3765a0ecbf7" + }, + "mobile": { + "value": "7px", + "uuid": "02438c4c-161d-45eb-935d-b083ab830876" + } + } + }, + "radio-button-top-to-control-medium": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "9px", + "uuid": "dcc0155a-6bd1-4148-acaf-e255a7f4d22a" + }, + "mobile": { + "value": "11px", + "uuid": "2f805530-cefe-420a-89e6-a6a81c0faea0" + } + } + }, + "radio-button-top-to-control-large": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "12px", + "uuid": "309c9559-1763-4345-8090-aaa12f570889" + }, + "mobile": { + "value": "15px", + "uuid": "41d0dde7-de34-4e99-96d0-4f727ed71673" + } + } + }, + "radio-button-top-to-control-extra-large": { + "component": "radio-button", + "sets": { + "desktop": { + "value": "15px", + "uuid": "f4620f0a-43ba-4650-8640-9425ed1a1260" + }, + "mobile": { + "value": "19px", + "uuid": "c478710f-1747-455b-998a-6fa837762905" + } + } + }, "radio-button-selection-indicator": { "component": "radio-button", "value": "4px", @@ -1170,26 +1506,219 @@ "value": "2px", "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b" }, - "slider-control-height-small": {}, - "slider-control-height-medium": {}, - "slider-control-height-large": {}, - "slider-control-height-extra-large": {}, - "slider-handle-size-small": {}, - "slider-handle-size-medium": {}, - "slider-handle-size-large": {}, - "slider-handle-size-extra-large": {}, - "slider-handle-border-width-down-small": {}, - "slider-handle-border-width-down-medium": {}, - "slider-handle-border-width-down-large": {}, - "slider-handle-border-width-down-extra-large": {}, + "slider-control-height-small": { + "component": "slider", + "sets": { + "desktop": { + "value": "14px", + "uuid": "cf748652-099a-4022-ae68-0e5dcb8eff9b" + }, + "mobile": { + "value": "18px", + "uuid": "19adc707-4fc6-40f0-a972-340d6c935908" + } + } + }, + "slider-control-height-medium": { + "component": "slider", + "sets": { + "desktop": { + "value": "16px", + "uuid": "dd3b649d-12f8-427b-95a6-a4964d92d3b0" + }, + "mobile": { + "value": "20px", + "uuid": "7306fc00-67fd-4ccd-aec3-7a14e092da5e" + } + } + }, + "slider-control-height-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "18px", + "uuid": "320abda8-9fe8-4f78-87d6-3f1be921e880" + }, + "mobile": { + "value": "22px", + "uuid": "0926d8f3-bdd6-4dde-89d0-6d5d7ab9f094" + } + } + }, + "slider-control-height-extra-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "20px", + "uuid": "fd74d5a5-b966-4d26-abca-58c7a21f8136" + }, + "mobile": { + "value": "26px", + "uuid": "c5d47ebf-c83f-43c3-b2f2-f4d51c40960b" + } + } + }, + "slider-handle-size-small": { + "component": "slider", + "sets": { + "desktop": { + "value": "14px", + "uuid": "1384d419-bfad-44d7-847c-a0f2c195fb93" + }, + "mobile": { + "value": "18px", + "uuid": "7feb3d57-59fb-4095-966e-e8ca0e91442f" + } + } + }, + "slider-handle-size-medium": { + "component": "slider", + "sets": { + "desktop": { + "value": "16px", + "uuid": "a8a02181-c797-461d-a666-a63f7535a096" + }, + "mobile": { + "value": "20px", + "uuid": "278fc618-f6c1-4d30-bf85-075654079003" + } + } + }, + "slider-handle-size-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "18px", + "uuid": "3df3c866-faf0-43db-8c18-f442e7f94822" + }, + "mobile": { + "value": "22px", + "uuid": "2a3fb9b0-d701-4e86-8180-9d81f68e91d5" + } + } + }, + "slider-handle-size-extra-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "20px", + "uuid": "10ccce0d-5a2c-414e-8055-0be76709c180" + }, + "mobile": { + "value": "26px", + "uuid": "413dc697-1f14-47c8-a7f2-e52254513e6e" + } + } + }, + "slider-handle-border-width-down-small": { + "component": "slider", + "sets": { + "desktop": { + "value": "5px", + "uuid": "c9b7d8d9-c5ba-4d97-a03b-a214104ede23" + }, + "mobile": { + "value": "7px", + "uuid": "683fb538-290c-423f-990b-d7134e485f51" + } + } + }, + "slider-handle-border-width-down-medium": { + "component": "slider", + "sets": { + "desktop": { + "value": "6px", + "uuid": "63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25" + }, + "mobile": { + "value": "8px", + "uuid": "25959ff8-6c2f-4612-8d69-b95bfe485ce4" + } + } + }, + "slider-handle-border-width-down-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "7px", + "uuid": "525e7d74-2bc0-48ac-85ca-b07335819a31" + }, + "mobile": { + "value": "9px", + "uuid": "3bf8805b-b4f7-4d0d-af85-d227d6380539" + } + } + }, + "slider-handle-border-width-down-extra-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "8px", + "uuid": "47d025e2-0b26-4ebc-9b46-3cd1e470b9bc" + }, + "mobile": { + "value": "11px", + "uuid": "feac9f02-b52a-4694-a5d4-4b1930ab4f07" + } + } + }, "slider-handle-gap": { + "component": "slider", "value": "4px", "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42" }, - "slider-bottom-to-handle-small": {}, - "slider-bottom-to-handle-medium": {}, - "slider-bottom-to-handle-large": {}, - "slider-bottom-to-handle-extra-large": {}, + "slider-bottom-to-handle-small": { + "component": "slider", + "sets": { + "desktop": { + "value": "5px", + "uuid": "bf2e4550-f97e-4bd2-91e8-b0ddb5a8abe2" + }, + "mobile": { + "value": "6px", + "uuid": "3b96ab4f-6628-4ebd-aba8-2837fce04709" + } + } + }, + "slider-bottom-to-handle-medium": { + "component": "slider", + "sets": { + "desktop": { + "value": "8px", + "uuid": "238ebdc2-e51c-459d-8cc7-abfeafed6451" + }, + "mobile": { + "value": "10px", + "uuid": "5030babb-0017-4784-84ad-d3aaacf6fa05" + } + } + }, + "slider-bottom-to-handle-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "11px", + "uuid": "be9aed61-c7a1-4dce-80a7-07c9ecef1fd9" + }, + "mobile": { + "value": "14px", + "uuid": "3915ff73-11dd-4389-8d81-2f540ab060f4" + } + } + }, + "slider-bottom-to-handle-extra-large": { + "component": "slider", + "sets": { + "desktop": { + "value": "14px", + "uuid": "155b6273-1661-4ef5-85c0-a1688ce1ee72" + }, + "mobile": { + "value": "17px", + "uuid": "e04d9975-4a54-416b-b5fa-87f3ae930204" + } + } + }, "slider-control-to-field-label-small": { "component": "slider", "sets": { diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 5b9eb3fb..13f44d19 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1,10 +1,76 @@ { - "corner-radius-75": {}, - "corner-radius-100": {}, - "corner-radius-200": {}, - "drop-shadow-x": {}, - "drop-shadow-y": {}, - "drop-shadow-blur": {}, + "corner-radius-75": { + "sets": { + "desktop": { + "value": "2px", + "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" + }, + "mobile": { + "value": "2px", + "uuid": "cddbb2f6-b3a8-4416-90ed-0d7cd1bc7248" + } + } + }, + "corner-radius-100": { + "sets": { + "desktop": { + "value": "4px", + "uuid": "bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30" + }, + "mobile": { + "value": "5px", + "uuid": "e22537bb-a29f-47e5-be13-7e2775ee1103" + } + } + }, + "corner-radius-200": { + "sets": { + "desktop": { + "value": "8px", + "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" + }, + "mobile": { + "value": "10px", + "uuid": "23f751eb-a076-487d-a5e1-1c0eb2937018" + } + } + }, + "drop-shadow-x": { + "sets": { + "desktop": { + "value": "0px", + "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316" + }, + "mobile": { + "value": "0px", + "uuid": "4e20cec6-96b6-4e9c-8b25-c819731b89ba" + } + } + }, + "drop-shadow-y": { + "sets": { + "desktop": { + "value": "1px", + "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" + }, + "mobile": { + "value": "2px", + "uuid": "32950bbd-7292-452d-a445-4eb6de66c77d" + } + } + }, + "drop-shadow-blur": { + "sets": { + "desktop": { + "value": "4px", + "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" + }, + "mobile": { + "value": "6px", + "uuid": "374f321e-8b0b-442b-9494-6a2ae9936c6b" + } + } + }, "android-elevation": { "value": "2dp", "uuid": "f9456531-ab61-4c14-b7af-7016ce1c0d3e" From 559b5a79fe61b54022aada4f1d9035195195a385 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 28 Sep 2023 17:45:58 -0600 Subject: [PATCH 015/295] chore: update deps --- package.json | 2 +- pnpm-lock.yaml | 50 +++++++++++++++++++++++++------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/package.json b/package.json index 1a03f671..fa0c8786 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "@changesets/cli": "^2.26.2", "@commitlint/cli": "^17.6.6", "@commitlint/config-conventional": "^17.6.6", - "@moonrepo/cli": "^1.14.0", + "@moonrepo/cli": "^1.14.1", "ava": "^5.3.1", "husky": "^8.0.3", "lint-staged": "^13.2.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 864bf5fa..8fa7169f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,8 +17,8 @@ importers: specifier: ^17.6.6 version: 17.6.6 "@moonrepo/cli": - specifier: ^1.14.0 - version: 1.14.0 + specifier: ^1.14.1 + version: 1.14.1 ava: specifier: ^5.3.1 version: 5.3.1 @@ -1051,29 +1051,29 @@ packages: read-yaml-file: 1.1.0 dev: true - /@moonrepo/cli@1.14.0: + /@moonrepo/cli@1.14.1: resolution: { - integrity: sha512-T5rrgBEqCkKm42Dk0VzoXie/YEC6U+cVCF3CeCDi4nsdfyygvn9pj5mpNpNYmFJVcdS7TkBDVCMBd/DrRPh+OA==, + integrity: sha512-qrzbIjEQXx45lk/PRjqcCJJv/VT1+ISwizxfT7n13QDHwoBHA+slMV9jFcWmXWpnfabnPBlJGoXXYaQd9sERkg==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.14.0 - "@moonrepo/core-linux-arm64-musl": 1.14.0 - "@moonrepo/core-linux-x64-gnu": 1.14.0 - "@moonrepo/core-linux-x64-musl": 1.14.0 - "@moonrepo/core-macos-arm64": 1.14.0 - "@moonrepo/core-macos-x64": 1.14.0 - "@moonrepo/core-windows-x64-msvc": 1.14.0 + "@moonrepo/core-linux-arm64-gnu": 1.14.1 + "@moonrepo/core-linux-arm64-musl": 1.14.1 + "@moonrepo/core-linux-x64-gnu": 1.14.1 + "@moonrepo/core-linux-x64-musl": 1.14.1 + "@moonrepo/core-macos-arm64": 1.14.1 + "@moonrepo/core-macos-x64": 1.14.1 + "@moonrepo/core-windows-x64-msvc": 1.14.1 dev: true - /@moonrepo/core-linux-arm64-gnu@1.14.0: + /@moonrepo/core-linux-arm64-gnu@1.14.1: resolution: { - integrity: sha512-XGcTmlbQLlA1jKNL38lvVabf7r0X8urhh8mpiw4h/VHnZVslLfutTczK1/n437VphAN2CokLSBLKVrWKF5fmIw==, + integrity: sha512-sYOwgeLwbSSa4OnoY1RzjnInOMOIZOoOa6Ktv8U2Ed+kXa5+O9LZcjJmZkpx1WXOaGJv36lBKQBXIZ0EzxVBdA==, } cpu: [arm64] os: [linux] @@ -1081,10 +1081,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.14.0: + /@moonrepo/core-linux-arm64-musl@1.14.1: resolution: { - integrity: sha512-gb6351EmIcLiCi8cAS8d6gy6TU6MvO0PDvXzbo8pJnBZeNYN81C7hvc2hJdEPZi3AHGO3/Cvex4epF6Wk2YIuA==, + integrity: sha512-dUD70L5VAcCDkZ021C0Av98+4ze+bw3nv965/mkk6MKnUWohsVdSeK/1tuMgO3g1TKEOi7YlmMWchgr0hn0nNQ==, } cpu: [arm64] os: [linux] @@ -1092,10 +1092,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.14.0: + /@moonrepo/core-linux-x64-gnu@1.14.1: resolution: { - integrity: sha512-stc3aP75LbLtTN5oGXIie1BvXg3GQ20bq4BzyWMr+2rePk61CZrSbyPuournhob7f/qsuDDfTHk/6NO/NGYicA==, + integrity: sha512-FpeGtQYMsfkBvce3ijX8g+1mrQzq8REI8nhoyClawZBfwKoivzbvIJjovnlU6LJjzuSESt9/EUHfz+pssf05ww==, } cpu: [x64] os: [linux] @@ -1103,10 +1103,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.14.0: + /@moonrepo/core-linux-x64-musl@1.14.1: resolution: { - integrity: sha512-kw/nPUHiPbG5WtOggIKzSJzgz1LwPCYZFjYT6EFaL/PAR8rKUFpNfjQB2BfCcGAA6au6M684ZQT+Y8scD4XAmA==, + integrity: sha512-VSeFJ8ndayiv2HmUKdOtKR4WALcalzQ9TnnPlLAdVkypxwKnLrsb8XXS2J/wxeNHTWKS/mOS/D6uPlV6QeFnKA==, } cpu: [x64] os: [linux] @@ -1114,10 +1114,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.14.0: + /@moonrepo/core-macos-arm64@1.14.1: resolution: { - integrity: sha512-InIYvh2vXxenAH7TRPPQRB/lHasucAqNMHOsTVjNafRJC/xdFkAYUOfYz4S2P2uylU2FLnfzUueDU8jr2QHedA==, + integrity: sha512-4GM2TxxibK+vFBcGyX3ThwcZYF9PKOP/mSWw9BXpf8Pghn4/4WL40M8erm1zOqxM3wOahK4qbPAgpCNzEKd8xg==, } cpu: [arm64] os: [darwin] @@ -1125,10 +1125,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.14.0: + /@moonrepo/core-macos-x64@1.14.1: resolution: { - integrity: sha512-/lXqHH1u+P74xD2GuogvDJGM5ntx0hnT6+2GSIUmS4eMZSvn/bGOM1zomZZ28+7++4iFQ4kKehSAhpgauqmD1w==, + integrity: sha512-igTT2tpqxi6jbBO2dx/QaP/Pn6QgAdBqNGIb+bCVX0sSGzwTJcl+a0q5e2YdptV/ZIvOTGPldz+4kZUUypjgdg==, } cpu: [x64] os: [darwin] @@ -1136,10 +1136,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.14.0: + /@moonrepo/core-windows-x64-msvc@1.14.1: resolution: { - integrity: sha512-prRQz7C/IwIsGXFbBGkFFKM/cnJRK4xfn507FXbK3/YnuTjNAqHev9HxQ9b8Tg1HBlu2FTfGN5g7oZgqIQjgVg==, + integrity: sha512-6GezvBPHRLJeBo/Am5ZEdnYdGJtpf5nqYPEfd4oqIt8h0c5blYMgr2pCH8OfamoHL10vDQBBnD1DPE0MNthETQ==, } cpu: [x64] os: [win32] From a546ef715e21161ae5e41473cc6dd6879f480d8a Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 28 Sep 2023 17:49:16 -0600 Subject: [PATCH 016/295] chore: added changeset --- .changeset/strange-rings-love.md | 61 ++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .changeset/strange-rings-love.md diff --git a/.changeset/strange-rings-love.md b/.changeset/strange-rings-love.md new file mode 100644 index 00000000..92f7e00a --- /dev/null +++ b/.changeset/strange-rings-love.md @@ -0,0 +1,61 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +Returned some tokens that were removed by accident in the previous merging. + +## Token Diff + +_Tokens added (51):_ + +- `checkbox-control-size-extra-large` +- `checkbox-control-size-large` +- `checkbox-control-size-medium` +- `checkbox-control-size-small` +- `checkbox-top-to-control-extra-large` +- `checkbox-top-to-control-large` +- `checkbox-top-to-control-medium` +- `checkbox-top-to-control-small` +- `color-area-border-rounding` +- `corner-radius-100` +- `corner-radius-200` +- `corner-radius-75` +- `drop-shadow-blur` +- `drop-shadow-x` +- `drop-shadow-y` +- `radio-button-control-size-extra-large` +- `radio-button-control-size-large` +- `radio-button-control-size-medium` +- `radio-button-control-size-small` +- `radio-button-top-to-control-extra-large` +- `radio-button-top-to-control-large` +- `radio-button-top-to-control-medium` +- `radio-button-top-to-control-small` +- `slider-bottom-to-handle-extra-large` +- `slider-bottom-to-handle-large` +- `slider-bottom-to-handle-medium` +- `slider-bottom-to-handle-small` +- `slider-control-height-extra-large` +- `slider-control-height-large` +- `slider-control-height-medium` +- `slider-control-height-small` +- `slider-handle-border-width-down-extra-large` +- `slider-handle-border-width-down-large` +- `slider-handle-border-width-down-medium` +- `slider-handle-border-width-down-small` +- `slider-handle-size-extra-large` +- `slider-handle-size-large` +- `slider-handle-size-medium` +- `slider-handle-size-small` +- `switch-control-height-extra-large` +- `switch-control-height-large` +- `switch-control-height-medium` +- `switch-control-height-small` +- `switch-control-width-extra-large` +- `switch-control-width-large` +- `switch-control-width-medium` +- `switch-control-width-small` +- `switch-top-to-control-extra-large` +- `switch-top-to-control-large` +- `switch-top-to-control-medium` +- `switch-top-to-control-small` From 329fd7ab94b3863d2312241e652718f0c18bd00c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 28 Sep 2023 23:53:49 +0000 Subject: [PATCH 017/295] chore: release (beta) --- .changeset/pre.json | 3 +- packages/tokens/CHANGELOG.md | 62 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 65 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 633accb0..4ef2da10 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -12,6 +12,7 @@ "changesets": [ "good-peas-mix", "happy-students-vanish", - "lemon-dragons-raise" + "lemon-dragons-raise", + "strange-rings-love" ] } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 74afd775..88aa575d 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,67 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.3 + +### Patch Changes + +- a546ef7: Returned some tokens that were removed by accident in the previous merging. + + ## Token Diff + + _Tokens added (51):_ + + - `checkbox-control-size-extra-large` + - `checkbox-control-size-large` + - `checkbox-control-size-medium` + - `checkbox-control-size-small` + - `checkbox-top-to-control-extra-large` + - `checkbox-top-to-control-large` + - `checkbox-top-to-control-medium` + - `checkbox-top-to-control-small` + - `color-area-border-rounding` + - `corner-radius-100` + - `corner-radius-200` + - `corner-radius-75` + - `drop-shadow-blur` + - `drop-shadow-x` + - `drop-shadow-y` + - `radio-button-control-size-extra-large` + - `radio-button-control-size-large` + - `radio-button-control-size-medium` + - `radio-button-control-size-small` + - `radio-button-top-to-control-extra-large` + - `radio-button-top-to-control-large` + - `radio-button-top-to-control-medium` + - `radio-button-top-to-control-small` + - `slider-bottom-to-handle-extra-large` + - `slider-bottom-to-handle-large` + - `slider-bottom-to-handle-medium` + - `slider-bottom-to-handle-small` + - `slider-control-height-extra-large` + - `slider-control-height-large` + - `slider-control-height-medium` + - `slider-control-height-small` + - `slider-handle-border-width-down-extra-large` + - `slider-handle-border-width-down-large` + - `slider-handle-border-width-down-medium` + - `slider-handle-border-width-down-small` + - `slider-handle-size-extra-large` + - `slider-handle-size-large` + - `slider-handle-size-medium` + - `slider-handle-size-small` + - `switch-control-height-extra-large` + - `switch-control-height-large` + - `switch-control-height-medium` + - `switch-control-height-small` + - `switch-control-width-extra-large` + - `switch-control-width-large` + - `switch-control-width-medium` + - `switch-control-width-small` + - `switch-top-to-control-extra-large` + - `switch-top-to-control-large` + - `switch-top-to-control-medium` + - `switch-top-to-control-small` + ## 13.0.0-beta.2 ### Major Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 5e36e91b..86d3f793 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.2", + "version": "13.0.0-beta.3", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 159d30fdbcf6b398b3629fa665a183ebb7304615 Mon Sep 17 00:00:00 2001 From: Cable Hicks Date: Thu, 5 Oct 2023 09:57:28 -0700 Subject: [PATCH 018/295] fix: removed unused value sets --- packages/tokens/src/color-aliases.json | 80 ++++---------------------- 1 file changed, 10 insertions(+), 70 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 181b6f1f..fead93cd 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -100,68 +100,20 @@ } }, "neutral-background-color-default": { - "sets": { - "light": { - "value": "{gray-800}", - "uuid": "5d54b2d5-b0c6-4438-b141-80ca91a0b8a4" - }, - "dark": { - "value": "{gray-800}", - "uuid": "a1c5a204-e937-4ce1-a5be-580f6b0df7a5" - }, - "wireframe": { - "value": "{gray-800}", - "uuid": "9ff12440-fe4e-4f47-ab43-aea39f9ce6f2" - } - } + "value": "{gray-800}", + "uuid": "95cf1481-f476-47ce-a45a-54da64b44255" }, "neutral-background-color-hover": { - "sets": { - "light": { - "value": "{gray-900}", - "uuid": "e0379e06-e2d3-4d6f-ba81-6cdf4012a022" - }, - "dark": { - "value": "{gray-900}", - "uuid": "0ce569ea-d735-42a3-96c2-60201fcb616f" - }, - "wireframe": { - "value": "{gray-900}", - "uuid": "b6c12c43-39da-415b-a828-43883dfa212d" - } - } + "value": "{gray-900}", + "uuid": "142f9467-e519-4ed7-bd98-69a31e876e70" }, "neutral-background-color-down": { - "sets": { - "light": { - "value": "{gray-900}", - "uuid": "5577ffde-5708-4ea7-a50d-d938f07eba7f" - }, - "dark": { - "value": "{gray-900}", - "uuid": "4901987b-b70c-42ef-92fd-b8c5b6894bfc" - }, - "wireframe": { - "value": "{gray-900}", - "uuid": "69c94cbb-b852-4b5c-8e5f-26664dbf083a" - } - } + "value": "{gray-900}", + "uuid": "5a0fdda5-6ac2-4a31-a7b9-6b3a5dd868d6" }, "neutral-background-color-key-focus": { - "sets": { - "light": { - "value": "{gray-900}", - "uuid": "b8ba6d4d-737e-4c18-a901-bb35fdc173c3" - }, - "dark": { - "value": "{gray-900}", - "uuid": "f90c1f60-5d23-41ed-ab42-30eeb9d079ba" - }, - "wireframe": { - "value": "{gray-900}", - "uuid": "83e3eea6-e59e-4aca-8126-a9e984e90b08" - } - } + "value": "{gray-900}", + "uuid": "f52c6bfb-2d62-4fc8-a1cd-6c8d7420eeb4" }, "neutral-background-color-selected-default": { "value": "{gray-800}", @@ -508,20 +460,8 @@ } }, "notice-background-color-default": { - "sets": { - "light": { - "value": "{notice-color-800}", - "uuid": "87666730-0d8e-434d-9bfb-0a45e729c482" - }, - "dark": { - "value": "{notice-color-800}", - "uuid": "0a0bb434-e005-41ec-bee5-709a2e41928b" - }, - "wireframe": { - "value": "{notice-color-1100}", - "uuid": "640e857c-c62c-4289-b83a-1e36cee90ad4" - } - } + "value": "{notice-color-800}", + "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" }, "disabled-background-color": { "value": "{gray-100}", From a08dced7e3aa7ae4a50fc99e5828010e44a57bf1 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 5 Oct 2023 11:24:18 -0600 Subject: [PATCH 019/295] chore(tokens): added changeset --- .changeset/slimy-emus-enjoy.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .changeset/slimy-emus-enjoy.md diff --git a/.changeset/slimy-emus-enjoy.md b/.changeset/slimy-emus-enjoy.md new file mode 100644 index 00000000..5c9dc806 --- /dev/null +++ b/.changeset/slimy-emus-enjoy.md @@ -0,0 +1,15 @@ +--- +"@adobe/spectrum-tokens": major +--- + +A handful of values transitioned from being defined per-set to being constants; set values are deprecated and root values are defined. + +## Token Diff + +_Token values updated (5):_ + +- `neutral-background-color-default`: changed from a color-set to a single value of a reference of `gray-800` +- `neutral-background-color-down`: changed from a color-set to a single value of a reference of `gray-900` +- `neutral-background-color-hover`: changed from a color-set to a single value of a reference of `gray-900` +- `neutral-background-color-key-focus`: changed from a color-set to a single value of a reference of `gray-900` +- `notice-background-color-default`: changed from a color-set to a single value of a reference of `notice-color-800` From 55db23d841d2fff66a327d22cb05e75fff25fc2b Mon Sep 17 00:00:00 2001 From: Cable Hicks Date: Fri, 27 Oct 2023 10:18:14 -0700 Subject: [PATCH 020/295] fix: rgb used instead of rgba for a couple tokens --- packages/tokens/src/color-palette.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 5189a5bf..ed0cabba 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -48,7 +48,7 @@ "uuid": "b85836bf-af47-412a-900a-4ec5ad0733b2" }, "transparent-white-900": { - "value": "rgb(255, 255, 255, 0.94)", + "value": "rgba(255, 255, 255, 0.94)", "uuid": "c5c823c6-1911-4e0e-ba2f-5105f467e108" }, "transparent-white-1000": { @@ -104,7 +104,7 @@ "uuid": "3e89f180-b0f0-4de0-904b-c80f0210a361" }, "transparent-black-900": { - "value": "rgb(0, 0, 0, 0.93)", + "value": "rgba(0, 0, 0, 0.93)", "uuid": "c0a331f9-53e3-4c72-b5e3-139d730a1752" }, "transparent-black-1000": { From c0a10b4fd0ccd10655639b4b9168b229a6356ef1 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 27 Oct 2023 11:24:40 -0600 Subject: [PATCH 021/295] Added changeset --- .changeset/warm-experts-beg.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/warm-experts-beg.md diff --git a/.changeset/warm-experts-beg.md b/.changeset/warm-experts-beg.md new file mode 100644 index 00000000..f6fbfb0a --- /dev/null +++ b/.changeset/warm-experts-beg.md @@ -0,0 +1,5 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +fix: rgb used instead of rgba for a couple tokens From 83f0bc181e4553fb05f1c45b3ff14de064b8f2d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 27 Oct 2023 17:27:51 +0000 Subject: [PATCH 022/295] chore: release (beta) --- .changeset/pre.json | 4 +++- packages/tokens/CHANGELOG.md | 20 ++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 4ef2da10..cf6c6c05 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -13,6 +13,8 @@ "good-peas-mix", "happy-students-vanish", "lemon-dragons-raise", - "strange-rings-love" + "slimy-emus-enjoy", + "strange-rings-love", + "warm-experts-beg" ] } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 88aa575d..a76a5838 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,25 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.4 + +### Major Changes + +- a08dced: A handful of values transitioned from being defined per-set to being constants; set values are deprecated and root values are defined. + + ## Token Diff + + _Token values updated (5):_ + + - `neutral-background-color-default`: changed from a color-set to a single value of a reference of `gray-800` + - `neutral-background-color-down`: changed from a color-set to a single value of a reference of `gray-900` + - `neutral-background-color-hover`: changed from a color-set to a single value of a reference of `gray-900` + - `neutral-background-color-key-focus`: changed from a color-set to a single value of a reference of `gray-900` + - `notice-background-color-default`: changed from a color-set to a single value of a reference of `notice-color-800` + +### Patch Changes + +- c0a10b4: fix: rgb used instead of rgba for a couple tokens + ## 13.0.0-beta.3 ### Patch Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 86d3f793..c1355a65 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.3", + "version": "13.0.0-beta.4", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 6ebc6252db3256102a9e6196aa91e274a328c651 Mon Sep 17 00:00:00 2001 From: Frank Karstens Date: Wed, 22 Nov 2023 18:07:57 +0100 Subject: [PATCH 023/295] feat(tokens): update color token values --- packages/tokens/src/color-palette.json | 460 ++++++++++++------------- 1 file changed, 230 insertions(+), 230 deletions(-) diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index ed0cabba..2b58a38c 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -334,7 +334,7 @@ "uuid": "989a37a5-66f2-4a84-a118-8d36caee6695" }, "dark": { - "value": "rgb(15, 27, 77)", + "value": "rgb(15, 28, 82)", "uuid": "7b7d1fd8-cc1e-4053-b320-e481b8f64c46" }, "wireframe": { @@ -350,7 +350,7 @@ "uuid": "58dc7d3a-3a6d-4ee4-ad38-5e01a07335bd" }, "dark": { - "value": "rgb(13, 34, 119)", + "value": "rgb(12, 33, 117)", "uuid": "d88d1685-29dc-486b-a0b9-9c90f60b8cde" }, "wireframe": { @@ -362,11 +362,11 @@ "blue-400": { "sets": { "light": { - "value": "rgb(176, 209, 253)", + "value": "rgb(172, 207, 253)", "uuid": "9c39c15f-04ee-4cb3-acf3-04c390f14780" }, "dark": { - "value": "rgb(17, 42, 144)", + "value": "rgb(18, 45, 154)", "uuid": "29d339bb-ef80-40f8-a69b-afa778b60805" }, "wireframe": { @@ -378,11 +378,11 @@ "blue-500": { "sets": { "light": { - "value": "rgb(147, 189, 252)", + "value": "rgb(142, 185, 252)", "uuid": "ccc5c654-280e-4f46-964e-9d589f571bc6" }, "dark": { - "value": "rgb(22, 52, 179)", + "value": "rgb(26, 58, 195)", "uuid": "a61ed901-7f77-4667-9d19-fff6bab20623" }, "wireframe": { @@ -394,11 +394,11 @@ "blue-600": { "sets": { "light": { - "value": "rgb(122, 167, 253)", + "value": "rgb(114, 158, 253)", "uuid": "b781aad3-054c-4e81-a368-a8165e6035fd" }, "dark": { - "value": "rgb(29, 63, 209)", + "value": "rgb(37, 73, 229)", "uuid": "7e770996-780a-4494-91ea-08c1ae6cfa80" }, "wireframe": { @@ -410,11 +410,11 @@ "blue-700": { "sets": { "light": { - "value": "rgb(100, 144, 255)", + "value": "rgb(93, 137, 255)", "uuid": "1a25f1fe-6d20-49f9-b8f9-d304efc83626" }, "dark": { - "value": "rgb(40, 78, 236)", + "value": "rgb(52, 91, 248)", "uuid": "5cc66280-e13a-459d-8529-c3f531aa5e4e" }, "wireframe": { @@ -426,11 +426,11 @@ "blue-800": { "sets": { "light": { - "value": "rgb(80, 123, 255)", + "value": "rgb(75, 117, 255)", "uuid": "5ac73d3a-a6cc-4403-a8d5-46bc262d62e9" }, "dark": { - "value": "rgb(56, 96, 250)", + "value": "rgb(69, 110, 254)", "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" }, "wireframe": { @@ -446,7 +446,7 @@ "uuid": "3451c170-3e78-449b-86f2-8b7dbea24c1c" }, "dark": { - "value": "rgb(77, 120, 255)", + "value": "rgb(86, 129, 255)", "uuid": "82b09b04-6a70-4a95-9eb5-a321a66a6465" }, "wireframe": { @@ -462,7 +462,7 @@ "uuid": "da15fc4a-a3ce-4cbe-a2d1-bf5a2e77e5c4" }, "dark": { - "value": "rgb(102, 146, 254)", + "value": "rgb(105, 149, 254)", "uuid": "147ed079-b4f0-4cd7-89cd-7ec93750d688" }, "wireframe": { @@ -582,7 +582,7 @@ "uuid": "a1f7b6a3-4195-44dc-a772-9a04d3cf859c" }, "dark": { - "value": "rgb(67, 13, 5)", + "value": "rgb(68, 13, 5)", "uuid": "b18ca77b-898e-4e09-88e2-8901de3e9172" }, "wireframe": { @@ -598,7 +598,7 @@ "uuid": "3a393af6-c7f2-45bb-a4bc-9b55518c71ac" }, "dark": { - "value": "rgb(89, 18, 7)", + "value": "rgb(87, 17, 7)", "uuid": "fcfcf026-be31-4a05-b833-6757cacb8b05" }, "wireframe": { @@ -610,11 +610,11 @@ "red-400": { "sets": { "light": { - "value": "rgb(255, 192, 184)", + "value": "rgb(255, 188, 180)", "uuid": "49e7cf3a-1f2a-4487-a0a9-3869a30593f1" }, "dark": { - "value": "rgb(109, 22, 10)", + "value": "rgb(115, 24, 11)", "uuid": "8f9fa135-5aca-4e42-b247-fdfbf74bc07b" }, "wireframe": { @@ -626,11 +626,11 @@ "red-500": { "sets": { "light": { - "value": "rgb(255, 163, 152)", + "value": "rgb(255, 157, 145)", "uuid": "70b11bf5-60c8-48a6-a1d5-2a74bc22e283" }, "dark": { - "value": "rgb(134, 28, 15)", + "value": "rgb(147, 31, 17)", "uuid": "ec50a21c-88aa-41a8-b607-c8b1c407ac4f" }, "wireframe": { @@ -642,11 +642,11 @@ "red-600": { "sets": { "light": { - "value": "rgb(255, 132, 118)", + "value": "rgb(255, 118, 101)", "uuid": "00d13447-f1f9-4cda-89b4-6a839260e91a" }, "dark": { - "value": "rgb(158, 34, 19)", + "value": "rgb(177, 38, 23)", "uuid": "ff0fa040-17d6-4570-84b5-7a88c5bb9f45" }, "wireframe": { @@ -658,11 +658,11 @@ "red-700": { "sets": { "light": { - "value": "rgb(255, 95, 76)", + "value": "rgb(255, 81, 61)", "uuid": "a84b6ffe-5235-4517-9beb-320ed79cf6b0" }, "dark": { - "value": "rgb(185, 41, 24)", + "value": "rgb(205, 46, 29)", "uuid": "cb2486de-b2be-45e5-b459-6e371b29d357" }, "wireframe": { @@ -674,11 +674,11 @@ "red-800": { "sets": { "light": { - "value": "rgb(247, 59, 38)", + "value": "rgb(240, 56, 35)", "uuid": "6c3daf67-9cdc-4c02-9912-ff0b902c22ed" }, "dark": { - "value": "rgb(212, 48, 31)", + "value": "rgb(230, 54, 35)", "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" }, "wireframe": { @@ -694,7 +694,7 @@ "uuid": "d5d3bc64-629c-44b0-8ff5-81f260521f5b" }, "dark": { - "value": "rgb(243, 57, 36)", + "value": "rgb(252, 67, 46)", "uuid": "ccb79099-59f4-4bf2-b149-0de72f556a45" }, "wireframe": { @@ -710,7 +710,7 @@ "uuid": "4a585714-4331-44b1-b81f-25a8ff1cc8ea" }, "dark": { - "value": "rgb(255, 98, 79)", + "value": "rgb(255, 103, 86)", "uuid": "95621c5a-1768-4707-a2ce-bd15c61c89f4" }, "wireframe": { @@ -826,11 +826,11 @@ "orange-200": { "sets": { "light": { - "value": "rgb(255, 238, 210)", + "value": "rgb(255, 236, 207)", "uuid": "64371717-ac11-4ec3-a0aa-9042cf43fa8f" }, "dark": { - "value": "rgb(59, 20, 0)", + "value": "rgb(61, 21, 0)", "uuid": "587d4ce3-4275-4d2a-916c-2b1bf78c38ea" }, "wireframe": { @@ -858,11 +858,11 @@ "orange-400": { "sets": { "light": { - "value": "rgb(255, 197, 103)", + "value": "rgb(255, 193, 94)", "uuid": "15bea688-4c32-44c0-9ee3-242bdb50954c" }, "dark": { - "value": "rgb(99, 34, 0)", + "value": "rgb(106, 36, 0)", "uuid": "b912089a-b6c9-49ef-8a4b-0a1f6fbbe963" }, "wireframe": { @@ -874,11 +874,11 @@ "orange-500": { "sets": { "light": { - "value": "rgb(255, 169, 33)", + "value": "rgb(255, 162, 19)", "uuid": "33bd4908-1259-4e75-8e96-bd410bebcfd6" }, "dark": { - "value": "rgb(122, 42, 0)", + "value": "rgb(135, 47, 0)", "uuid": "8a56b352-d7d4-45d4-b403-448557656dab" }, "wireframe": { @@ -890,11 +890,11 @@ "orange-600": { "sets": { "light": { - "value": "rgb(255, 137, 0)", + "value": "rgb(252, 125, 0)", "uuid": "eeede364-d711-40e5-9d2a-0255b10d36f2" }, "dark": { - "value": "rgb(145, 52, 0)", + "value": "rgb(162, 59, 0)", "uuid": "27b198b5-bf02-476a-a440-84c9a5bd2ce3" }, "wireframe": { @@ -906,11 +906,11 @@ "orange-700": { "sets": { "light": { - "value": "rgb(239, 112, 0)", + "value": "rgb(232, 106, 0)", "uuid": "a4527b6f-e2d4-4a0f-b013-007dc5a2d3ac" }, "dark": { - "value": "rgb(169, 63, 0)", + "value": "rgb(185, 73, 0)", "uuid": "f9e84513-57d6-4786-b8db-c86055cebfc6" }, "wireframe": { @@ -922,11 +922,11 @@ "orange-800": { "sets": { "light": { - "value": "rgb(218, 95, 0)", + "value": "rgb(212, 91, 0)", "uuid": "437e4f5b-e68c-4491-b26c-a9fa1503561b" }, "dark": { - "value": "rgb(190, 76, 0)", + "value": "rgb(205, 86, 0)", "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" }, "wireframe": { @@ -938,11 +938,11 @@ "orange-900": { "sets": { "light": { - "value": "rgb(193, 78, 0)", + "value": "rgb(194, 78, 0)", "uuid": "e9df9a43-f509-44f3-89f6-c277f7445651" }, "dark": { - "value": "rgb(214, 93, 0)", + "value": "rgb(224, 100, 0)", "uuid": "0fbe4f46-02a8-444d-ace5-c245c6f15112" }, "wireframe": { @@ -958,7 +958,7 @@ "uuid": "7dc902b9-6512-429e-9cb4-c2f97ca08e99" }, "dark": { - "value": "rgb(240, 114, 0)", + "value": "rgb(243, 117, 0)", "uuid": "92e06ff6-8347-4320-9a98-3054ba458d0e" }, "wireframe": { @@ -1094,7 +1094,7 @@ "uuid": "97ea0771-52c6-48f0-8725-dc514b0738d4" }, "dark": { - "value": "rgb(63, 40, 0)", + "value": "rgb(61, 39, 0)", "uuid": "238147c6-0302-4d43-b3a3-42df832c7857" }, "wireframe": { @@ -1106,11 +1106,11 @@ "yellow-400": { "sets": { "light": { - "value": "rgb(247, 203, 0)", + "value": "rgb(245, 199, 0)", "uuid": "8ffb47cc-cc5c-4179-807e-4a1cb45c6496" }, "dark": { - "value": "rgb(78, 49, 0)", + "value": "rgb(83, 52, 0)", "uuid": "62ab6892-66ea-4b55-8c1a-fcc191d29717" }, "wireframe": { @@ -1122,11 +1122,11 @@ "yellow-500": { "sets": { "light": { - "value": "rgb(233, 179, 0)", + "value": "rgb(230, 175, 0)", "uuid": "68a43979-6dee-45b9-963d-3e827b2554f4" }, "dark": { - "value": "rgb(97, 61, 0)", + "value": "rgb(107, 67, 0)", "uuid": "efa1fdd8-4478-411a-892c-0ecf23939489" }, "wireframe": { @@ -1138,11 +1138,11 @@ "yellow-600": { "sets": { "light": { - "value": "rgb(217, 158, 0)", + "value": "rgb(210, 149, 0)", "uuid": "8c86293e-334b-49ed-a7aa-eb4fe987002f" }, "dark": { - "value": "rgb(116, 73, 0)", + "value": "rgb(130, 82, 0)", "uuid": "8ae3c5ec-aabe-47a0-b822-ba0907e67ed4" }, "wireframe": { @@ -1154,11 +1154,11 @@ "yellow-700": { "sets": { "light": { - "value": "rgb(199, 137, 0)", + "value": "rgb(193, 131, 0)", "uuid": "881b7389-0c65-46e6-a391-d1d5800c535c" }, "dark": { - "value": "rgb(135, 86, 0)", + "value": "rgb(151, 97, 0)", "uuid": "ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359" }, "wireframe": { @@ -1170,11 +1170,11 @@ "yellow-800": { "sets": { "light": { - "value": "rgb(180, 119, 0)", + "value": "rgb(175, 116, 0)", "uuid": "b9ee2410-9573-4acd-bff8-ce11bf0f72a0" }, "dark": { - "value": "rgb(155, 100, 0)", + "value": "rgb(169, 110, 0)", "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" }, "wireframe": { @@ -1190,7 +1190,7 @@ "uuid": "1b030fd3-f5bc-4e84-8efd-33db77bf64b8" }, "dark": { - "value": "rgb(178, 117, 0)", + "value": "rgb(186, 124, 0)", "uuid": "a12f6cac-7fdc-4fd4-8120-ad957823ff6b" }, "wireframe": { @@ -1206,7 +1206,7 @@ "uuid": "a9d84db4-e9db-45a8-9010-4e64822f0408" }, "dark": { - "value": "rgb(200, 138, 0)", + "value": "rgb(203, 141, 0)", "uuid": "4cf4a500-37a2-4dd8-a243-14f6c012b53c" }, "wireframe": { @@ -1326,7 +1326,7 @@ "uuid": "c1146153-61bf-4a31-8254-54a1d25a93c5" }, "dark": { - "value": "rgb(29, 35, 0)", + "value": "rgb(30, 36, 0)", "uuid": "b18f4550-5bbe-496c-b4a5-13df8fd0c7d7" }, "wireframe": { @@ -1342,7 +1342,7 @@ "uuid": "f8812b11-742b-44d6-a21a-7fd3db39fe71" }, "dark": { - "value": "rgb(40, 48, 0)", + "value": "rgb(39, 47, 0)", "uuid": "b98dec90-df71-4593-946d-91df7918caac" }, "wireframe": { @@ -1354,11 +1354,11 @@ "chartreuse-400": { "sets": { "light": { - "value": "rgb(184, 221, 0)", + "value": "rgb(182, 219, 0)", "uuid": "32e471ce-5b0d-40f1-a77a-67feff02775e" }, "dark": { - "value": "rgb(50, 59, 0)", + "value": "rgb(53, 63, 0)", "uuid": "6a974b7d-ccd2-4778-baae-8caf419a529c" }, "wireframe": { @@ -1370,11 +1370,11 @@ "chartreuse-500": { "sets": { "light": { - "value": "rgb(166, 200, 0)", + "value": "rgb(163, 196, 0)", "uuid": "fe3be762-b55e-43cb-9163-68ee7dafc53e" }, "dark": { - "value": "rgb(62, 74, 0)", + "value": "rgb(68, 82, 0)", "uuid": "46d8fd3b-0e51-4cdd-a33c-de184b82dcc5" }, "wireframe": { @@ -1386,11 +1386,11 @@ "chartreuse-600": { "sets": { "light": { - "value": "rgb(149, 180, 0)", + "value": "rgb(143, 172, 0)", "uuid": "d61e865b-6538-42a8-aba8-0842359b80c2" }, "dark": { - "value": "rgb(74, 88, 0)", + "value": "rgb(83, 100, 0)", "uuid": "965174d2-e743-41df-a8e2-570b2ae2f447" }, "wireframe": { @@ -1402,11 +1402,11 @@ "chartreuse-700": { "sets": { "light": { - "value": "rgb(133, 159, 0)", + "value": "rgb(128, 153, 0)", "uuid": "3d0fd171-80f3-4f08-9ac0-eb46d0e755f9" }, "dark": { - "value": "rgb(87, 104, 0)", + "value": "rgb(97, 116, 0)", "uuid": "a615bb51-0249-4201-b1c9-1c6269b82ec2" }, "wireframe": { @@ -1418,11 +1418,11 @@ "chartreuse-800": { "sets": { "light": { - "value": "rgb(118, 141, 0)", + "value": "rgb(114, 137, 0)", "uuid": "9a0701e4-81a0-420b-b751-c6a46670fbf3" }, "dark": { - "value": "rgb(100, 120, 0)", + "value": "rgb(109, 131, 0)", "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" }, "wireframe": { @@ -1438,7 +1438,7 @@ "uuid": "7d22a144-0f7c-435e-ad05-b2d7672dff08" }, "dark": { - "value": "rgb(116, 139, 0)", + "value": "rgb(122, 147, 0)", "uuid": "1637c50e-88e4-4273-8a75-6e8a233a690c" }, "wireframe": { @@ -1454,7 +1454,7 @@ "uuid": "00100510-9965-4086-ba82-0cb62ffebba1" }, "dark": { - "value": "rgb(134, 161, 0)", + "value": "rgb(136, 164, 0)", "uuid": "7dbedc59-e21c-4953-a7af-5e91d170604a" }, "wireframe": { @@ -1570,11 +1570,11 @@ "celery-200": { "sets": { "light": { - "value": "rgb(202, 255, 164)", + "value": "rgb(197, 255, 156)", "uuid": "30941af9-354a-4d61-9462-aca4bcd50093" }, "dark": { - "value": "rgb(14, 37, 0)", + "value": "rgb(15, 38, 0)", "uuid": "741a30fb-62a9-4c76-a78e-cc2590af9c7d" }, "wireframe": { @@ -1586,7 +1586,7 @@ "celery-300": { "sets": { "light": { - "value": "rgb(155, 246, 90)", + "value": "rgb(157, 247, 92)", "uuid": "3562f589-ba34-465e-9549-2600e2527ab8" }, "dark": { @@ -1602,11 +1602,11 @@ "celery-400": { "sets": { "light": { - "value": "rgb(131, 230, 60)", + "value": "rgb(129, 228, 58)", "uuid": "d86c4477-a2f4-449a-8883-daaf33608fde" }, "dark": { - "value": "rgb(28, 63, 3)", + "value": "rgb(31, 67, 4)", "uuid": "646d80c1-7073-4e13-bbfe-4bd0c2226079" }, "wireframe": { @@ -1618,11 +1618,11 @@ "celery-500": { "sets": { "light": { - "value": "rgb(113, 210, 44)", + "value": "rgb(110, 206, 42)", "uuid": "9c5fc2d5-30cc-4389-b219-2db69f8a86f9" }, "dark": { - "value": "rgb(36, 78, 6)", + "value": "rgb(41, 86, 8)", "uuid": "7d4c282b-78ce-4b2c-ab39-26bf02366e4d" }, "wireframe": { @@ -1634,11 +1634,11 @@ "celery-600": { "sets": { "light": { - "value": "rgb(99, 189, 34)", + "value": "rgb(93, 180, 31)", "uuid": "c2cfbc22-b556-4cb5-b5ee-670254d5ecbc" }, "dark": { - "value": "rgb(44, 93, 9)", + "value": "rgb(50, 105, 11)", "uuid": "260d8921-3810-4a5d-a20f-cd00170cf951" }, "wireframe": { @@ -1650,11 +1650,11 @@ "celery-700": { "sets": { "light": { - "value": "rgb(85, 168, 27)", + "value": "rgb(82, 161, 25)", "uuid": "59b03f98-f898-4888-ad71-07a434e2fc7e" }, "dark": { - "value": "rgb(53, 110, 12)", + "value": "rgb(60, 122, 15)", "uuid": "7e7e6abb-a2e9-4308-ac8e-e6866ec17c64" }, "wireframe": { @@ -1666,11 +1666,11 @@ "celery-800": { "sets": { "light": { - "value": "rgb(75, 149, 21)", + "value": "rgb(72, 144, 20)", "uuid": "41747345-10ab-476a-9d3d-e657f9383e8e" }, "dark": { - "value": "rgb(62, 126, 16)", + "value": "rgb(69, 138, 19)", "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" }, "wireframe": { @@ -1686,7 +1686,7 @@ "uuid": "deec9c21-caeb-4ec4-bca4-a7661a2c5f91" }, "dark": { - "value": "rgb(73, 146, 21)", + "value": "rgb(78, 154, 23)", "uuid": "706f3a95-ab27-497f-aab7-f4ed806eef30" }, "wireframe": { @@ -1702,7 +1702,7 @@ "uuid": "3d509755-d653-4a3f-a5a3-fcbed0c2e21c" }, "dark": { - "value": "rgb(87, 169, 27)", + "value": "rgb(88, 172, 28)", "uuid": "021a55b8-26ae-4767-82fb-06b20c58762b" }, "wireframe": { @@ -1806,7 +1806,7 @@ "uuid": "4428dba5-df85-4125-ba54-1c022b986847" }, "dark": { - "value": "rgb(0, 31, 23)", + "value": "rgb(0, 30, 23)", "uuid": "e5a14d4a-47c5-4a53-84c5-589a0749d906" }, "wireframe": { @@ -1822,7 +1822,7 @@ "uuid": "9d32cd19-8375-4da3-9324-0e8334c2e714" }, "dark": { - "value": "rgb(0, 38, 28)", + "value": "rgb(0, 38, 29)", "uuid": "e8f294f5-cb17-4fdc-b370-ca2e3f95d342" }, "wireframe": { @@ -1838,7 +1838,7 @@ "uuid": "88bac762-84e1-4652-8152-384f3b1faf59" }, "dark": { - "value": "rgb(0, 52, 38)", + "value": "rgb(0, 51, 38)", "uuid": "cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2" }, "wireframe": { @@ -1850,11 +1850,11 @@ "green-400": { "sets": { "light": { - "value": "rgb(113, 229, 165)", + "value": "rgb(107, 227, 162)", "uuid": "5cb02868-9f86-4e20-85e0-e4f5df24853c" }, "dark": { - "value": "rgb(0, 64, 45)", + "value": "rgb(0, 68, 48)", "uuid": "c5e88879-9773-446c-883e-96531bcb8fad" }, "wireframe": { @@ -1866,11 +1866,11 @@ "green-500": { "sets": { "light": { - "value": "rgb(48, 212, 128)", + "value": "rgb(43, 209, 125)", "uuid": "8b315766-4fa0-4acc-a679-89da4162a15c" }, "dark": { - "value": "rgb(1, 79, 53)", + "value": "rgb(2, 87, 58)", "uuid": "27649ccc-69a8-48d6-9d52-6d6e2e28ae17" }, "wireframe": { @@ -1882,11 +1882,11 @@ "green-600": { "sets": { "light": { - "value": "rgb(23, 192, 108)", + "value": "rgb(18, 184, 103)", "uuid": "4c6c7b90-29ac-4186-a991-c298f19aa83d" }, "dark": { - "value": "rgb(2, 95, 61)", + "value": "rgb(3, 106, 67)", "uuid": "a0513e49-8483-40f8-8b8f-41fdc222f13d" }, "wireframe": { @@ -1898,11 +1898,11 @@ "green-700": { "sets": { "light": { - "value": "rgb(13, 171, 96)", + "value": "rgb(11, 164, 93)", "uuid": "19a07ad0-9e01-4adc-861d-f7634de1f1ab" }, "dark": { - "value": "rgb(3, 112, 69)", + "value": "rgb(4, 124, 75)", "uuid": "9c24175e-34a5-46c8-b646-f70c08292776" }, "wireframe": { @@ -1914,11 +1914,11 @@ "green-800": { "sets": { "light": { - "value": "rgb(8, 151, 86)", + "value": "rgb(7, 147, 85)", "uuid": "1be225f8-3612-422c-923f-b35f1ec4fc00" }, "dark": { - "value": "rgb(5, 128, 76)", + "value": "rgb(6, 140, 82)", "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" }, "wireframe": { @@ -1930,11 +1930,11 @@ "green-900": { "sets": { "light": { - "value": "rgb(5, 131, 77)", + "value": "rgb(5, 131, 78)", "uuid": "cd39a520-2020-41d0-96d1-3b0fdb453fef" }, "dark": { - "value": "rgb(8, 149, 85)", + "value": "rgb(9, 157, 89)", "uuid": "5afee2ee-a5d5-4dcf-a917-11dfdd0c3691" }, "wireframe": { @@ -1946,11 +1946,11 @@ "green-1000": { "sets": { "light": { - "value": "rgb(3, 110, 68)", + "value": "rgb(3, 110, 69)", "uuid": "b0846caa-d394-4614-aaa2-af179de285f4" }, "dark": { - "value": "rgb(13, 172, 97)", + "value": "rgb(14, 175, 98)", "uuid": "3d6732a1-a1f9-4e18-927b-93cebaae3895" }, "wireframe": { @@ -2050,11 +2050,11 @@ "seafoam-100": { "sets": { "light": { - "value": "rgb(226, 252, 253)", + "value": "rgb(235, 251, 246)", "uuid": "2330ab05-6153-47a1-ab56-18f3cb1c579f" }, "dark": { - "value": "rgb(0, 29, 32)", + "value": "rgb(0, 30, 27)", "uuid": "080b56a3-6f95-422a-9f4b-d850966c4984" }, "wireframe": { @@ -2066,11 +2066,11 @@ "seafoam-200": { "sets": { "light": { - "value": "rgb(202, 248, 250)", + "value": "rgb(211, 246, 234)", "uuid": "870298fd-4e1f-4649-bfbc-5ad5b768c2e3" }, "dark": { - "value": "rgb(0, 37, 40)", + "value": "rgb(0, 39, 35)", "uuid": "2876bdd7-af97-4cd6-89cc-bdb9c2110946" }, "wireframe": { @@ -2082,11 +2082,11 @@ "seafoam-300": { "sets": { "light": { - "value": "rgb(138, 239, 242)", + "value": "rgb(169, 237, 216)", "uuid": "1fe5483a-95bd-4597-802a-9e84c1486dbe" }, "dark": { - "value": "rgb(0, 50, 53)", + "value": "rgb(0, 50, 44)", "uuid": "d90b7496-0f54-41ce-96eb-c973457661ae" }, "wireframe": { @@ -2098,11 +2098,11 @@ "seafoam-400": { "sets": { "light": { - "value": "rgb(86, 226, 231)", + "value": "rgb(92, 225, 194)", "uuid": "e2b4d354-9a1d-4153-b988-4fc24c117252" }, "dark": { - "value": "rgb(0, 62, 66)", + "value": "rgb(0, 67, 59)", "uuid": "ec603c2c-b2b2-4769-a889-ba7c91a458eb" }, "wireframe": { @@ -2114,11 +2114,11 @@ "seafoam-500": { "sets": { "light": { - "value": "rgb(60, 206, 211)", + "value": "rgb(16, 207, 169)", "uuid": "a1da1af7-df37-455d-8d27-2920b36f209f" }, "dark": { - "value": "rgb(4, 77, 81)", + "value": "rgb(2, 86, 75)", "uuid": "c24b866c-5ac0-49de-857b-48c655fa9990" }, "wireframe": { @@ -2130,11 +2130,11 @@ "seafoam-600": { "sets": { "light": { - "value": "rgb(45, 185, 190)", + "value": "rgb(13, 181, 149)", "uuid": "cfd8a8b3-d567-4eb4-9b6f-5db352607dab" }, "dark": { - "value": "rgb(8, 91, 96)", + "value": "rgb(4, 105, 89)", "uuid": "73b58f7e-008b-44ae-8969-19d981d444d6" }, "wireframe": { @@ -2146,11 +2146,11 @@ "seafoam-700": { "sets": { "light": { - "value": "rgb(35, 164, 169)", + "value": "rgb(11, 162, 134)", "uuid": "a036b309-95ec-45e6-b035-f30f0f922422" }, "dark": { - "value": "rgb(13, 108, 113)", + "value": "rgb(6, 122, 103)", "uuid": "0b8528e6-ceea-47a5-9727-24e97d7bc138" }, "wireframe": { @@ -2162,11 +2162,11 @@ "seafoam-800": { "sets": { "light": { - "value": "rgb(27, 146, 151)", + "value": "rgb(9, 144, 120)", "uuid": "ac4f12a3-a3f0-4053-87f4-5fc42b08cf23" }, "dark": { - "value": "rgb(19, 124, 129)", + "value": "rgb(8, 138, 116)", "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" }, "wireframe": { @@ -2178,11 +2178,11 @@ "seafoam-900": { "sets": { "light": { - "value": "rgb(20, 126, 131)", + "value": "rgb(7, 129, 109)", "uuid": "74cb44f8-8ab0-4a36-9920-0735756e0ddc" }, "dark": { - "value": "rgb(26, 143, 148)", + "value": "rgb(10, 154, 128)", "uuid": "dca23a18-2b19-48bf-9894-2f0948f6c05e" }, "wireframe": { @@ -2194,11 +2194,11 @@ "seafoam-1000": { "sets": { "light": { - "value": "rgb(13, 106, 111)", + "value": "rgb(5, 108, 92)", "uuid": "84e4e598-4fd7-445a-a6cf-2884c0aae4d0" }, "dark": { - "value": "rgb(36, 166, 171)", + "value": "rgb(12, 173, 142)", "uuid": "c416b5c5-0506-419f-88ca-f722f12a9d86" }, "wireframe": { @@ -2210,11 +2210,11 @@ "seafoam-1100": { "sets": { "light": { - "value": "rgb(8, 90, 95)", + "value": "rgb(3, 92, 80)", "uuid": "d1bb038a-f83b-4e97-b95f-b215c7bc2916" }, "dark": { - "value": "rgb(46, 186, 192)", + "value": "rgb(14, 190, 156)", "uuid": "4a853bfc-f1b0-4e39-8cd8-da0350c99cd5" }, "wireframe": { @@ -2226,11 +2226,11 @@ "seafoam-1200": { "sets": { "light": { - "value": "rgb(3, 74, 79)", + "value": "rgb(1, 75, 67)", "uuid": "0eab9416-b6f5-4d26-bde6-9b8a840f7681" }, "dark": { - "value": "rgb(62, 209, 214)", + "value": "rgb(29, 214, 176)", "uuid": "8e4c65b7-d819-4ffd-9398-71e9d294ba63" }, "wireframe": { @@ -2242,11 +2242,11 @@ "seafoam-1300": { "sets": { "light": { - "value": "rgb(0, 59, 63)", + "value": "rgb(0, 60, 54)", "uuid": "a88e0c6e-dfd5-4a43-8d43-97fa10101165" }, "dark": { - "value": "rgb(94, 229, 234)", + "value": "rgb(122, 229, 203)", "uuid": "ef35ace8-870d-42e0-8ce6-2df61415431f" }, "wireframe": { @@ -2258,11 +2258,11 @@ "seafoam-1400": { "sets": { "light": { - "value": "rgb(0, 45, 48)", + "value": "rgb(0, 46, 40)", "uuid": "52c9177c-bc81-41b1-ba6d-9b075fbe8541" }, "dark": { - "value": "rgb(170, 242, 245)", + "value": "rgb(186, 241, 222)", "uuid": "9499384b-336c-4a41-af05-645a92ae40d4" }, "wireframe": { @@ -2274,11 +2274,11 @@ "seafoam-1500": { "sets": { "dark": { - "value": "rgb(219, 251, 252)", + "value": "rgb(229, 249, 243)", "uuid": "6e538a2b-05f7-41f5-af4b-89bc3039c25a" }, "light": { - "value": "rgb(0, 32, 35)", + "value": "rgb(0, 33, 29)", "uuid": "4cbacecc-89c9-482d-b3f5-7d8f85f0a3f1" } } @@ -2290,7 +2290,7 @@ "uuid": "29aae26e-f4a4-4e5a-acd2-02df01f6cc90" }, "light": { - "value": "rgb(0, 15, 17)", + "value": "rgb(0, 15, 14)", "uuid": "ebbfe9f4-5c24-46b2-983a-98570ed5ec78" } } @@ -2330,7 +2330,7 @@ "cyan-300": { "sets": { "light": { - "value": "rgb(181, 230, 252)", + "value": "rgb(183, 231, 252)", "uuid": "b54275ad-3ea6-4e69-aea2-97f488308fcc" }, "dark": { @@ -2346,11 +2346,11 @@ "cyan-400": { "sets": { "light": { - "value": "rgb(146, 216, 255)", + "value": "rgb(138, 213, 255)", "uuid": "a33de292-77a9-40b7-961e-41ebfe331ad0" }, "dark": { - "value": "rgb(0, 60, 82)", + "value": "rgb(0, 64, 88)", "uuid": "94a5bd53-d69a-4063-b630-1976230d4f2d" }, "wireframe": { @@ -2362,11 +2362,11 @@ "cyan-500": { "sets": { "light": { - "value": "rgb(99, 196, 255)", + "value": "rgb(92, 192, 255)", "uuid": "f3e8ff9f-e60b-4bce-9c39-280aef6fcb08" }, "dark": { - "value": "rgb(0, 74, 101)", + "value": "rgb(0, 82, 113)", "uuid": "909baeef-fd2f-4550-89ea-fb7ac9ea2db5" }, "wireframe": { @@ -2378,11 +2378,11 @@ "cyan-600": { "sets": { "light": { - "value": "rgb(60, 175, 255)", + "value": "rgb(48, 167, 254)", "uuid": "d65f3e1d-ad9d-4fa7-ac06-37235124e999" }, "dark": { - "value": "rgb(0, 88, 123)", + "value": "rgb(3, 99, 140)", "uuid": "d753ef33-bfc0-424b-a2ac-ea87ecbee590" }, "wireframe": { @@ -2394,11 +2394,11 @@ "cyan-700": { "sets": { "light": { - "value": "rgb(34, 155, 239)", + "value": "rgb(29, 149, 231)", "uuid": "08b4548a-618d-4ab5-ae46-2a60c7936f57" }, "dark": { - "value": "rgb(4, 104, 147)", + "value": "rgb(8, 115, 168)", "uuid": "3cb348d4-14a9-43da-84c4-068cf46c8c6f" }, "wireframe": { @@ -2410,11 +2410,11 @@ "cyan-800": { "sets": { "light": { - "value": "rgb(21, 138, 212)", + "value": "rgb(18, 134, 205)", "uuid": "6dbdd00d-3b03-4eab-a77c-3a1f16d5e6ef" }, "dark": { - "value": "rgb(10, 118, 175)", + "value": "rgb(15, 128, 194)", "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" }, "wireframe": { @@ -2430,7 +2430,7 @@ "uuid": "71769f93-467d-497a-b214-45c8753f34f5" }, "dark": { - "value": "rgb(19, 136, 207)", + "value": "rgb(24, 142, 220)", "uuid": "9c183829-4858-4908-b1ac-d89f40f2e903" }, "wireframe": { @@ -2446,7 +2446,7 @@ "uuid": "25c689a1-7876-44fa-8849-3a8db03a866c" }, "dark": { - "value": "rgb(36, 156, 242)", + "value": "rgb(38, 159, 244)", "uuid": "04f3d463-9118-43d5-973d-8bf94417912d" }, "wireframe": { @@ -2578,11 +2578,11 @@ "indigo-300": { "sets": { "light": { - "value": "rgb(214, 221, 255)", + "value": "rgb(216, 222, 255)", "uuid": "a220a225-3bb9-446c-8ee3-732a96a150d2" }, "dark": { - "value": "rgb(47, 1, 141)", + "value": "rgb(47, 0, 140)", "uuid": "716f244e-67c5-4566-b824-ed7f2192b585" }, "wireframe": { @@ -2594,11 +2594,11 @@ "indigo-400": { "sets": { "light": { - "value": "rgb(195, 204, 255)", + "value": "rgb(192, 201, 255)", "uuid": "891799a7-b51d-4769-abe3-62dd0da6e190" }, "dark": { - "value": "rgb(58, 8, 165)", + "value": "rgb(62, 12, 174)", "uuid": "c256e06e-07bc-4dcd-9239-48841916c93b" }, "wireframe": { @@ -2610,11 +2610,11 @@ "indigo-500": { "sets": { "light": { - "value": "rgb(171, 182, 255)", + "value": "rgb(167, 178, 255)", "uuid": "2751b8ae-f347-4a57-938d-98a5ee86071c" }, "dark": { - "value": "rgb(72, 21, 195)", + "value": "rgb(79, 30, 209)", "uuid": "1ea0564b-6e88-456e-a796-4620d57b8771" }, "wireframe": { @@ -2626,11 +2626,11 @@ "indigo-600": { "sets": { "light": { - "value": "rgb(152, 160, 255)", + "value": "rgb(145, 151, 254)", "uuid": "2d69bbe7-37c1-4302-9fee-39733bb13a86" }, "dark": { - "value": "rgb(85, 38, 220)", + "value": "rgb(95, 52, 235)", "uuid": "df590853-ce16-4ddf-bbe9-a912695eae17" }, "wireframe": { @@ -2642,11 +2642,11 @@ "indigo-700": { "sets": { "light": { - "value": "rgb(136, 136, 254)", + "value": "rgb(132, 128, 254)", "uuid": "3c57f9f6-e837-450b-9443-a702caa049a4" }, "dark": { - "value": "rgb(100, 58, 240)", + "value": "rgb(109, 75, 248)", "uuid": "0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16" }, "wireframe": { @@ -2658,11 +2658,11 @@ "indigo-800": { "sets": { "light": { - "value": "rgb(125, 112, 254)", + "value": "rgb(122, 106, 253)", "uuid": "f5a317ea-25f2-4193-9305-f20c231e786e" }, "dark": { - "value": "rgb(112, 81, 249)", + "value": "rgb(119, 97, 252)", "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" }, "wireframe": { @@ -2674,11 +2674,11 @@ "indigo-900": { "sets": { "light": { - "value": "rgb(113, 84, 250)", + "value": "rgb(113, 85, 250)", "uuid": "87b65e85-d767-47bb-8af5-01b85282c663" }, "dark": { - "value": "rgb(123, 109, 253)", + "value": "rgb(128, 119, 254)", "uuid": "5cb7ff5e-ec53-4df8-b59d-a1419190a6cf" }, "wireframe": { @@ -2694,7 +2694,7 @@ "uuid": "9d1a9aa9-a7b3-4254-9e55-a992784bb7b5" }, "dark": { - "value": "rgb(137, 137, 254)", + "value": "rgb(139, 141, 254)", "uuid": "0bf6170c-50d7-4600-96fe-2d1af93f173a" }, "wireframe": { @@ -2810,7 +2810,7 @@ "purple-200": { "sets": { "light": { - "value": "rgb(245, 237, 252)", + "value": "rgb(244, 235, 252)", "uuid": "65816c3d-544e-4bbd-bf0e-c0981e08a5cb" }, "dark": { @@ -2826,7 +2826,7 @@ "purple-300": { "sets": { "light": { - "value": "rgb(234, 216, 249)", + "value": "rgb(235, 218, 249)", "uuid": "bea266d7-8f53-43b7-b7df-0daa5b7e6f89" }, "dark": { @@ -2842,11 +2842,11 @@ "purple-400": { "sets": { "light": { - "value": "rgb(223, 196, 247)", + "value": "rgb(221, 193, 246)", "uuid": "b68c2d3d-02e6-4130-9904-d2d32e67d115" }, "dark": { - "value": "rgb(78, 0, 151)", + "value": "rgb(83, 0, 159)", "uuid": "474fed30-921a-4795-8999-2310521c64c5" }, "wireframe": { @@ -2858,11 +2858,11 @@ "purple-500": { "sets": { "light": { - "value": "rgb(210, 171, 243)", + "value": "rgb(208, 167, 243)", "uuid": "9625edd4-fcdd-406a-9a66-068dcfeb3bd9" }, "dark": { - "value": "rgb(96, 0, 182)", + "value": "rgb(107, 6, 195)", "uuid": "b912e8ba-ed77-4179-9b80-7448f9e37193" }, "wireframe": { @@ -2874,11 +2874,11 @@ "purple-600": { "sets": { "light": { - "value": "rgb(196, 147, 240)", + "value": "rgb(191, 138, 238)", "uuid": "bfd24d4f-9100-4937-a45d-7614ce0ece74" }, "dark": { - "value": "rgb(116, 15, 205)", + "value": "rgb(130, 34, 215)", "uuid": "05638159-aaf7-4f3e-849e-a46e80cd9ee6" }, "wireframe": { @@ -2890,11 +2890,11 @@ "purple-700": { "sets": { "light": { - "value": "rgb(183, 122, 236)", + "value": "rgb(178, 114, 235)", "uuid": "2f218111-4cef-432b-8d69-06492e7c40c1" }, "dark": { - "value": "rgb(136, 42, 218)", + "value": "rgb(148, 62, 224)", "uuid": "fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c" }, "wireframe": { @@ -2906,11 +2906,11 @@ "purple-800": { "sets": { "light": { - "value": "rgb(169, 98, 232)", + "value": "rgb(166, 92, 231)", "uuid": "a6205c53-9e63-475c-85f4-bdd5963e1eb2" }, "dark": { - "value": "rgb(151, 68, 225)", + "value": "rgb(161, 84, 229)", "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" }, "wireframe": { @@ -2922,11 +2922,11 @@ "purple-900": { "sets": { "light": { - "value": "rgb(153, 71, 226)", + "value": "rgb(154, 71, 226)", "uuid": "b72cb9ff-2b75-487c-914f-1c10bff76f75" }, "dark": { - "value": "rgb(167, 95, 231)", + "value": "rgb(173, 105, 233)", "uuid": "12d86845-fd54-4d30-aac8-bb9451560ba5" }, "wireframe": { @@ -2942,7 +2942,7 @@ "uuid": "163a3d87-cba9-48de-8384-c2820cf03984" }, "dark": { - "value": "rgb(183, 123, 236)", + "value": "rgb(186, 127, 237)", "uuid": "e527a3bd-3543-4b40-8a9c-eb465695bdb9" }, "wireframe": { @@ -3042,11 +3042,11 @@ "fuchsia-100": { "sets": { "light": { - "value": "rgb(255, 245, 255)", + "value": "rgb(254, 246, 255)", "uuid": "2a8743fc-d3b3-444a-b3f1-8ad816945941" }, "dark": { - "value": "rgb(54, 0, 53)", + "value": "rgb(50, 0, 61)", "uuid": "3a434405-c4b0-40ef-b383-7cb9a9b60cab" }, "wireframe": { @@ -3058,11 +3058,11 @@ "fuchsia-200": { "sets": { "light": { - "value": "rgb(255, 232, 254)", + "value": "rgb(253, 233, 255)", "uuid": "a304f27a-7a17-4c12-88d1-07171fa3ca75" }, "dark": { - "value": "rgb(65, 0, 64)", + "value": "rgb(61, 0, 74)", "uuid": "779ec441-475d-41de-b207-3e139c7c3168" }, "wireframe": { @@ -3074,11 +3074,11 @@ "fuchsia-300": { "sets": { "light": { - "value": "rgb(255, 208, 254)", + "value": "rgb(250, 211, 255)", "uuid": "723a23a1-0bb0-4c11-89cf-0eca2a421867" }, "dark": { - "value": "rgb(84, 0, 82)", + "value": "rgb(79, 0, 95)", "uuid": "5fa7110f-0c33-4139-8277-eff40921939e" }, "wireframe": { @@ -3090,11 +3090,11 @@ "fuchsia-400": { "sets": { "light": { - "value": "rgb(255, 182, 254)", + "value": "rgb(247, 181, 255)", "uuid": "ce8ce579-0dca-462c-a9d3-49e451931812" }, "dark": { - "value": "rgb(103, 2, 99)", + "value": "rgb(102, 9, 120)", "uuid": "a81bfdd6-4b80-4f1a-922d-2f6e04c27e01" }, "wireframe": { @@ -3106,11 +3106,11 @@ "fuchsia-500": { "sets": { "light": { - "value": "rgb(255, 149, 252)", + "value": "rgb(243, 147, 255)", "uuid": "779bda09-25fd-4912-9aa8-8e3a5643d0cb" }, "dark": { - "value": "rgb(124, 11, 119)", + "value": "rgb(127, 23, 146)", "uuid": "7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4" }, "wireframe": { @@ -3122,11 +3122,11 @@ "fuchsia-600": { "sets": { "light": { - "value": "rgb(255, 109, 249)", + "value": "rgb(236, 105, 255)", "uuid": "bd2db3f8-5eae-4fcb-a1f6-307d3b8e4139" }, "dark": { - "value": "rgb(145, 22, 138)", + "value": "rgb(151, 38, 170)", "uuid": "0fb76488-9965-4cf9-878f-ceed7fc2be43" }, "wireframe": { @@ -3138,11 +3138,11 @@ "fuchsia-700": { "sets": { "light": { - "value": "rgb(243, 75, 231)", + "value": "rgb(223, 77, 245)", "uuid": "42525649-03ba-44f7-bc8c-9a824b898920" }, "dark": { - "value": "rgb(168, 35, 158)", + "value": "rgb(173, 51, 192)", "uuid": "5f971453-aa30-4c1f-8cbc-be45ff042fcd" }, "wireframe": { @@ -3154,11 +3154,11 @@ "fuchsia-800": { "sets": { "light": { - "value": "rgb(217, 66, 204)", + "value": "rgb(200, 68, 220)", "uuid": "3b2867ea-80f8-44ca-9394-7bb17e8c5a22" }, "dark": { - "value": "rgb(189, 48, 177)", + "value": "rgb(192, 64, 212)", "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" }, "wireframe": { @@ -3170,11 +3170,11 @@ "fuchsia-900": { "sets": { "light": { - "value": "rgb(192, 50, 180)", + "value": "rgb(181, 57, 200)", "uuid": "5fa3362b-01ee-4861-9a02-6af6da804f61" }, "dark": { - "value": "rgb(214, 64, 201)", + "value": "rgb(213, 73, 235)", "uuid": "3c6d42c9-4cba-4373-a61c-c8617c509f92" }, "wireframe": { @@ -3186,11 +3186,11 @@ "fuchsia-1000": { "sets": { "light": { - "value": "rgb(166, 34, 157)", + "value": "rgb(156, 40, 175)", "uuid": "fa79840c-fe56-4f21-b9c5-f1e24f89e031" }, "dark": { - "value": "rgb(245, 76, 234)", + "value": "rgb(232, 91, 253)", "uuid": "a13d5f15-e4cc-4f7c-928f-aaccbf0d590e" }, "wireframe": { @@ -3202,11 +3202,11 @@ "fuchsia-1100": { "sets": { "light": { - "value": "rgb(144, 21, 137)", + "value": "rgb(135, 27, 154)", "uuid": "44aeb8b3-dd63-43a5-adb6-67cca83ca4c5" }, "dark": { - "value": "rgb(255, 112, 249)", + "value": "rgb(240, 122, 255)", "uuid": "0a4eb3af-d067-4d9f-af91-66c676e49e26" }, "wireframe": { @@ -3218,11 +3218,11 @@ "fuchsia-1200": { "sets": { "light": { - "value": "rgb(120, 9, 116)", + "value": "rgb(113, 15, 131)", "uuid": "fc66406d-0e4c-4f82-9fa6-aec444f04070" }, "dark": { - "value": "rgb(255, 154, 253)", + "value": "rgb(245, 159, 255)", "uuid": "0d93ff9f-63e8-4caf-9e7b-714e56d968d4" }, "wireframe": { @@ -3234,11 +3234,11 @@ "fuchsia-1300": { "sets": { "light": { - "value": "rgb(99, 1, 96)", + "value": "rgb(92, 4, 109)", "uuid": "00cfb450-b2b1-47ea-aaf2-221827cca75d" }, "dark": { - "value": "rgb(255, 188, 254)", + "value": "rgb(248, 191, 255)", "uuid": "abd44b32-b837-4e11-95c7-4ba1c34db44b" }, "wireframe": { @@ -3250,11 +3250,11 @@ "fuchsia-1400": { "sets": { "light": { - "value": "rgb(77, 0, 75)", + "value": "rgb(72, 0, 88)", "uuid": "e5fc57ed-6d37-4496-a89c-db93104cb333" }, "dark": { - "value": "rgb(255, 218, 254)", + "value": "rgb(251, 219, 255)", "uuid": "7c819391-d74c-4326-ae0d-fe3534eb44e3" }, "wireframe": { @@ -3266,11 +3266,11 @@ "fuchsia-1500": { "sets": { "dark": { - "value": "rgb(255, 240, 255)", + "value": "rgb(253, 241, 255)", "uuid": "ff510e34-7c7c-4795-a224-b1e1c5cc25e0" }, "light": { - "value": "rgb(57, 0, 56)", + "value": "rgb(54, 0, 66)", "uuid": "afdfcd22-19fd-4306-a069-c8f9cd0d4f2d" } } @@ -3282,7 +3282,7 @@ "uuid": "c06ab95f-6471-4840-99cc-710851d25de4" }, "light": { - "value": "rgb(31, 0, 30)", + "value": "rgb(29, 0, 35)", "uuid": "38117e2a-efd1-4edd-8284-6fb0bc7482cc" } } @@ -3294,7 +3294,7 @@ "uuid": "06219a66-5150-42ab-a9fd-c743058728af" }, "dark": { - "value": "rgb(61, 0, 21)", + "value": "rgb(59, 0, 22)", "uuid": "9149371a-1978-4136-a89c-8895edd35e7d" }, "wireframe": { @@ -3306,11 +3306,11 @@ "magenta-200": { "sets": { "light": { - "value": "rgb(255, 235, 242)", + "value": "rgb(255, 232, 240)", "uuid": "0a9c01d3-0659-4884-a0e8-7032deeee766" }, "dark": { - "value": "rgb(73, 0, 25)", + "value": "rgb(74, 0, 27)", "uuid": "f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8" }, "wireframe": { @@ -3322,11 +3322,11 @@ "magenta-300": { "sets": { "light": { - "value": "rgb(255, 211, 226)", + "value": "rgb(255, 213, 227)", "uuid": "bfe2436d-c026-4641-8cd7-a9824f6948dd" }, "dark": { - "value": "rgb(94, 0, 33)", + "value": "rgb(93, 0, 34)", "uuid": "673ab9b4-e296-4472-b0b5-15adf9f1f762" }, "wireframe": { @@ -3338,11 +3338,11 @@ "magenta-400": { "sets": { "light": { - "value": "rgb(255, 189, 212)", + "value": "rgb(255, 185, 208)", "uuid": "4419b5e5-344d-4905-b39d-8935bedf7d6c" }, "dark": { - "value": "rgb(115, 0, 41)", + "value": "rgb(123, 0, 45)", "uuid": "60560de2-28e6-44b4-bcff-f357fe13a4a7" }, "wireframe": { @@ -3354,11 +3354,11 @@ "magenta-500": { "sets": { "light": { - "value": "rgb(255, 158, 192)", + "value": "rgb(255, 152, 187)", "uuid": "d7c3e696-4ec4-497f-89c5-bad17cb4699a" }, "dark": { - "value": "rgb(141, 1, 52)", + "value": "rgb(152, 7, 60)", "uuid": "830123a6-0e42-4c4f-9b20-2f4204d37af8" }, "wireframe": { @@ -3370,11 +3370,11 @@ "magenta-600": { "sets": { "light": { - "value": "rgb(255, 126, 172)", + "value": "rgb(255, 112, 159)", "uuid": "329f4efa-6f0b-4bc1-95f7-1121bda7f421" }, "dark": { - "value": "rgb(165, 5, 63)", + "value": "rgb(181, 19, 76)", "uuid": "e6b14a1d-e26e-41c4-b386-7fb3f95b8c93" }, "wireframe": { @@ -3386,11 +3386,11 @@ "magenta-700": { "sets": { "light": { - "value": "rgb(255, 86, 145)", + "value": "rgb(255, 72, 133)", "uuid": "fcacf0f0-c919-4705-b4c2-6edbe2796fb0" }, "dark": { - "value": "rgb(192, 10, 74)", + "value": "rgb(207, 31, 92)", "uuid": "11055a6b-7e81-4b59-9feb-8b0b6352be07" }, "wireframe": { @@ -3402,11 +3402,11 @@ "magenta-800": { "sets": { "light": { - "value": "rgb(249, 41, 111)", + "value": "rgb(240, 45, 110)", "uuid": "21e774f7-89d8-438d-9fc4-aa93261022d1" }, "dark": { - "value": "rgb(219, 18, 87)", + "value": "rgb(231, 41, 105)", "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" }, "wireframe": { @@ -3418,11 +3418,11 @@ "magenta-900": { "sets": { "light": { - "value": "rgb(222, 20, 89)", + "value": "rgb(217, 35, 97)", "uuid": "0166ed9b-52e7-447a-b45d-de29ba85eb0d" }, "dark": { - "value": "rgb(247, 38, 108)", + "value": "rgb(255, 51, 119)", "uuid": "fa5e523e-7ee3-46d0-971f-4ee95c7222b8" }, "wireframe": { @@ -3434,11 +3434,11 @@ "magenta-1000": { "sets": { "light": { - "value": "rgb(190, 9, 73)", + "value": "rgb(186, 22, 80)", "uuid": "98125f18-a061-4aa7-a0c5-a746d635c4c5" }, "dark": { - "value": "rgb(255, 89, 147)", + "value": "rgb(255, 96, 149)", "uuid": "bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154" }, "wireframe": { @@ -3454,7 +3454,7 @@ "uuid": "29d203d7-7c2c-4f36-a5f3-d84fab6be9f1" }, "dark": { - "value": "rgb(255, 128, 173)", + "value": "rgb(255, 128, 171)", "uuid": "548a74eb-4401-44f4-85b4-921287d84ac9" }, "wireframe": { @@ -3470,7 +3470,7 @@ "uuid": "2a9f4ecf-5678-4345-973a-da1e066eaf10" }, "dark": { - "value": "rgb(255, 163, 196)", + "value": "rgb(255, 163, 194)", "uuid": "9c634688-1ad5-438b-bd44-a92c64ef9934" }, "wireframe": { @@ -3486,7 +3486,7 @@ "uuid": "0be3f108-028b-4fdd-9a98-8bb24deec2d8" }, "dark": { - "value": "rgb(255, 193, 215)", + "value": "rgb(255, 193, 214)", "uuid": "6c441ca7-0294-462f-ac18-7b28ff20d7ff" }, "wireframe": { @@ -3502,7 +3502,7 @@ "uuid": "40d9a0f7-0085-4001-a22e-3c22d3887846" }, "dark": { - "value": "rgb(255, 220, 233)", + "value": "rgb(255, 220, 232)", "uuid": "15f36ded-01af-4c5d-8b11-45523e7d908e" }, "wireframe": { From 0af2674d8bde5678e9f465dff65e552efea6ebc2 Mon Sep 17 00:00:00 2001 From: Frank Karstens Date: Wed, 22 Nov 2023 18:17:04 +0100 Subject: [PATCH 024/295] chore: added changeset --- .changeset/neat-balloons-rhyme.md | 5 + package-lock.json | 11210 ++++++++++++++++++++++++++++ 2 files changed, 11215 insertions(+) create mode 100644 .changeset/neat-balloons-rhyme.md create mode 100644 package-lock.json diff --git a/.changeset/neat-balloons-rhyme.md b/.changeset/neat-balloons-rhyme.md new file mode 100644 index 00000000..e71971f0 --- /dev/null +++ b/.changeset/neat-balloons-rhyme.md @@ -0,0 +1,5 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +feat: new color values for spectrum2 diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..83667782 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,11210 @@ +{ + "name": "@adobe/spectrum-dna", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "@adobe/spectrum-dna", + "license": "Apache-2.0", + "devDependencies": { + "@changesets/cli": "^2.26.2", + "@commitlint/cli": "^17.6.6", + "@commitlint/config-conventional": "^17.6.6", + "@moonrepo/cli": "^1.14.1", + "ava": "^5.3.1", + "husky": "^8.0.3", + "lint-staged": "^13.2.3", + "prettier": "^3.0.0" + }, + "engines": { + "node": "18.13.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", + "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.4.tgz", + "integrity": "sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@changesets/apply-release-plan": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/@changesets/apply-release-plan/-/apply-release-plan-6.1.4.tgz", + "integrity": "sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/config": "^2.3.1", + "@changesets/get-version-range-type": "^0.3.2", + "@changesets/git": "^2.0.0", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "detect-indent": "^6.0.0", + "fs-extra": "^7.0.1", + "lodash.startcase": "^4.4.0", + "outdent": "^0.5.0", + "prettier": "^2.7.1", + "resolve-from": "^5.0.0", + "semver": "^7.5.3" + } + }, + "node_modules/@changesets/apply-release-plan/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@changesets/assemble-release-plan": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.4.tgz", + "integrity": "sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/errors": "^0.1.4", + "@changesets/get-dependents-graph": "^1.3.6", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "semver": "^7.5.3" + } + }, + "node_modules/@changesets/changelog-git": { + "version": "0.1.14", + "resolved": "https://registry.npmjs.org/@changesets/changelog-git/-/changelog-git-0.1.14.tgz", + "integrity": "sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==", + "dev": true, + "dependencies": { + "@changesets/types": "^5.2.1" + } + }, + "node_modules/@changesets/cli": { + "version": "2.26.2", + "resolved": "https://registry.npmjs.org/@changesets/cli/-/cli-2.26.2.tgz", + "integrity": "sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/apply-release-plan": "^6.1.4", + "@changesets/assemble-release-plan": "^5.2.4", + "@changesets/changelog-git": "^0.1.14", + "@changesets/config": "^2.3.1", + "@changesets/errors": "^0.1.4", + "@changesets/get-dependents-graph": "^1.3.6", + "@changesets/get-release-plan": "^3.0.17", + "@changesets/git": "^2.0.0", + "@changesets/logger": "^0.0.5", + "@changesets/pre": "^1.0.14", + "@changesets/read": "^0.5.9", + "@changesets/types": "^5.2.1", + "@changesets/write": "^0.2.3", + "@manypkg/get-packages": "^1.1.3", + "@types/is-ci": "^3.0.0", + "@types/semver": "^7.5.0", + "ansi-colors": "^4.1.3", + "chalk": "^2.1.0", + "enquirer": "^2.3.0", + "external-editor": "^3.1.0", + "fs-extra": "^7.0.1", + "human-id": "^1.0.2", + "is-ci": "^3.0.1", + "meow": "^6.0.0", + "outdent": "^0.5.0", + "p-limit": "^2.2.0", + "preferred-pm": "^3.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.5.3", + "spawndamnit": "^2.0.0", + "term-size": "^2.1.0", + "tty-table": "^4.1.5" + }, + "bin": { + "changeset": "bin.js" + } + }, + "node_modules/@changesets/config": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@changesets/config/-/config-2.3.1.tgz", + "integrity": "sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==", + "dev": true, + "dependencies": { + "@changesets/errors": "^0.1.4", + "@changesets/get-dependents-graph": "^1.3.6", + "@changesets/logger": "^0.0.5", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "fs-extra": "^7.0.1", + "micromatch": "^4.0.2" + } + }, + "node_modules/@changesets/errors": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@changesets/errors/-/errors-0.1.4.tgz", + "integrity": "sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==", + "dev": true, + "dependencies": { + "extendable-error": "^0.1.5" + } + }, + "node_modules/@changesets/get-dependents-graph": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.6.tgz", + "integrity": "sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==", + "dev": true, + "dependencies": { + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "chalk": "^2.1.0", + "fs-extra": "^7.0.1", + "semver": "^7.5.3" + } + }, + "node_modules/@changesets/get-release-plan": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/@changesets/get-release-plan/-/get-release-plan-3.0.17.tgz", + "integrity": "sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/assemble-release-plan": "^5.2.4", + "@changesets/config": "^2.3.1", + "@changesets/pre": "^1.0.14", + "@changesets/read": "^0.5.9", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3" + } + }, + "node_modules/@changesets/get-version-range-type": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz", + "integrity": "sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==", + "dev": true + }, + "node_modules/@changesets/git": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@changesets/git/-/git-2.0.0.tgz", + "integrity": "sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/errors": "^0.1.4", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "is-subdir": "^1.1.1", + "micromatch": "^4.0.2", + "spawndamnit": "^2.0.0" + } + }, + "node_modules/@changesets/logger": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@changesets/logger/-/logger-0.0.5.tgz", + "integrity": "sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==", + "dev": true, + "dependencies": { + "chalk": "^2.1.0" + } + }, + "node_modules/@changesets/parse": { + "version": "0.3.16", + "resolved": "https://registry.npmjs.org/@changesets/parse/-/parse-0.3.16.tgz", + "integrity": "sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==", + "dev": true, + "dependencies": { + "@changesets/types": "^5.2.1", + "js-yaml": "^3.13.1" + } + }, + "node_modules/@changesets/pre": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@changesets/pre/-/pre-1.0.14.tgz", + "integrity": "sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/errors": "^0.1.4", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "fs-extra": "^7.0.1" + } + }, + "node_modules/@changesets/read": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/@changesets/read/-/read-0.5.9.tgz", + "integrity": "sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/git": "^2.0.0", + "@changesets/logger": "^0.0.5", + "@changesets/parse": "^0.3.16", + "@changesets/types": "^5.2.1", + "chalk": "^2.1.0", + "fs-extra": "^7.0.1", + "p-filter": "^2.1.0" + } + }, + "node_modules/@changesets/types": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-5.2.1.tgz", + "integrity": "sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==", + "dev": true + }, + "node_modules/@changesets/write": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@changesets/write/-/write-0.2.3.tgz", + "integrity": "sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.1", + "@changesets/types": "^5.2.1", + "fs-extra": "^7.0.1", + "human-id": "^1.0.2", + "prettier": "^2.7.1" + } + }, + "node_modules/@changesets/write/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@commitlint/cli": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.8.1.tgz", + "integrity": "sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==", + "dev": true, + "dependencies": { + "@commitlint/format": "^17.8.1", + "@commitlint/lint": "^17.8.1", + "@commitlint/load": "^17.8.1", + "@commitlint/read": "^17.8.1", + "@commitlint/types": "^17.8.1", + "execa": "^5.0.0", + "lodash.isfunction": "^3.0.9", + "resolve-from": "5.0.0", + "resolve-global": "1.0.0", + "yargs": "^17.0.0" + }, + "bin": { + "commitlint": "cli.js" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/config-conventional": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.8.1.tgz", + "integrity": "sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==", + "dev": true, + "dependencies": { + "conventional-changelog-conventionalcommits": "^6.1.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/config-validator": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.8.1.tgz", + "integrity": "sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==", + "dev": true, + "dependencies": { + "@commitlint/types": "^17.8.1", + "ajv": "^8.11.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/ensure": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.8.1.tgz", + "integrity": "sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==", + "dev": true, + "dependencies": { + "@commitlint/types": "^17.8.1", + "lodash.camelcase": "^4.3.0", + "lodash.kebabcase": "^4.1.1", + "lodash.snakecase": "^4.1.1", + "lodash.startcase": "^4.4.0", + "lodash.upperfirst": "^4.3.1" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/execute-rule": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.8.1.tgz", + "integrity": "sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==", + "dev": true, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/format": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.8.1.tgz", + "integrity": "sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==", + "dev": true, + "dependencies": { + "@commitlint/types": "^17.8.1", + "chalk": "^4.1.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/format/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@commitlint/format/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@commitlint/format/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@commitlint/format/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@commitlint/is-ignored": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.8.1.tgz", + "integrity": "sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==", + "dev": true, + "dependencies": { + "@commitlint/types": "^17.8.1", + "semver": "7.5.4" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/lint": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.8.1.tgz", + "integrity": "sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==", + "dev": true, + "dependencies": { + "@commitlint/is-ignored": "^17.8.1", + "@commitlint/parse": "^17.8.1", + "@commitlint/rules": "^17.8.1", + "@commitlint/types": "^17.8.1" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/load": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.8.1.tgz", + "integrity": "sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==", + "dev": true, + "dependencies": { + "@commitlint/config-validator": "^17.8.1", + "@commitlint/execute-rule": "^17.8.1", + "@commitlint/resolve-extends": "^17.8.1", + "@commitlint/types": "^17.8.1", + "@types/node": "20.5.1", + "chalk": "^4.1.0", + "cosmiconfig": "^8.0.0", + "cosmiconfig-typescript-loader": "^4.0.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "lodash.uniq": "^4.5.0", + "resolve-from": "^5.0.0", + "ts-node": "^10.8.1", + "typescript": "^4.6.4 || ^5.2.2" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/load/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@commitlint/load/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@commitlint/load/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@commitlint/load/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@commitlint/message": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.8.1.tgz", + "integrity": "sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==", + "dev": true, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/parse": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.8.1.tgz", + "integrity": "sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==", + "dev": true, + "dependencies": { + "@commitlint/types": "^17.8.1", + "conventional-changelog-angular": "^6.0.0", + "conventional-commits-parser": "^4.0.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/read": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.8.1.tgz", + "integrity": "sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==", + "dev": true, + "dependencies": { + "@commitlint/top-level": "^17.8.1", + "@commitlint/types": "^17.8.1", + "fs-extra": "^11.0.0", + "git-raw-commits": "^2.0.11", + "minimist": "^1.2.6" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/read/node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@commitlint/read/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@commitlint/read/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@commitlint/resolve-extends": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.8.1.tgz", + "integrity": "sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==", + "dev": true, + "dependencies": { + "@commitlint/config-validator": "^17.8.1", + "@commitlint/types": "^17.8.1", + "import-fresh": "^3.0.0", + "lodash.mergewith": "^4.6.2", + "resolve-from": "^5.0.0", + "resolve-global": "^1.0.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/rules": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.8.1.tgz", + "integrity": "sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==", + "dev": true, + "dependencies": { + "@commitlint/ensure": "^17.8.1", + "@commitlint/message": "^17.8.1", + "@commitlint/to-lines": "^17.8.1", + "@commitlint/types": "^17.8.1", + "execa": "^5.0.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/to-lines": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.8.1.tgz", + "integrity": "sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==", + "dev": true, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/top-level": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.8.1.tgz", + "integrity": "sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==", + "dev": true, + "dependencies": { + "find-up": "^5.0.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/types": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.8.1.tgz", + "integrity": "sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0" + }, + "engines": { + "node": ">=v14" + } + }, + "node_modules/@commitlint/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@commitlint/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@commitlint/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@commitlint/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@manypkg/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.5.5", + "@types/node": "^12.7.1", + "find-up": "^4.1.0", + "fs-extra": "^8.1.0" + } + }, + "node_modules/@manypkg/find-root/node_modules/@types/node": { + "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", + "dev": true + }, + "node_modules/@manypkg/find-root/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@manypkg/find-root/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@manypkg/find-root/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@manypkg/find-root/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@manypkg/get-packages": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@manypkg/get-packages/-/get-packages-1.1.3.tgz", + "integrity": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.5.5", + "@changesets/types": "^4.0.1", + "@manypkg/find-root": "^1.1.0", + "fs-extra": "^8.1.0", + "globby": "^11.0.0", + "read-yaml-file": "^1.1.0" + } + }, + "node_modules/@manypkg/get-packages/node_modules/@changesets/types": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-4.1.0.tgz", + "integrity": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==", + "dev": true + }, + "node_modules/@manypkg/get-packages/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@moonrepo/cli": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/cli/-/cli-1.17.3.tgz", + "integrity": "sha512-PuW/R9PeA71OsSZGhadhqTsn3E4tmbTDM3Q7t1GUTeQEjwdDt5WlM/deJ7dxX7D+ItgdMvaUiLhEMMbL8MkOLw==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "detect-libc": "^2.0.2" + }, + "bin": { + "moon": "moon" + }, + "optionalDependencies": { + "@moonrepo/core-linux-arm64-gnu": "^1.17.3", + "@moonrepo/core-linux-arm64-musl": "^1.17.3", + "@moonrepo/core-linux-x64-gnu": "^1.17.3", + "@moonrepo/core-linux-x64-musl": "^1.17.3", + "@moonrepo/core-macos-arm64": "^1.17.3", + "@moonrepo/core-macos-x64": "^1.17.3", + "@moonrepo/core-windows-x64-msvc": "^1.17.3" + } + }, + "node_modules/@moonrepo/core-linux-arm64-gnu": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.17.3.tgz", + "integrity": "sha512-8BlwjyGAmJum9d7EGuGsw9/64j+bgzDGADeH+YsldJ277gqmPLz8F6LRPLUr0Ddc0xcd7sbw0fJzAI4u55YfGA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@moonrepo/core-linux-arm64-musl": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-arm64-musl/-/core-linux-arm64-musl-1.17.3.tgz", + "integrity": "sha512-Kr9SqWBrTla3CxAsc/hIwLyJqs72S9WgVgMj/ZDd6c5r3Onipot/l8Esdw26xy6fIlyu387p9JNh1jWfC9OmXA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@moonrepo/core-linux-x64-gnu": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-x64-gnu/-/core-linux-x64-gnu-1.17.3.tgz", + "integrity": "sha512-YYIKooOSJeZtFJj5BcgW9tWL3IUe4WgoCHPIRbfoUGhuFw+AacUCz9XDa8/6NJpEIF7drblTDX25ztRIAIIXMw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@moonrepo/core-linux-x64-musl": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-x64-musl/-/core-linux-x64-musl-1.17.3.tgz", + "integrity": "sha512-Txw74QJOZFug/n8Z1ZmsjGt4T2d0F0wwT7zeT+0rXIuzwMX3lZG7l+zbNn/FdgmVqhCtPj20U36gM6WM4J/bhw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@moonrepo/core-macos-arm64": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-macos-arm64/-/core-macos-arm64-1.17.3.tgz", + "integrity": "sha512-nYBd8II6UpteaGAlHMLn5UfBOVOQXINUCLl/mRnD34BXFIjxS7sAShmZfUDQSlC6QQx4zf1mIZSW2BQ+3k7R2A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@moonrepo/core-macos-x64": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-macos-x64/-/core-macos-x64-1.17.3.tgz", + "integrity": "sha512-NG3atjVM1aJfEPSJUZGdpWZ+WNh5b5Iw8hJNOPUjs33tfz8QoN0UxFWohSFDwXgGxurjzyur/lc0xUBKd2n5WQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@moonrepo/core-windows-x64-msvc": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-windows-x64-msvc/-/core-windows-x64-msvc-1.17.3.tgz", + "integrity": "sha512-Wz8Lp661RNpgMCYyqATyJxkgaPLw/oMJ+Jip7c55aLOrE8o+HsNU4QqsOgkxY+6PD+7Dp9634KSrziaTPHHiVA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/is-ci": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/is-ci/-/is-ci-3.0.4.tgz", + "integrity": "sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==", + "dev": true, + "dependencies": { + "ci-info": "^3.1.0" + } + }, + "node_modules/@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.5.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz", + "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", + "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", + "dev": true, + "dependencies": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", + "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", + "dev": true, + "dependencies": { + "type-fest": "^1.0.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrgv": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz", + "integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/arrify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-3.0.0.tgz", + "integrity": "sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ava": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ava/-/ava-5.3.1.tgz", + "integrity": "sha512-Scv9a4gMOXB6+ni4toLuhAm9KYWEjsgBglJl+kMGI5+IVDt120CCDZyB5HNU9DjmLI2t4I0GbnxGLmmRfGTJGg==", + "dev": true, + "dependencies": { + "acorn": "^8.8.2", + "acorn-walk": "^8.2.0", + "ansi-styles": "^6.2.1", + "arrgv": "^1.0.2", + "arrify": "^3.0.0", + "callsites": "^4.0.0", + "cbor": "^8.1.0", + "chalk": "^5.2.0", + "chokidar": "^3.5.3", + "chunkd": "^2.0.1", + "ci-info": "^3.8.0", + "ci-parallel-vars": "^1.0.1", + "clean-yaml-object": "^0.1.0", + "cli-truncate": "^3.1.0", + "code-excerpt": "^4.0.0", + "common-path-prefix": "^3.0.0", + "concordance": "^5.0.4", + "currently-unhandled": "^0.4.1", + "debug": "^4.3.4", + "emittery": "^1.0.1", + "figures": "^5.0.0", + "globby": "^13.1.4", + "ignore-by-default": "^2.1.0", + "indent-string": "^5.0.0", + "is-error": "^2.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "matcher": "^5.0.0", + "mem": "^9.0.2", + "ms": "^2.1.3", + "p-event": "^5.0.1", + "p-map": "^5.5.0", + "picomatch": "^2.3.1", + "pkg-conf": "^4.0.0", + "plur": "^5.1.0", + "pretty-ms": "^8.0.0", + "resolve-cwd": "^3.0.0", + "stack-utils": "^2.0.6", + "strip-ansi": "^7.0.1", + "supertap": "^3.0.1", + "temp-dir": "^3.0.0", + "write-file-atomic": "^5.0.1", + "yargs": "^17.7.2" + }, + "bin": { + "ava": "entrypoints/cli.mjs" + }, + "engines": { + "node": ">=14.19 <15 || >=16.15 <17 || >=18" + }, + "peerDependencies": { + "@ava/typescript": "*" + }, + "peerDependenciesMeta": { + "@ava/typescript": { + "optional": true + } + } + }, + "node_modules/ava/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ava/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ava/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/better-path-resolve": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", + "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", + "dev": true, + "dependencies": { + "is-windows": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/blueimp-md5": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz", + "integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==", + "dev": true + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/breakword": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/breakword/-/breakword-1.0.6.tgz", + "integrity": "sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==", + "dev": true, + "dependencies": { + "wcwidth": "^1.0.1" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-4.1.0.tgz", + "integrity": "sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cbor": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/cbor/-/cbor-8.1.0.tgz", + "integrity": "sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==", + "dev": true, + "dependencies": { + "nofilter": "^3.1.0" + }, + "engines": { + "node": ">=12.19" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/chalk/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chunkd": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz", + "integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==", + "dev": true + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/ci-parallel-vars": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.1.tgz", + "integrity": "sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==", + "dev": true + }, + "node_modules/clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clean-stack/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clean-yaml-object": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz", + "integrity": "sha512-3yONmlN9CSAkzNwnRCiJQ7Q2xK5mWuEfL3PuTZcAUzhObbXsfsnMptJzXwz93nc5zn9V9TwCVMmV7w4xsm43dw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dev": true, + "dependencies": { + "restore-cursor": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/code-excerpt": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-4.0.0.tgz", + "integrity": "sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==", + "dev": true, + "dependencies": { + "convert-to-spaces": "^2.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/commander": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/concordance": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/concordance/-/concordance-5.0.4.tgz", + "integrity": "sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==", + "dev": true, + "dependencies": { + "date-time": "^3.1.0", + "esutils": "^2.0.3", + "fast-diff": "^1.2.0", + "js-string-escape": "^1.0.1", + "lodash": "^4.17.15", + "md5-hex": "^3.0.1", + "semver": "^7.3.2", + "well-known-symbols": "^2.0.0" + }, + "engines": { + "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14" + } + }, + "node_modules/conventional-changelog-angular": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz", + "integrity": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==", + "dev": true, + "dependencies": { + "compare-func": "^2.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/conventional-changelog-conventionalcommits": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-6.1.0.tgz", + "integrity": "sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==", + "dev": true, + "dependencies": { + "compare-func": "^2.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/conventional-commits-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz", + "integrity": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==", + "dev": true, + "dependencies": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.3.5", + "meow": "^8.1.2", + "split2": "^3.2.2" + }, + "bin": { + "conventional-commits-parser": "cli.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/conventional-commits-parser/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-commits-parser/node_modules/meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-commits-parser/node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/conventional-commits-parser/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/conventional-commits-parser/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/convert-to-spaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-2.0.1.tgz", + "integrity": "sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/cosmiconfig-typescript-loader": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz", + "integrity": "sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==", + "dev": true, + "engines": { + "node": ">=v14.21.3" + }, + "peerDependencies": { + "@types/node": "*", + "cosmiconfig": ">=7", + "ts-node": ">=10", + "typescript": ">=4" + } + }, + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csv": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/csv/-/csv-5.5.3.tgz", + "integrity": "sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==", + "dev": true, + "dependencies": { + "csv-generate": "^3.4.3", + "csv-parse": "^4.16.3", + "csv-stringify": "^5.6.5", + "stream-transform": "^2.1.3" + }, + "engines": { + "node": ">= 0.1.90" + } + }, + "node_modules/csv-generate": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/csv-generate/-/csv-generate-3.4.3.tgz", + "integrity": "sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==", + "dev": true + }, + "node_modules/csv-parse": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz", + "integrity": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==", + "dev": true + }, + "node_modules/csv-stringify": { + "version": "5.6.5", + "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-5.6.5.tgz", + "integrity": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==", + "dev": true + }, + "node_modules/currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", + "dev": true, + "dependencies": { + "array-find-index": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/date-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/date-time/-/date-time-3.1.0.tgz", + "integrity": "sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==", + "dev": true, + "dependencies": { + "time-zone": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-libc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/emittery": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.0.1.tgz", + "integrity": "sha512-2ID6FdrMD9KDLldGesP6317G78K7km/kMcwItRtVFva7I/cSEOIaLpewaUb+YLXVwdAp3Ctfxh/V5zIl1sj7dQ==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/enquirer/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/enquirer/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/extendable-error": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz", + "integrity": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==", + "dev": true + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/figures": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", + "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^5.0.0", + "is-unicode-supported": "^1.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/figures/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-yarn-workspace-root2": { + "version": "1.2.16", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz", + "integrity": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==", + "dev": true, + "dependencies": { + "micromatch": "^4.0.2", + "pkg-dir": "^4.2.0" + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/git-raw-commits": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, + "dependencies": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "bin": { + "git-raw-commits": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/git-raw-commits/node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/git-raw-commits/node_modules/meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-raw-commits/node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/git-raw-commits/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-raw-commits/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==", + "dev": true, + "dependencies": { + "ini": "^1.3.4" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/human-id": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/human-id/-/human-id-1.0.2.tgz", + "integrity": "sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==", + "dev": true + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/ignore-by-default": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-2.1.0.tgz", + "integrity": "sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==", + "dev": true, + "engines": { + "node": ">=10 <11 || >=12 <13 || >=14" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/irregular-plurals": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", + "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "dev": true, + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-error": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", + "integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-subdir": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz", + "integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==", + "dev": true, + "dependencies": { + "better-path-resolve": "1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-text-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, + "dependencies": { + "text-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-string-escape": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", + "integrity": "sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "dependencies": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + }, + "bin": { + "JSONStream": "bin.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lint-staged": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.3.0.tgz", + "integrity": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==", + "dev": true, + "dependencies": { + "chalk": "5.3.0", + "commander": "11.0.0", + "debug": "4.3.4", + "execa": "7.2.0", + "lilconfig": "2.1.0", + "listr2": "6.6.1", + "micromatch": "4.0.5", + "pidtree": "0.6.0", + "string-argv": "0.3.2", + "yaml": "2.3.1" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/lint-staged/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", + "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", + "dev": true, + "dependencies": { + "cli-truncate": "^3.1.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^5.0.1", + "rfdc": "^1.3.0", + "wrap-ansi": "^8.1.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } + } + }, + "node_modules/load-json-file": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", + "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/load-yaml-file": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz", + "integrity": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.5", + "js-yaml": "^3.13.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "node_modules/lodash.isfunction": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", + "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==", + "dev": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true + }, + "node_modules/lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", + "dev": true + }, + "node_modules/lodash.snakecase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", + "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", + "dev": true + }, + "node_modules/lodash.startcase": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", + "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "dev": true + }, + "node_modules/log-update": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", + "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", + "dev": true, + "dependencies": { + "ansi-escapes": "^5.0.0", + "cli-cursor": "^4.0.0", + "slice-ansi": "^5.0.0", + "strip-ansi": "^7.0.1", + "wrap-ansi": "^8.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "dependencies": { + "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/matcher": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-5.0.0.tgz", + "integrity": "sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/matcher/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/md5-hex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz", + "integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==", + "dev": true, + "dependencies": { + "blueimp-md5": "^2.10.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mem": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/mem/-/mem-9.0.2.tgz", + "integrity": "sha512-F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A==", + "dev": true, + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sindresorhus/mem?sponsor=1" + } + }, + "node_modules/meow": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz", + "integrity": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "^4.0.2", + "normalize-package-data": "^2.5.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.13.1", + "yargs-parser": "^18.1.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/minimist-options/node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixme": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/mixme/-/mixme-0.5.10.tgz", + "integrity": "sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==", + "dev": true, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/nofilter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz", + "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==", + "dev": true, + "engines": { + "node": ">=12.19" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/onetime/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/outdent": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.5.0.tgz", + "integrity": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==", + "dev": true + }, + "node_modules/p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-event": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-5.0.1.tgz", + "integrity": "sha512-dd589iCQ7m1L0bmC5NLlVYfy3TbBEsMUfWx9PyAgPeIcFZ/E2yaTZ4Rz4MiBmmJShviiftHVXOqfnfzJ6kyMrQ==", + "dev": true, + "dependencies": { + "p-timeout": "^5.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", + "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", + "dev": true, + "dependencies": { + "p-map": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-filter/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", + "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", + "dev": true, + "dependencies": { + "aggregate-error": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-timeout": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-5.1.0.tgz", + "integrity": "sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module/node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-ms": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-3.0.0.tgz", + "integrity": "sha512-Tpb8Z7r7XbbtBTrM9UhpkzzaMrqA2VXMT3YChzYltwV3P3pM6t8wl7TvpMnSTosz1aQAdVib7kdoys7vYOPerw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-conf": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-4.0.0.tgz", + "integrity": "sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==", + "dev": true, + "dependencies": { + "find-up": "^6.0.0", + "load-json-file": "^7.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "dependencies": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/pkg-conf/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plur": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/plur/-/plur-5.1.0.tgz", + "integrity": "sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==", + "dev": true, + "dependencies": { + "irregular-plurals": "^3.3.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/preferred-pm": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.2.tgz", + "integrity": "sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==", + "dev": true, + "dependencies": { + "find-up": "^5.0.0", + "find-yarn-workspace-root2": "1.2.16", + "path-exists": "^4.0.0", + "which-pm": "2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prettier": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", + "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-ms": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-8.0.0.tgz", + "integrity": "sha512-ASJqOugUF1bbzI35STMBUpZqdfYKlJugy6JBziGi2EE+AL5JPJGSzvpeVXojxrr0ViUYoToUjb5kjSEGf7Y83Q==", + "dev": true, + "dependencies": { + "parse-ms": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-yaml-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-1.1.0.tgz", + "integrity": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.5", + "js-yaml": "^3.6.1", + "pify": "^4.0.1", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/redent/node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-global": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", + "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", + "dev": true, + "dependencies": { + "global-dirs": "^0.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serialize-error/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/smartwrap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/smartwrap/-/smartwrap-2.0.2.tgz", + "integrity": "sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==", + "dev": true, + "dependencies": { + "array.prototype.flat": "^1.2.3", + "breakword": "^1.0.5", + "grapheme-splitter": "^1.0.4", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1", + "yargs": "^15.1.0" + }, + "bin": { + "smartwrap": "src/terminal-adapter.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/smartwrap/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/smartwrap/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/smartwrap/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/smartwrap/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/smartwrap/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/smartwrap/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/spawndamnit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/spawndamnit/-/spawndamnit-2.0.0.tgz", + "integrity": "sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==", + "dev": true, + "dependencies": { + "cross-spawn": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "node_modules/spawndamnit/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/spawndamnit/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/spawndamnit/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spawndamnit/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spawndamnit/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/spawndamnit/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "node_modules/split2": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "dependencies": { + "readable-stream": "^3.0.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/stream-transform": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-2.1.3.tgz", + "integrity": "sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==", + "dev": true, + "dependencies": { + "mixme": "^0.5.1" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supertap": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz", + "integrity": "sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==", + "dev": true, + "dependencies": { + "indent-string": "^5.0.0", + "js-yaml": "^3.14.1", + "serialize-error": "^7.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", + "dev": true, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/term-size": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", + "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "dependencies": { + "readable-stream": "3" + } + }, + "node_modules/time-zone": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz", + "integrity": "sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/tty-table": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/tty-table/-/tty-table-4.2.3.tgz", + "integrity": "sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "csv": "^5.5.3", + "kleur": "^4.1.5", + "smartwrap": "^2.0.2", + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.1", + "yargs": "^17.7.1" + }, + "bin": { + "tty-table": "adapters/terminal-adapter.js" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/tty-table/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tty-table/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/tty-table/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/tty-table/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tty-table/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tty-table/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", + "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/well-known-symbols": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz", + "integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "node_modules/which-pm": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz", + "integrity": "sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==", + "dev": true, + "dependencies": { + "load-yaml-file": "^0.2.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8.15" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/write-file-atomic": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/write-file-atomic/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", + "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true + }, + "@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + } + }, + "@babel/runtime": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.4.tgz", + "integrity": "sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@changesets/apply-release-plan": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/@changesets/apply-release-plan/-/apply-release-plan-6.1.4.tgz", + "integrity": "sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/config": "^2.3.1", + "@changesets/get-version-range-type": "^0.3.2", + "@changesets/git": "^2.0.0", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "detect-indent": "^6.0.0", + "fs-extra": "^7.0.1", + "lodash.startcase": "^4.4.0", + "outdent": "^0.5.0", + "prettier": "^2.7.1", + "resolve-from": "^5.0.0", + "semver": "^7.5.3" + }, + "dependencies": { + "prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true + } + } + }, + "@changesets/assemble-release-plan": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/@changesets/assemble-release-plan/-/assemble-release-plan-5.2.4.tgz", + "integrity": "sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/errors": "^0.1.4", + "@changesets/get-dependents-graph": "^1.3.6", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "semver": "^7.5.3" + } + }, + "@changesets/changelog-git": { + "version": "0.1.14", + "resolved": "https://registry.npmjs.org/@changesets/changelog-git/-/changelog-git-0.1.14.tgz", + "integrity": "sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==", + "dev": true, + "requires": { + "@changesets/types": "^5.2.1" + } + }, + "@changesets/cli": { + "version": "2.26.2", + "resolved": "https://registry.npmjs.org/@changesets/cli/-/cli-2.26.2.tgz", + "integrity": "sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/apply-release-plan": "^6.1.4", + "@changesets/assemble-release-plan": "^5.2.4", + "@changesets/changelog-git": "^0.1.14", + "@changesets/config": "^2.3.1", + "@changesets/errors": "^0.1.4", + "@changesets/get-dependents-graph": "^1.3.6", + "@changesets/get-release-plan": "^3.0.17", + "@changesets/git": "^2.0.0", + "@changesets/logger": "^0.0.5", + "@changesets/pre": "^1.0.14", + "@changesets/read": "^0.5.9", + "@changesets/types": "^5.2.1", + "@changesets/write": "^0.2.3", + "@manypkg/get-packages": "^1.1.3", + "@types/is-ci": "^3.0.0", + "@types/semver": "^7.5.0", + "ansi-colors": "^4.1.3", + "chalk": "^2.1.0", + "enquirer": "^2.3.0", + "external-editor": "^3.1.0", + "fs-extra": "^7.0.1", + "human-id": "^1.0.2", + "is-ci": "^3.0.1", + "meow": "^6.0.0", + "outdent": "^0.5.0", + "p-limit": "^2.2.0", + "preferred-pm": "^3.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.5.3", + "spawndamnit": "^2.0.0", + "term-size": "^2.1.0", + "tty-table": "^4.1.5" + } + }, + "@changesets/config": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@changesets/config/-/config-2.3.1.tgz", + "integrity": "sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==", + "dev": true, + "requires": { + "@changesets/errors": "^0.1.4", + "@changesets/get-dependents-graph": "^1.3.6", + "@changesets/logger": "^0.0.5", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "fs-extra": "^7.0.1", + "micromatch": "^4.0.2" + } + }, + "@changesets/errors": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@changesets/errors/-/errors-0.1.4.tgz", + "integrity": "sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==", + "dev": true, + "requires": { + "extendable-error": "^0.1.5" + } + }, + "@changesets/get-dependents-graph": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.6.tgz", + "integrity": "sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==", + "dev": true, + "requires": { + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "chalk": "^2.1.0", + "fs-extra": "^7.0.1", + "semver": "^7.5.3" + } + }, + "@changesets/get-release-plan": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/@changesets/get-release-plan/-/get-release-plan-3.0.17.tgz", + "integrity": "sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/assemble-release-plan": "^5.2.4", + "@changesets/config": "^2.3.1", + "@changesets/pre": "^1.0.14", + "@changesets/read": "^0.5.9", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3" + } + }, + "@changesets/get-version-range-type": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz", + "integrity": "sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==", + "dev": true + }, + "@changesets/git": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@changesets/git/-/git-2.0.0.tgz", + "integrity": "sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/errors": "^0.1.4", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "is-subdir": "^1.1.1", + "micromatch": "^4.0.2", + "spawndamnit": "^2.0.0" + } + }, + "@changesets/logger": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@changesets/logger/-/logger-0.0.5.tgz", + "integrity": "sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==", + "dev": true, + "requires": { + "chalk": "^2.1.0" + } + }, + "@changesets/parse": { + "version": "0.3.16", + "resolved": "https://registry.npmjs.org/@changesets/parse/-/parse-0.3.16.tgz", + "integrity": "sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==", + "dev": true, + "requires": { + "@changesets/types": "^5.2.1", + "js-yaml": "^3.13.1" + } + }, + "@changesets/pre": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@changesets/pre/-/pre-1.0.14.tgz", + "integrity": "sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/errors": "^0.1.4", + "@changesets/types": "^5.2.1", + "@manypkg/get-packages": "^1.1.3", + "fs-extra": "^7.0.1" + } + }, + "@changesets/read": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/@changesets/read/-/read-0.5.9.tgz", + "integrity": "sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/git": "^2.0.0", + "@changesets/logger": "^0.0.5", + "@changesets/parse": "^0.3.16", + "@changesets/types": "^5.2.1", + "chalk": "^2.1.0", + "fs-extra": "^7.0.1", + "p-filter": "^2.1.0" + } + }, + "@changesets/types": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-5.2.1.tgz", + "integrity": "sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==", + "dev": true + }, + "@changesets/write": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@changesets/write/-/write-0.2.3.tgz", + "integrity": "sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.20.1", + "@changesets/types": "^5.2.1", + "fs-extra": "^7.0.1", + "human-id": "^1.0.2", + "prettier": "^2.7.1" + }, + "dependencies": { + "prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true + } + } + }, + "@commitlint/cli": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.8.1.tgz", + "integrity": "sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==", + "dev": true, + "requires": { + "@commitlint/format": "^17.8.1", + "@commitlint/lint": "^17.8.1", + "@commitlint/load": "^17.8.1", + "@commitlint/read": "^17.8.1", + "@commitlint/types": "^17.8.1", + "execa": "^5.0.0", + "lodash.isfunction": "^3.0.9", + "resolve-from": "5.0.0", + "resolve-global": "1.0.0", + "yargs": "^17.0.0" + } + }, + "@commitlint/config-conventional": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.8.1.tgz", + "integrity": "sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==", + "dev": true, + "requires": { + "conventional-changelog-conventionalcommits": "^6.1.0" + } + }, + "@commitlint/config-validator": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.8.1.tgz", + "integrity": "sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==", + "dev": true, + "requires": { + "@commitlint/types": "^17.8.1", + "ajv": "^8.11.0" + } + }, + "@commitlint/ensure": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.8.1.tgz", + "integrity": "sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==", + "dev": true, + "requires": { + "@commitlint/types": "^17.8.1", + "lodash.camelcase": "^4.3.0", + "lodash.kebabcase": "^4.1.1", + "lodash.snakecase": "^4.1.1", + "lodash.startcase": "^4.4.0", + "lodash.upperfirst": "^4.3.1" + } + }, + "@commitlint/execute-rule": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.8.1.tgz", + "integrity": "sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==", + "dev": true + }, + "@commitlint/format": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.8.1.tgz", + "integrity": "sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==", + "dev": true, + "requires": { + "@commitlint/types": "^17.8.1", + "chalk": "^4.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@commitlint/is-ignored": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.8.1.tgz", + "integrity": "sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==", + "dev": true, + "requires": { + "@commitlint/types": "^17.8.1", + "semver": "7.5.4" + } + }, + "@commitlint/lint": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.8.1.tgz", + "integrity": "sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==", + "dev": true, + "requires": { + "@commitlint/is-ignored": "^17.8.1", + "@commitlint/parse": "^17.8.1", + "@commitlint/rules": "^17.8.1", + "@commitlint/types": "^17.8.1" + } + }, + "@commitlint/load": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.8.1.tgz", + "integrity": "sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==", + "dev": true, + "requires": { + "@commitlint/config-validator": "^17.8.1", + "@commitlint/execute-rule": "^17.8.1", + "@commitlint/resolve-extends": "^17.8.1", + "@commitlint/types": "^17.8.1", + "@types/node": "20.5.1", + "chalk": "^4.1.0", + "cosmiconfig": "^8.0.0", + "cosmiconfig-typescript-loader": "^4.0.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "lodash.uniq": "^4.5.0", + "resolve-from": "^5.0.0", + "ts-node": "^10.8.1", + "typescript": "^4.6.4 || ^5.2.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@commitlint/message": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.8.1.tgz", + "integrity": "sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==", + "dev": true + }, + "@commitlint/parse": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.8.1.tgz", + "integrity": "sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==", + "dev": true, + "requires": { + "@commitlint/types": "^17.8.1", + "conventional-changelog-angular": "^6.0.0", + "conventional-commits-parser": "^4.0.0" + } + }, + "@commitlint/read": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.8.1.tgz", + "integrity": "sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==", + "dev": true, + "requires": { + "@commitlint/top-level": "^17.8.1", + "@commitlint/types": "^17.8.1", + "fs-extra": "^11.0.0", + "git-raw-commits": "^2.0.11", + "minimist": "^1.2.6" + }, + "dependencies": { + "fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + } + } + }, + "@commitlint/resolve-extends": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.8.1.tgz", + "integrity": "sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==", + "dev": true, + "requires": { + "@commitlint/config-validator": "^17.8.1", + "@commitlint/types": "^17.8.1", + "import-fresh": "^3.0.0", + "lodash.mergewith": "^4.6.2", + "resolve-from": "^5.0.0", + "resolve-global": "^1.0.0" + } + }, + "@commitlint/rules": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.8.1.tgz", + "integrity": "sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==", + "dev": true, + "requires": { + "@commitlint/ensure": "^17.8.1", + "@commitlint/message": "^17.8.1", + "@commitlint/to-lines": "^17.8.1", + "@commitlint/types": "^17.8.1", + "execa": "^5.0.0" + } + }, + "@commitlint/to-lines": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.8.1.tgz", + "integrity": "sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==", + "dev": true + }, + "@commitlint/top-level": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.8.1.tgz", + "integrity": "sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==", + "dev": true, + "requires": { + "find-up": "^5.0.0" + } + }, + "@commitlint/types": { + "version": "17.8.1", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.8.1.tgz", + "integrity": "sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==", + "dev": true, + "requires": { + "chalk": "^4.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@manypkg/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.5.5", + "@types/node": "^12.7.1", + "find-up": "^4.1.0", + "fs-extra": "^8.1.0" + }, + "dependencies": { + "@types/node": { + "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", + "dev": true + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + } + } + }, + "@manypkg/get-packages": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@manypkg/get-packages/-/get-packages-1.1.3.tgz", + "integrity": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==", + "dev": true, + "requires": { + "@babel/runtime": "^7.5.5", + "@changesets/types": "^4.0.1", + "@manypkg/find-root": "^1.1.0", + "fs-extra": "^8.1.0", + "globby": "^11.0.0", + "read-yaml-file": "^1.1.0" + }, + "dependencies": { + "@changesets/types": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@changesets/types/-/types-4.1.0.tgz", + "integrity": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==", + "dev": true + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + } + } + }, + "@moonrepo/cli": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/cli/-/cli-1.17.3.tgz", + "integrity": "sha512-PuW/R9PeA71OsSZGhadhqTsn3E4tmbTDM3Q7t1GUTeQEjwdDt5WlM/deJ7dxX7D+ItgdMvaUiLhEMMbL8MkOLw==", + "dev": true, + "requires": { + "@moonrepo/core-linux-arm64-gnu": "^1.17.3", + "@moonrepo/core-linux-arm64-musl": "^1.17.3", + "@moonrepo/core-linux-x64-gnu": "^1.17.3", + "@moonrepo/core-linux-x64-musl": "^1.17.3", + "@moonrepo/core-macos-arm64": "^1.17.3", + "@moonrepo/core-macos-x64": "^1.17.3", + "@moonrepo/core-windows-x64-msvc": "^1.17.3", + "detect-libc": "^2.0.2" + } + }, + "@moonrepo/core-linux-arm64-gnu": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.17.3.tgz", + "integrity": "sha512-8BlwjyGAmJum9d7EGuGsw9/64j+bgzDGADeH+YsldJ277gqmPLz8F6LRPLUr0Ddc0xcd7sbw0fJzAI4u55YfGA==", + "dev": true, + "optional": true + }, + "@moonrepo/core-linux-arm64-musl": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-arm64-musl/-/core-linux-arm64-musl-1.17.3.tgz", + "integrity": "sha512-Kr9SqWBrTla3CxAsc/hIwLyJqs72S9WgVgMj/ZDd6c5r3Onipot/l8Esdw26xy6fIlyu387p9JNh1jWfC9OmXA==", + "dev": true, + "optional": true + }, + "@moonrepo/core-linux-x64-gnu": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-x64-gnu/-/core-linux-x64-gnu-1.17.3.tgz", + "integrity": "sha512-YYIKooOSJeZtFJj5BcgW9tWL3IUe4WgoCHPIRbfoUGhuFw+AacUCz9XDa8/6NJpEIF7drblTDX25ztRIAIIXMw==", + "dev": true, + "optional": true + }, + "@moonrepo/core-linux-x64-musl": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-linux-x64-musl/-/core-linux-x64-musl-1.17.3.tgz", + "integrity": "sha512-Txw74QJOZFug/n8Z1ZmsjGt4T2d0F0wwT7zeT+0rXIuzwMX3lZG7l+zbNn/FdgmVqhCtPj20U36gM6WM4J/bhw==", + "dev": true, + "optional": true + }, + "@moonrepo/core-macos-arm64": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-macos-arm64/-/core-macos-arm64-1.17.3.tgz", + "integrity": "sha512-nYBd8II6UpteaGAlHMLn5UfBOVOQXINUCLl/mRnD34BXFIjxS7sAShmZfUDQSlC6QQx4zf1mIZSW2BQ+3k7R2A==", + "dev": true, + "optional": true + }, + "@moonrepo/core-macos-x64": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-macos-x64/-/core-macos-x64-1.17.3.tgz", + "integrity": "sha512-NG3atjVM1aJfEPSJUZGdpWZ+WNh5b5Iw8hJNOPUjs33tfz8QoN0UxFWohSFDwXgGxurjzyur/lc0xUBKd2n5WQ==", + "dev": true, + "optional": true + }, + "@moonrepo/core-windows-x64-msvc": { + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/@moonrepo/core-windows-x64-msvc/-/core-windows-x64-msvc-1.17.3.tgz", + "integrity": "sha512-Wz8Lp661RNpgMCYyqATyJxkgaPLw/oMJ+Jip7c55aLOrE8o+HsNU4QqsOgkxY+6PD+7Dp9634KSrziaTPHHiVA==", + "dev": true, + "optional": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "@types/is-ci": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/is-ci/-/is-ci-3.0.4.tgz", + "integrity": "sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==", + "dev": true, + "requires": { + "ci-info": "^3.1.0" + } + }, + "@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "dev": true + }, + "@types/node": { + "version": "20.5.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz", + "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "dev": true + }, + "acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "dev": true + }, + "acorn-walk": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", + "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", + "dev": true + }, + "aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", + "dev": true, + "requires": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + } + }, + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true + }, + "ansi-escapes": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", + "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", + "dev": true, + "requires": { + "type-fest": "^1.0.2" + } + }, + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", + "dev": true + }, + "array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dev": true, + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + } + }, + "arrgv": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arrgv/-/arrgv-1.0.2.tgz", + "integrity": "sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==", + "dev": true + }, + "arrify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-3.0.0.tgz", + "integrity": "sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==", + "dev": true + }, + "ava": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ava/-/ava-5.3.1.tgz", + "integrity": "sha512-Scv9a4gMOXB6+ni4toLuhAm9KYWEjsgBglJl+kMGI5+IVDt120CCDZyB5HNU9DjmLI2t4I0GbnxGLmmRfGTJGg==", + "dev": true, + "requires": { + "acorn": "^8.8.2", + "acorn-walk": "^8.2.0", + "ansi-styles": "^6.2.1", + "arrgv": "^1.0.2", + "arrify": "^3.0.0", + "callsites": "^4.0.0", + "cbor": "^8.1.0", + "chalk": "^5.2.0", + "chokidar": "^3.5.3", + "chunkd": "^2.0.1", + "ci-info": "^3.8.0", + "ci-parallel-vars": "^1.0.1", + "clean-yaml-object": "^0.1.0", + "cli-truncate": "^3.1.0", + "code-excerpt": "^4.0.0", + "common-path-prefix": "^3.0.0", + "concordance": "^5.0.4", + "currently-unhandled": "^0.4.1", + "debug": "^4.3.4", + "emittery": "^1.0.1", + "figures": "^5.0.0", + "globby": "^13.1.4", + "ignore-by-default": "^2.1.0", + "indent-string": "^5.0.0", + "is-error": "^2.2.2", + "is-plain-object": "^5.0.0", + "is-promise": "^4.0.0", + "matcher": "^5.0.0", + "mem": "^9.0.2", + "ms": "^2.1.3", + "p-event": "^5.0.1", + "p-map": "^5.5.0", + "picomatch": "^2.3.1", + "pkg-conf": "^4.0.0", + "plur": "^5.1.0", + "pretty-ms": "^8.0.0", + "resolve-cwd": "^3.0.0", + "stack-utils": "^2.0.6", + "strip-ansi": "^7.0.1", + "supertap": "^3.0.1", + "temp-dir": "^3.0.0", + "write-file-atomic": "^5.0.1", + "yargs": "^17.7.2" + }, + "dependencies": { + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true + } + } + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true + }, + "better-path-resolve": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz", + "integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==", + "dev": true, + "requires": { + "is-windows": "^1.0.0" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "blueimp-md5": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz", + "integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==", + "dev": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "breakword": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/breakword/-/breakword-1.0.6.tgz", + "integrity": "sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==", + "dev": true, + "requires": { + "wcwidth": "^1.0.1" + } + }, + "call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + } + }, + "callsites": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-4.1.0.tgz", + "integrity": "sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "cbor": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/cbor/-/cbor-8.1.0.tgz", + "integrity": "sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==", + "dev": true, + "requires": { + "nofilter": "^3.1.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + } + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chunkd": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/chunkd/-/chunkd-2.0.1.tgz", + "integrity": "sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==", + "dev": true + }, + "ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true + }, + "ci-parallel-vars": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ci-parallel-vars/-/ci-parallel-vars-1.0.1.tgz", + "integrity": "sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==", + "dev": true + }, + "clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "dev": true, + "requires": { + "escape-string-regexp": "5.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true + } + } + }, + "clean-yaml-object": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/clean-yaml-object/-/clean-yaml-object-0.1.0.tgz", + "integrity": "sha512-3yONmlN9CSAkzNwnRCiJQ7Q2xK5mWuEfL3PuTZcAUzhObbXsfsnMptJzXwz93nc5zn9V9TwCVMmV7w4xsm43dw==", + "dev": true + }, + "cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dev": true, + "requires": { + "restore-cursor": "^4.0.0" + } + }, + "cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "dev": true, + "requires": { + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" + } + }, + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true + }, + "code-excerpt": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/code-excerpt/-/code-excerpt-4.0.0.tgz", + "integrity": "sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==", + "dev": true, + "requires": { + "convert-to-spaces": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "commander": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", + "dev": true + }, + "common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "concordance": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/concordance/-/concordance-5.0.4.tgz", + "integrity": "sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==", + "dev": true, + "requires": { + "date-time": "^3.1.0", + "esutils": "^2.0.3", + "fast-diff": "^1.2.0", + "js-string-escape": "^1.0.1", + "lodash": "^4.17.15", + "md5-hex": "^3.0.1", + "semver": "^7.3.2", + "well-known-symbols": "^2.0.0" + } + }, + "conventional-changelog-angular": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz", + "integrity": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==", + "dev": true, + "requires": { + "compare-func": "^2.0.0" + } + }, + "conventional-changelog-conventionalcommits": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-6.1.0.tgz", + "integrity": "sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==", + "dev": true, + "requires": { + "compare-func": "^2.0.0" + } + }, + "conventional-commits-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz", + "integrity": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==", + "dev": true, + "requires": { + "is-text-path": "^1.0.1", + "JSONStream": "^1.3.5", + "meow": "^8.1.2", + "split2": "^3.2.2" + }, + "dependencies": { + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "convert-to-spaces": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-2.0.1.tgz", + "integrity": "sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==", + "dev": true + }, + "cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + } + } + }, + "cosmiconfig-typescript-loader": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz", + "integrity": "sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==", + "dev": true, + "requires": {} + }, + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "csv": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/csv/-/csv-5.5.3.tgz", + "integrity": "sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==", + "dev": true, + "requires": { + "csv-generate": "^3.4.3", + "csv-parse": "^4.16.3", + "csv-stringify": "^5.6.5", + "stream-transform": "^2.1.3" + } + }, + "csv-generate": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/csv-generate/-/csv-generate-3.4.3.tgz", + "integrity": "sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==", + "dev": true + }, + "csv-parse": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz", + "integrity": "sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==", + "dev": true + }, + "csv-stringify": { + "version": "5.6.5", + "resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-5.6.5.tgz", + "integrity": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==", + "dev": true + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true + }, + "date-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/date-time/-/date-time-3.1.0.tgz", + "integrity": "sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==", + "dev": true, + "requires": { + "time-zone": "^1.0.0" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true + } + } + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true + }, + "detect-libc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "dev": true + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "emittery": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-1.0.1.tgz", + "integrity": "sha512-2ID6FdrMD9KDLldGesP6317G78K7km/kMcwItRtVFva7I/cSEOIaLpewaUb+YLXVwdAp3Ctfxh/V5zIl1sj7dQ==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "enquirer": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", + "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dev": true, + "requires": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + } + }, + "es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + } + }, + "es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "extendable-error": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz", + "integrity": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==", + "dev": true + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "figures": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", + "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", + "dev": true, + "requires": { + "escape-string-regexp": "^5.0.0", + "is-unicode-supported": "^1.2.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true + } + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "find-yarn-workspace-root2": { + "version": "1.2.16", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz", + "integrity": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==", + "dev": true, + "requires": { + "micromatch": "^4.0.2", + "pkg-dir": "^4.2.0" + } + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "requires": { + "is-callable": "^1.1.3" + } + }, + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "git-raw-commits": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, + "requires": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "meow": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==", + "dev": true, + "requires": { + "ini": "^1.3.4" + } + }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.2" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "human-id": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/human-id/-/human-id-1.0.2.tgz", + "integrity": "sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==", + "dev": true + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true + }, + "ignore-by-default": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-2.1.0.tgz", + "integrity": "sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + } + }, + "irregular-plurals": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", + "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==", + "dev": true + }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true + }, + "is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "dev": true, + "requires": { + "ci-info": "^3.2.0" + } + }, + "is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-error": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-error/-/is-error-2.2.2.tgz", + "integrity": "sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true + }, + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + }, + "is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-subdir": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz", + "integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==", + "dev": true, + "requires": { + "better-path-resolve": "1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-text-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, + "requires": { + "text-extensions": "^1.0.0" + } + }, + "is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "requires": { + "which-typed-array": "^1.1.11" + } + }, + "is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "dev": true + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "js-string-escape": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", + "integrity": "sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true + }, + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true + }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "lint-staged": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.3.0.tgz", + "integrity": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==", + "dev": true, + "requires": { + "chalk": "5.3.0", + "commander": "11.0.0", + "debug": "4.3.4", + "execa": "7.2.0", + "lilconfig": "2.1.0", + "listr2": "6.6.1", + "micromatch": "4.0.5", + "pidtree": "0.6.0", + "string-argv": "0.3.2", + "yaml": "2.3.1" + }, + "dependencies": { + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + } + }, + "human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true + }, + "npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true + } + } + }, + "listr2": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", + "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", + "dev": true, + "requires": { + "cli-truncate": "^3.1.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^5.0.1", + "rfdc": "^1.3.0", + "wrap-ansi": "^8.1.0" + } + }, + "load-json-file": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-7.0.1.tgz", + "integrity": "sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==", + "dev": true + }, + "load-yaml-file": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz", + "integrity": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.5", + "js-yaml": "^3.13.0", + "pify": "^4.0.1", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "lodash.isfunction": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", + "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", + "dev": true + }, + "lodash.snakecase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", + "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", + "dev": true + }, + "lodash.startcase": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", + "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "dev": true + }, + "log-update": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", + "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", + "dev": true, + "requires": { + "ansi-escapes": "^5.0.0", + "cli-cursor": "^4.0.0", + "slice-ansi": "^5.0.0", + "strip-ansi": "^7.0.1", + "wrap-ansi": "^8.0.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "requires": { + "p-defer": "^1.0.0" + } + }, + "map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true + }, + "matcher": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-5.0.0.tgz", + "integrity": "sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==", + "dev": true, + "requires": { + "escape-string-regexp": "^5.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true + } + } + }, + "md5-hex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz", + "integrity": "sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==", + "dev": true, + "requires": { + "blueimp-md5": "^2.10.0" + } + }, + "mem": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/mem/-/mem-9.0.2.tgz", + "integrity": "sha512-F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A==", + "dev": true, + "requires": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^4.0.0" + } + }, + "meow": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz", + "integrity": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "^4.0.2", + "normalize-package-data": "^2.5.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.13.1", + "yargs-parser": "^18.1.3" + }, + "dependencies": { + "type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true + } + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "dependencies": { + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + } + } + }, + "mixme": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/mixme/-/mixme-0.5.10.tgz", + "integrity": "sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==", + "dev": true + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "nofilter": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz", + "integrity": "sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + } + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true + }, + "outdent": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/outdent/-/outdent-0.5.0.tgz", + "integrity": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==", + "dev": true + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", + "dev": true + }, + "p-event": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-5.0.1.tgz", + "integrity": "sha512-dd589iCQ7m1L0bmC5NLlVYfy3TbBEsMUfWx9PyAgPeIcFZ/E2yaTZ4Rz4MiBmmJShviiftHVXOqfnfzJ6kyMrQ==", + "dev": true, + "requires": { + "p-timeout": "^5.0.2" + } + }, + "p-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz", + "integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==", + "dev": true, + "requires": { + "p-map": "^2.0.0" + }, + "dependencies": { + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + } + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + }, + "dependencies": { + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + } + } + }, + "p-map": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", + "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", + "dev": true, + "requires": { + "aggregate-error": "^4.0.0" + } + }, + "p-timeout": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-5.1.0.tgz", + "integrity": "sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==", + "dev": true + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + } + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse-ms": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-3.0.0.tgz", + "integrity": "sha512-Tpb8Z7r7XbbtBTrM9UhpkzzaMrqA2VXMT3YChzYltwV3P3pM6t8wl7TvpMnSTosz1aQAdVib7kdoys7vYOPerw==", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-conf": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-4.0.0.tgz", + "integrity": "sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==", + "dev": true, + "requires": { + "find-up": "^6.0.0", + "load-json-file": "^7.0.0" + }, + "dependencies": { + "find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "requires": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + } + }, + "locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "requires": { + "p-locate": "^6.0.0" + } + }, + "p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "requires": { + "yocto-queue": "^1.0.0" + } + }, + "p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "requires": { + "p-limit": "^4.0.0" + } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + }, + "yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true + } + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + } + } + }, + "plur": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/plur/-/plur-5.1.0.tgz", + "integrity": "sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==", + "dev": true, + "requires": { + "irregular-plurals": "^3.3.0" + } + }, + "preferred-pm": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.2.tgz", + "integrity": "sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==", + "dev": true, + "requires": { + "find-up": "^5.0.0", + "find-yarn-workspace-root2": "1.2.16", + "path-exists": "^4.0.0", + "which-pm": "2.0.0" + } + }, + "prettier": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", + "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "dev": true + }, + "pretty-ms": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-8.0.0.tgz", + "integrity": "sha512-ASJqOugUF1bbzI35STMBUpZqdfYKlJugy6JBziGi2EE+AL5JPJGSzvpeVXojxrr0ViUYoToUjb5kjSEGf7Y83Q==", + "dev": true, + "requires": { + "parse-ms": "^3.0.0" + } + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "read-yaml-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-1.1.0.tgz", + "integrity": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.5", + "js-yaml": "^3.6.1", + "pify": "^4.0.1", + "strip-bom": "^3.0.0" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + } + } + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "resolve-global": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", + "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", + "dev": true, + "requires": { + "global-dirs": "^0.1.1" + } + }, + "restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rfdc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "requires": { + "type-fest": "^0.13.1" + }, + "dependencies": { + "type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true + } + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dev": true, + "requires": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + } + }, + "smartwrap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/smartwrap/-/smartwrap-2.0.2.tgz", + "integrity": "sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==", + "dev": true, + "requires": { + "array.prototype.flat": "^1.2.3", + "breakword": "^1.0.5", + "grapheme-splitter": "^1.0.4", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1", + "yargs": "^15.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + } + } + }, + "spawndamnit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/spawndamnit/-/spawndamnit-2.0.0.tgz", + "integrity": "sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==", + "dev": true, + "requires": { + "cross-spawn": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + } + } + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "split2": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "requires": { + "readable-stream": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } + }, + "stream-transform": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-2.1.3.tgz", + "integrity": "sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==", + "dev": true, + "requires": { + "mixme": "^0.5.1" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "requires": { + "min-indent": "^1.0.0" + } + }, + "supertap": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/supertap/-/supertap-3.0.1.tgz", + "integrity": "sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==", + "dev": true, + "requires": { + "indent-string": "^5.0.0", + "js-yaml": "^3.14.1", + "serialize-error": "^7.0.1", + "strip-ansi": "^7.0.1" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", + "dev": true + }, + "term-size": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", + "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", + "dev": true + }, + "text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "through2": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "requires": { + "readable-stream": "3" + } + }, + "time-zone": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/time-zone/-/time-zone-1.0.0.tgz", + "integrity": "sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true + }, + "ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + } + }, + "tty-table": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/tty-table/-/tty-table-4.2.3.tgz", + "integrity": "sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "csv": "^5.5.3", + "kleur": "^4.1.5", + "smartwrap": "^2.0.2", + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.1", + "yargs": "^17.7.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true + }, + "typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, + "typescript": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", + "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "dev": true + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "well-known-symbols": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/well-known-symbols/-/well-known-symbols-2.0.0.tgz", + "integrity": "sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "dev": true + }, + "which-pm": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz", + "integrity": "sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==", + "dev": true, + "requires": { + "load-yaml-file": "^0.2.0", + "path-exists": "^4.0.0" + } + }, + "which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + }, + "write-file-atomic": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + } + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true + }, + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true + } + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} From e5da3984db88be8c80413400e835c6846107bd29 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 4 Dec 2023 12:31:22 -0700 Subject: [PATCH 025/295] chore: update changeset with token diff --- .changeset/neat-balloons-rhyme.md | 262 +++++++++++++++++++++++++++++- 1 file changed, 261 insertions(+), 1 deletion(-) diff --git a/.changeset/neat-balloons-rhyme.md b/.changeset/neat-balloons-rhyme.md index e71971f0..52e3f0eb 100644 --- a/.changeset/neat-balloons-rhyme.md +++ b/.changeset/neat-balloons-rhyme.md @@ -1,5 +1,265 @@ --- -"@adobe/spectrum-tokens": patch +"@adobe/spectrum-tokens": major --- feat: new color values for spectrum2 + +## Design Motivation + +This update addresses several improvements: + +fuchsia, seafoam: all values shifted to make room for new colors, pink and turquoise +all other colors: certain values were updated to address accessibility contrast requirements against Spectrum 2 background layer colors + +## Token Diff + +
Token values updated (246): + +- `accent-background-color-default` +- `accent-background-color-down` +- `accent-background-color-hover` +- `accent-background-color-key-focus` +- `accent-color-1000` +- `accent-color-200` +- `accent-color-300` +- `accent-color-400` +- `accent-color-500` +- `accent-color-600` +- `accent-color-700` +- `accent-color-800` +- `accent-color-900` +- `accent-content-color-default` +- `accent-content-color-down` +- `accent-content-color-hover` +- `accent-content-color-key-focus` +- `accent-content-color-selected` +- `accent-visual-color` +- `blue-1000` +- `blue-200` +- `blue-300` +- `blue-400` +- `blue-500` +- `blue-600` +- `blue-700` +- `blue-800` +- `blue-900` +- `blue-background-color-default` +- `blue-visual-color` +- `celery-1000` +- `celery-200` +- `celery-300` +- `celery-400` +- `celery-500` +- `celery-600` +- `celery-700` +- `celery-800` +- `celery-900` +- `celery-background-color-default` +- `celery-visual-color` +- `chartreuse-1000` +- `chartreuse-200` +- `chartreuse-300` +- `chartreuse-400` +- `chartreuse-500` +- `chartreuse-600` +- `chartreuse-700` +- `chartreuse-800` +- `chartreuse-900` +- `chartreuse-background-color-default` +- `chartreuse-visual-color` +- `cyan-1000` +- `cyan-300` +- `cyan-400` +- `cyan-500` +- `cyan-600` +- `cyan-700` +- `cyan-800` +- `cyan-900` +- `cyan-background-color-default` +- `cyan-visual-color` +- `drop-zone-background-color` +- `focus-indicator-color` +- `fuchsia-100` +- `fuchsia-1000` +- `fuchsia-1100` +- `fuchsia-1200` +- `fuchsia-1300` +- `fuchsia-1400` +- `fuchsia-1500` +- `fuchsia-1600` +- `fuchsia-200` +- `fuchsia-300` +- `fuchsia-400` +- `fuchsia-500` +- `fuchsia-600` +- `fuchsia-700` +- `fuchsia-800` +- `fuchsia-900` +- `fuchsia-background-color-default` +- `fuchsia-visual-color` +- `green-100` +- `green-1000` +- `green-200` +- `green-300` +- `green-400` +- `green-500` +- `green-600` +- `green-700` +- `green-800` +- `green-900` +- `green-background-color-default` +- `green-visual-color` +- `icon-color-blue-primary-default` +- `icon-color-green-primary-default` +- `icon-color-red-primary-default` +- `icon-color-yellow-primary-default` +- `indigo-1000` +- `indigo-300` +- `indigo-400` +- `indigo-500` +- `indigo-600` +- `indigo-700` +- `indigo-800` +- `indigo-900` +- `indigo-background-color-default` +- `indigo-visual-color` +- `informative-background-color-default` +- `informative-background-color-down` +- `informative-background-color-hover` +- `informative-background-color-key-focus` +- `informative-color-1000` +- `informative-color-200` +- `informative-color-300` +- `informative-color-400` +- `informative-color-500` +- `informative-color-600` +- `informative-color-700` +- `informative-color-800` +- `informative-color-900` +- `informative-visual-color` +- `magenta-100` +- `magenta-1000` +- `magenta-1100` +- `magenta-1200` +- `magenta-1300` +- `magenta-1400` +- `magenta-200` +- `magenta-300` +- `magenta-400` +- `magenta-500` +- `magenta-600` +- `magenta-700` +- `magenta-800` +- `magenta-900` +- `magenta-background-color-default` +- `magenta-visual-color` +- `negative-background-color-default` +- `negative-background-color-down` +- `negative-background-color-hover` +- `negative-background-color-key-focus` +- `negative-border-color-default` +- `negative-border-color-focus` +- `negative-border-color-hover` +- `negative-border-color-key-focus` +- `negative-color-1000` +- `negative-color-200` +- `negative-color-300` +- `negative-color-400` +- `negative-color-500` +- `negative-color-600` +- `negative-color-700` +- `negative-color-800` +- `negative-color-900` +- `negative-content-color-default` +- `negative-content-color-down` +- `negative-content-color-hover` +- `negative-content-color-key-focus` +- `negative-visual-color` +- `notice-background-color-default` +- `notice-color-1000` +- `notice-color-200` +- `notice-color-400` +- `notice-color-500` +- `notice-color-600` +- `notice-color-700` +- `notice-color-800` +- `notice-color-900` +- `notice-visual-color` +- `orange-1000` +- `orange-200` +- `orange-400` +- `orange-500` +- `orange-600` +- `orange-700` +- `orange-800` +- `orange-900` +- `orange-background-color-default` +- `orange-visual-color` +- `positive-background-color-default` +- `positive-background-color-down` +- `positive-background-color-hover` +- `positive-background-color-key-focus` +- `positive-color-100` +- `positive-color-1000` +- `positive-color-200` +- `positive-color-300` +- `positive-color-400` +- `positive-color-500` +- `positive-color-600` +- `positive-color-700` +- `positive-color-800` +- `positive-color-900` +- `positive-visual-color` +- `purple-1000` +- `purple-200` +- `purple-300` +- `purple-400` +- `purple-500` +- `purple-600` +- `purple-700` +- `purple-800` +- `purple-900` +- `purple-background-color-default` +- `purple-visual-color` +- `red-1000` +- `red-200` +- `red-300` +- `red-400` +- `red-500` +- `red-600` +- `red-700` +- `red-800` +- `red-900` +- `red-background-color-default` +- `red-visual-color` +- `seafoam-100` +- `seafoam-1000` +- `seafoam-1100` +- `seafoam-1200` +- `seafoam-1300` +- `seafoam-1400` +- `seafoam-1500` +- `seafoam-1600` +- `seafoam-200` +- `seafoam-300` +- `seafoam-400` +- `seafoam-500` +- `seafoam-600` +- `seafoam-700` +- `seafoam-800` +- `seafoam-900` +- `seafoam-background-color-default` +- `seafoam-visual-color` +- `table-selected-row-background-color` +- `yellow-1000` +- `yellow-300` +- `yellow-400` +- `yellow-500` +- `yellow-600` +- `yellow-700` +- `yellow-800` +- `yellow-900` +- `yellow-background-color-default` +- `yellow-visual-color` + +
From ec87af54cb0957b8eca882357a00ececbaf67ec7 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 4 Dec 2023 12:45:59 -0700 Subject: [PATCH 026/295] chore: update deps and adjust config --- .github/workflows/deploy-docs.yml | 2 +- .moon/toolchain.yml | 5 +--- package.json | 4 +-- pnpm-lock.yaml | 50 +++++++++++++++---------------- 4 files changed, 29 insertions(+), 32 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 90419f5d..60c8a3b7 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.7.6 + version: 8.11.0 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run site:export diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 92a4c815..713524ae 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,14 +20,11 @@ node: # The version of the package manager (above) to use. pnpm: - version: "8.7.6" + version: "8.11.0" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true - # Use the `package.json` name as an alias for the respective moon project. - aliasPackageNames: "name-and-scope" - # Dedupe dependencies after the lockfile has changed. dedupeOnLockfileChange: true diff --git a/package.json b/package.json index fa0c8786..2cbdb726 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "@changesets/cli": "^2.26.2", "@commitlint/cli": "^17.6.6", "@commitlint/config-conventional": "^17.6.6", - "@moonrepo/cli": "^1.14.1", + "@moonrepo/cli": "^1.17.3", "ava": "^5.3.1", "husky": "^8.0.3", "lint-staged": "^13.2.3", @@ -34,5 +34,5 @@ "engines": { "node": "18.13.0" }, - "packageManager": "pnpm@8.7.6" + "packageManager": "pnpm@8.11.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8fa7169f..d9e7a730 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,8 +17,8 @@ importers: specifier: ^17.6.6 version: 17.6.6 "@moonrepo/cli": - specifier: ^1.14.1 - version: 1.14.1 + specifier: ^1.17.3 + version: 1.17.3 ava: specifier: ^5.3.1 version: 5.3.1 @@ -1051,29 +1051,29 @@ packages: read-yaml-file: 1.1.0 dev: true - /@moonrepo/cli@1.14.1: + /@moonrepo/cli@1.17.3: resolution: { - integrity: sha512-qrzbIjEQXx45lk/PRjqcCJJv/VT1+ISwizxfT7n13QDHwoBHA+slMV9jFcWmXWpnfabnPBlJGoXXYaQd9sERkg==, + integrity: sha512-PuW/R9PeA71OsSZGhadhqTsn3E4tmbTDM3Q7t1GUTeQEjwdDt5WlM/deJ7dxX7D+ItgdMvaUiLhEMMbL8MkOLw==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.14.1 - "@moonrepo/core-linux-arm64-musl": 1.14.1 - "@moonrepo/core-linux-x64-gnu": 1.14.1 - "@moonrepo/core-linux-x64-musl": 1.14.1 - "@moonrepo/core-macos-arm64": 1.14.1 - "@moonrepo/core-macos-x64": 1.14.1 - "@moonrepo/core-windows-x64-msvc": 1.14.1 + "@moonrepo/core-linux-arm64-gnu": 1.17.3 + "@moonrepo/core-linux-arm64-musl": 1.17.3 + "@moonrepo/core-linux-x64-gnu": 1.17.3 + "@moonrepo/core-linux-x64-musl": 1.17.3 + "@moonrepo/core-macos-arm64": 1.17.3 + "@moonrepo/core-macos-x64": 1.17.3 + "@moonrepo/core-windows-x64-msvc": 1.17.3 dev: true - /@moonrepo/core-linux-arm64-gnu@1.14.1: + /@moonrepo/core-linux-arm64-gnu@1.17.3: resolution: { - integrity: sha512-sYOwgeLwbSSa4OnoY1RzjnInOMOIZOoOa6Ktv8U2Ed+kXa5+O9LZcjJmZkpx1WXOaGJv36lBKQBXIZ0EzxVBdA==, + integrity: sha512-8BlwjyGAmJum9d7EGuGsw9/64j+bgzDGADeH+YsldJ277gqmPLz8F6LRPLUr0Ddc0xcd7sbw0fJzAI4u55YfGA==, } cpu: [arm64] os: [linux] @@ -1081,10 +1081,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.14.1: + /@moonrepo/core-linux-arm64-musl@1.17.3: resolution: { - integrity: sha512-dUD70L5VAcCDkZ021C0Av98+4ze+bw3nv965/mkk6MKnUWohsVdSeK/1tuMgO3g1TKEOi7YlmMWchgr0hn0nNQ==, + integrity: sha512-Kr9SqWBrTla3CxAsc/hIwLyJqs72S9WgVgMj/ZDd6c5r3Onipot/l8Esdw26xy6fIlyu387p9JNh1jWfC9OmXA==, } cpu: [arm64] os: [linux] @@ -1092,10 +1092,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.14.1: + /@moonrepo/core-linux-x64-gnu@1.17.3: resolution: { - integrity: sha512-FpeGtQYMsfkBvce3ijX8g+1mrQzq8REI8nhoyClawZBfwKoivzbvIJjovnlU6LJjzuSESt9/EUHfz+pssf05ww==, + integrity: sha512-YYIKooOSJeZtFJj5BcgW9tWL3IUe4WgoCHPIRbfoUGhuFw+AacUCz9XDa8/6NJpEIF7drblTDX25ztRIAIIXMw==, } cpu: [x64] os: [linux] @@ -1103,10 +1103,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.14.1: + /@moonrepo/core-linux-x64-musl@1.17.3: resolution: { - integrity: sha512-VSeFJ8ndayiv2HmUKdOtKR4WALcalzQ9TnnPlLAdVkypxwKnLrsb8XXS2J/wxeNHTWKS/mOS/D6uPlV6QeFnKA==, + integrity: sha512-Txw74QJOZFug/n8Z1ZmsjGt4T2d0F0wwT7zeT+0rXIuzwMX3lZG7l+zbNn/FdgmVqhCtPj20U36gM6WM4J/bhw==, } cpu: [x64] os: [linux] @@ -1114,10 +1114,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.14.1: + /@moonrepo/core-macos-arm64@1.17.3: resolution: { - integrity: sha512-4GM2TxxibK+vFBcGyX3ThwcZYF9PKOP/mSWw9BXpf8Pghn4/4WL40M8erm1zOqxM3wOahK4qbPAgpCNzEKd8xg==, + integrity: sha512-nYBd8II6UpteaGAlHMLn5UfBOVOQXINUCLl/mRnD34BXFIjxS7sAShmZfUDQSlC6QQx4zf1mIZSW2BQ+3k7R2A==, } cpu: [arm64] os: [darwin] @@ -1125,10 +1125,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.14.1: + /@moonrepo/core-macos-x64@1.17.3: resolution: { - integrity: sha512-igTT2tpqxi6jbBO2dx/QaP/Pn6QgAdBqNGIb+bCVX0sSGzwTJcl+a0q5e2YdptV/ZIvOTGPldz+4kZUUypjgdg==, + integrity: sha512-NG3atjVM1aJfEPSJUZGdpWZ+WNh5b5Iw8hJNOPUjs33tfz8QoN0UxFWohSFDwXgGxurjzyur/lc0xUBKd2n5WQ==, } cpu: [x64] os: [darwin] @@ -1136,10 +1136,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.14.1: + /@moonrepo/core-windows-x64-msvc@1.17.3: resolution: { - integrity: sha512-6GezvBPHRLJeBo/Am5ZEdnYdGJtpf5nqYPEfd4oqIt8h0c5blYMgr2pCH8OfamoHL10vDQBBnD1DPE0MNthETQ==, + integrity: sha512-Wz8Lp661RNpgMCYyqATyJxkgaPLw/oMJ+Jip7c55aLOrE8o+HsNU4QqsOgkxY+6PD+7Dp9634KSrziaTPHHiVA==, } cpu: [x64] os: [win32] From d6d0cd789ee06db4f65259261384b8a7bc7329f5 Mon Sep 17 00:00:00 2001 From: Frank Karstens Date: Wed, 22 Nov 2023 18:38:09 +0100 Subject: [PATCH 027/295] feat(tokens): add new color tokens --- packages/tokens/src/color-palette.json | 768 +++++++++++++++++++++++++ 1 file changed, 768 insertions(+) diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 2b58a38c..ebb999b5 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -3534,5 +3534,773 @@ "uuid": "fd25d1ee-438b-49a3-93d8-1d59b2a06f72" } } + }, + "pink-100": { + "sets": { + "dark": { + "value": "rgb(58, 0, 37)", + "uuid": "bd616b1d-fe15-498b-b8c3-02b3ec12917c" + }, + "light": { + "value": "rgb(255, 246, 252)", + "uuid": "89d9aa85-aef2-47fa-8939-e6774f5fa2de" + } + } + }, + "pink-200": { + "sets": { + "dark": { + "value": "rgb(71, 0, 44)", + "uuid": "b27db3ca-2a1d-40f0-aa6b-d7256262a70c" + }, + "light": { + "value": "rgb(255, 232, 247)", + "uuid": "d80ed3c8-4db1-48e7-bd16-1d34580a3108" + } + } + }, + "pink-300": { + "sets": { + "dark": { + "value": "rgb(90, 0, 57)", + "uuid": "b4a885e9-96d3-498f-b8a9-87c448723198" + }, + "light": { + "value": "rgb(255, 211, 240)", + "uuid": "3041a3b2-4275-41fb-94ff-607108d94df3" + } + } + }, + "pink-400": { + "sets": { + "dark": { + "value": "rgb(115, 7, 75)", + "uuid": "3a4e3a24-0f21-44a4-ad80-f721ad6acb38" + }, + "light": { + "value": "rgb(255, 181, 230)", + "uuid": "c86af74f-6fe2-41a1-a934-2589f56fd041" + } + } + }, + "pink-500": { + "sets": { + "dark": { + "value": "rgb(143, 18, 97)", + "uuid": "14b4ffb1-3dcb-4155-b470-1006982eec4c" + }, + "light": { + "value": "rgb(255, 148, 219)", + "uuid": "e526f977-736d-473b-b851-475fd08f5276" + } + } + }, + "pink-600": { + "sets": { + "dark": { + "value": "rgb(171, 29, 119)", + "uuid": "77da83cc-1a57-486b-bb43-e74e6b5ac041" + }, + "light": { + "value": "rgb(255, 103, 204)", + "uuid": "d383f12e-48f4-446c-abb4-595a50fd29a2" + } + } + }, + "pink-700": { + "sets": { + "dark": { + "value": "rgb(196, 39, 138)", + "uuid": "6c1ae7db-8ca1-4dbe-9d1e-2b3f5ab28a5c" + }, + "light": { + "value": "rgb(242, 76, 184)", + "uuid": "91406d69-6d53-4231-be9e-e90d8ad0cc51" + } + } + }, + "pink-800": { + "sets": { + "dark": { + "value": "rgb(220, 47, 156)", + "uuid": "86b686e1-d580-4fc0-9246-8b94ad2fed96" + }, + "light": { + "value": "rgb(228, 52, 163)", + "uuid": "af67d2bf-e92e-42f2-93d6-2f0b45fba0ac" + } + } + }, + "pink-900": { + "sets": { + "dark": { + "value": "rgb(236, 67, 175)", + "uuid": "fb259e11-a051-4116-a7cb-f567cf814df5" + }, + "light": { + "value": "rgb(206, 42, 146)", + "uuid": "a53ae96d-64bc-4baa-b51f-4490242047df" + } + } + }, + "pink-1000": { + "sets": { + "dark": { + "value": "rgb(251, 90, 196)", + "uuid": "89cc3b46-c438-4e65-bf43-c373cb6af83f" + }, + "light": { + "value": "rgb(176, 31, 123)", + "uuid": "8d8448ee-5b8d-4953-a2f8-ba34a3c7f796" + } + } + }, + "pink-1100": { + "sets": { + "dark": { + "value": "rgb(255, 122, 210)", + "uuid": "ee41ab95-9c22-4523-94ce-efab466cc261" + }, + "light": { + "value": "rgb(152, 22, 104)", + "uuid": "889ea4ff-1362-474e-ab12-15eb08bec89b" + } + } + }, + "pink-1200": { + "sets": { + "dark": { + "value": "rgb(255, 159, 223)", + "uuid": "670f5ea8-1435-4dd6-9ee9-f1886378b18f" + }, + "light": { + "value": "rgb(128, 12, 85)", + "uuid": "ac7fa4bb-da89-44ef-95d0-5d15fd8df976" + } + } + }, + "pink-1300": { + "sets": { + "dark": { + "value": "rgb(255, 191, 234)", + "uuid": "c70eb5b9-80fa-4e03-9589-88001bbed4e2" + }, + "light": { + "value": "rgb(105, 3, 68)", + "uuid": "a10ffb76-fc1a-4f2f-ac43-dace44726820" + } + } + }, + "pink-1400": { + "sets": { + "dark": { + "value": "rgb(255, 219, 243)", + "uuid": "bb85af92-a0c8-4b12-b651-a2a084d6d1cc" + }, + "light": { + "value": "rgb(83, 0, 53)", + "uuid": "8c14e640-5df8-4753-8a47-295c1aee63c5" + } + } + }, + "pink-1500": { + "sets": { + "dark": { + "value": "rgb(255, 241, 250)", + "uuid": "0344a02f-ae86-4c77-bb36-480da43b3be1" + }, + "light": { + "value": "rgb(62, 0, 39)", + "uuid": "886065e2-949f-4f4c-9aa9-0a843c3d8cf2" + } + } + }, + "pink-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "fd715951-5fb7-433c-8a9d-2d10707893e5" + }, + "light": { + "value": "rgb(33, 0, 21)", + "uuid": "0612a373-58a7-4393-b789-7dcf8e388b2c" + } + } + }, + "turquoise-100": { + "sets": { + "dark": { + "value": "rgb(0, 30, 33)", + "uuid": "7be82e76-2525-4496-9425-c180746f12df" + }, + "light": { + "value": "rgb(238, 251, 251)", + "uuid": "8e69d558-2c95-496f-8244-56c1abecef5f" + } + } + }, + "turquoise-200": { + "sets": { + "dark": { + "value": "rgb(0, 37, 41)", + "uuid": "f70fdb17-da0b-4163-8af6-2daa65327e3a" + }, + "light": { + "value": "rgb(209, 245, 245)", + "uuid": "2dd6c94d-b55e-491e-91a9-bf9b4e3ceb54" + } + } + }, + "turquoise-300": { + "sets": { + "dark": { + "value": "rgb(0, 49, 54)", + "uuid": "eb6f8d2a-1a82-42ef-b668-0aac077d4053" + }, + "light": { + "value": "rgb(169, 236, 237)", + "uuid": "7eda1d2a-4c4a-495c-8b2f-c663be8c22f8" + } + } + }, + "turquoise-400": { + "sets": { + "dark": { + "value": "rgb(0, 66, 72)", + "uuid": "e354eda3-17c2-4f07-b64b-3620692a12f3" + }, + "light": { + "value": "rgb(111, 221, 228)", + "uuid": "7a80623f-07eb-426a-9a64-ced6e3d09df1" + } + } + }, + "turquoise-500": { + "sets": { + "dark": { + "value": "rgb(3, 84, 92)", + "uuid": "de4d07fb-1d63-44cc-a9bf-1cd2e2ed4e59" + }, + "light": { + "value": "rgb(39, 202, 216)", + "uuid": "1fae7edd-0b41-4ae6-a436-c1e5ecda3e3a" + } + } + }, + "turquoise-600": { + "sets": { + "dark": { + "value": "rgb(5, 103, 112)", + "uuid": "ae1d9dc7-e778-4c78-b12d-ab187cc3c254" + }, + "light": { + "value": "rgb(15, 177, 192)", + "uuid": "be19fd97-84da-40ed-82a2-1afa75b6f405" + } + } + }, + "turquoise-700": { + "sets": { + "dark": { + "value": "rgb(7, 120, 131)", + "uuid": "08f4307e-74f1-446d-9051-8a4c11546289" + }, + "light": { + "value": "rgb(12, 158, 171)", + "uuid": "0a313605-1db7-4801-afac-28aeb30aa005" + } + } + }, + "turquoise-800": { + "sets": { + "dark": { + "value": "rgb(9, 135, 147)", + "uuid": "69ae2217-ba32-41ca-a38f-8f19dcc5cf76" + }, + "light": { + "value": "rgb(10, 141, 153)", + "uuid": "cb62cb21-ce76-4f47-a88d-14682eb6e06d" + } + } + }, + "turquoise-900": { + "sets": { + "dark": { + "value": "rgb(11, 151, 164)", + "uuid": "2ce15c64-8c38-4935-bc65-7580df395231" + }, + "light": { + "value": "rgb(8, 126, 137)", + "uuid": "b1e2b910-c19d-4b83-9f49-f9e858ab58b9" + } + } + }, + "turquoise-1000": { + "sets": { + "dark": { + "value": "rgb(13, 168, 182)", + "uuid": "89d12308-9718-40d6-a089-73b9fcf1185b" + }, + "light": { + "value": "rgb(5, 107, 116)", + "uuid": "f46bb42a-00fe-44ae-8421-16fbdbe1a9e3" + } + } + }, + "turquoise-1100": { + "sets": { + "dark": { + "value": "rgb(16, 186, 202)", + "uuid": "7f0dafc6-6863-4542-b58c-610bd97f79fa" + }, + "light": { + "value": "rgb(3, 90, 98)", + "uuid": "7c957f48-f033-4814-a4e0-127e67169771" + } + } + }, + "turquoise-1200": { + "sets": { + "dark": { + "value": "rgb(64, 208, 220)", + "uuid": "70ca07eb-a370-4059-9d5a-b55f6a9c9f31" + }, + "light": { + "value": "rgb(1, 74, 81)", + "uuid": "d85163b6-fbaf-4c49-b61b-f0b7b9529ff7" + } + } + }, + "turquoise-1300": { + "sets": { + "dark": { + "value": "rgb(128, 225, 231)", + "uuid": "c1f51874-6699-4250-bcd3-9d15add56a86" + }, + "light": { + "value": "rgb(0, 59, 65)", + "uuid": "c9ab3575-f393-45db-a92b-07eccd4696bb" + } + } + }, + "turquoise-1400": { + "sets": { + "dark": { + "value": "rgb(183, 240, 240)", + "uuid": "f2f63354-d6fb-4687-abf8-554c4ab95fbf" + }, + "light": { + "value": "rgb(0, 44, 49)", + "uuid": "6ee374d9-95c4-4e5d-8f4d-fa1912cf6514" + } + } + }, + "turquoise-1500": { + "sets": { + "dark": { + "value": "rgb(228, 249, 249)", + "uuid": "d4b79c34-286d-40f0-87ce-bbfb6b217dba" + }, + "light": { + "value": "rgb(0, 32, 35)", + "uuid": "d3e919d4-3777-4dca-93f9-0e04ab00d0dd" + } + } + }, + "turquoise-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "4ae14c01-10b1-4daf-a064-dab9f6fdea9d" + }, + "light": { + "value": "rgb(0, 15, 17)", + "uuid": "6af4ec29-d7c5-4562-be2c-a838aa919aed" + } + } + }, + "brown-100": { + "sets": { + "dark": { + "value": "rgb(35, 24, 8)", + "uuid": "478633c7-4a14-4e39-a05c-bfa07aeb4a85" + }, + "light": { + "value": "rgb(252, 247, 242)", + "uuid": "aa01448b-bf3b-4da2-b483-127a3ed708f7" + } + } + }, + "brown-200": { + "sets": { + "dark": { + "value": "rgb(44, 31, 11)", + "uuid": "ec81816f-120e-46f9-a5b0-adb94814d1eb" + }, + "light": { + "value": "rgb(247, 238, 225)", + "uuid": "1b19a7b6-469e-4f5a-b30b-f3f465021d25" + } + } + }, + "brown-300": { + "sets": { + "dark": { + "value": "rgb(58, 40, 14)", + "uuid": "3c253e65-bd9a-4e52-ad68-83aca3b197e6" + }, + "light": { + "value": "rgb(239, 221, 195)", + "uuid": "9f0a77f8-aab8-4942-8119-332b09441939" + } + } + }, + "brown-400": { + "sets": { + "dark": { + "value": "rgb(78, 55, 19)", + "uuid": "a9daa02d-c0aa-4c05-80ee-2bf55165dd36" + }, + "light": { + "value": "rgb(229, 200, 157)", + "uuid": "e33616c5-157c-42aa-a349-90d05f50beba" + } + } + }, + "brown-500": { + "sets": { + "dark": { + "value": "rgb(98, 71, 30)", + "uuid": "f455957b-e647-44b3-a917-7d6e19807d40" + }, + "light": { + "value": "rgb(214, 177, 123)", + "uuid": "5346904d-2c85-4dd5-815c-ea2708a4d380" + } + } + }, + "brown-600": { + "sets": { + "dark": { + "value": "rgb(115, 88, 47)", + "uuid": "41f83cff-cdd4-4760-a4bd-0bb1ceb46854" + }, + "light": { + "value": "rgb(190, 155, 104)", + "uuid": "970fd8ac-c68b-4789-84a6-1397b2514e2f" + } + } + }, + "brown-700": { + "sets": { + "dark": { + "value": "rgb(132, 104, 61)", + "uuid": "dc738913-4af6-446e-8a1b-09c84993c8e5" + }, + "light": { + "value": "rgb(171, 138, 90)", + "uuid": "621aa30e-95de-4b69-814f-821dfe12b78d" + } + } + }, + "brown-800": { + "sets": { + "dark": { + "value": "rgb(148, 118, 73)", + "uuid": "e21a0edf-a81a-46a0-a849-11111cb89516" + }, + "light": { + "value": "rgb(154, 123, 77)", + "uuid": "b15bdc92-c03f-4ad4-a385-110d635e66af" + } + } + }, + "brown-900": { + "sets": { + "dark": { + "value": "rgb(163, 132, 84)", + "uuid": "79d7de9d-7bab-4762-acd9-ecf28556906a" + }, + "light": { + "value": "rgb(139, 109, 66)", + "uuid": "b0445ddb-ec22-4dde-81a1-21ea14ed195a" + } + } + }, + "brown-1000": { + "sets": { + "dark": { + "value": "rgb(181, 147, 98)", + "uuid": "6fd7a375-e670-4bde-8061-b1b2ba5116be" + }, + "light": { + "value": "rgb(119, 91, 50)", + "uuid": "0dd635ef-0b0a-4914-8900-999ab7ce436e" + } + } + }, + "brown-1100": { + "sets": { + "dark": { + "value": "rgb(199, 163, 112)", + "uuid": "26df5572-cbdb-4988-8847-672ee1669acd" + }, + "light": { + "value": "rgb(103, 76, 35)", + "uuid": "d14770ac-d032-4408-b5de-637de47bf151" + } + } + }, + "brown-1200": { + "sets": { + "dark": { + "value": "rgb(222, 185, 130)", + "uuid": "c1965544-ed0e-438f-aed0-b1f31836950c" + }, + "light": { + "value": "rgb(88, 61, 21)", + "uuid": "1a2cfeec-1d02-4225-a2a1-ecad878a0372" + } + } + }, + "brown-1300": { + "sets": { + "dark": { + "value": "rgb(232, 207, 169)", + "uuid": "41d1432f-1b3a-4e93-8b57-2e48d0e66096" + }, + "light": { + "value": "rgb(70, 49, 17)", + "uuid": "88621915-f832-4401-b42f-4026cbf6720c" + } + } + }, + "brown-1400": { + "sets": { + "dark": { + "value": "rgb(242, 227, 206)", + "uuid": "91db9b52-530b-4147-be4f-c4d73a82eac3" + }, + "light": { + "value": "rgb(52, 37, 13)", + "uuid": "fa6e22f6-adb1-4123-b685-dd6050b0a248" + } + } + }, + "brown-1500": { + "sets": { + "dark": { + "value": "rgb(250, 244, 236)", + "uuid": "d4d71d28-ce37-4f3f-8487-807cd1c42b9a" + }, + "light": { + "value": "rgb(38, 26, 9)", + "uuid": "ddac3cfe-8338-4df5-94c5-baf4e04e6c46" + } + } + }, + "brown-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "bca1e3d9-9242-4b81-95ab-08735905047b" + }, + "light": { + "value": "rgb(16, 12, 4)", + "uuid": "e2753343-f81b-4677-899c-6dfbcc9378fe" + } + } + }, + "silver-100": { + "sets": { + "dark": { + "value": "rgb(26, 26, 26)", + "uuid": "0c4a28ee-a473-4437-924e-c46a9bc0771b" + }, + "light": { + "value": "rgb(247, 247, 247)", + "uuid": "e190b39c-3e1f-4ad7-bc70-0b98c1770f61" + } + } + }, + "silver-200": { + "sets": { + "dark": { + "value": "rgb(33, 33, 33)", + "uuid": "99b20fba-8fa9-414b-9119-dbaccc5af3c5" + }, + "light": { + "value": "rgb(239, 239, 239)", + "uuid": "f0bae14e-1c9a-4a03-9dbf-dcd3213463c1" + } + } + }, + "silver-300": { + "sets": { + "dark": { + "value": "rgb(44, 44, 44)", + "uuid": "27ca065d-5baf-470f-b1aa-09e9934055d0" + }, + "light": { + "value": "rgb(223, 223, 223)", + "uuid": "41989dfb-ef46-493d-8b50-d9422b221ee8" + } + } + }, + "silver-400": { + "sets": { + "dark": { + "value": "rgb(59, 59, 59)", + "uuid": "0c4f7cca-a9fc-40d5-9503-04c505962f33" + }, + "light": { + "value": "rgb(204, 204, 204)", + "uuid": "4bdcf062-a1b6-4615-ad8e-747082107f44" + } + } + }, + "silver-500": { + "sets": { + "dark": { + "value": "rgb(76, 76, 76)", + "uuid": "98e7bc6e-bfed-47c4-8f6e-ab1e035deef7" + }, + "light": { + "value": "rgb(183, 183, 183)", + "uuid": "1bd72e90-6ec1-4a55-beb2-04ad5afd03d5" + } + } + }, + "silver-600": { + "sets": { + "dark": { + "value": "rgb(92, 92, 92)", + "uuid": "9e46a3c3-25d1-41f5-b76d-d4d136668589" + }, + "light": { + "value": "rgb(160, 160, 160)", + "uuid": "1354b7a3-d0b5-4f48-8631-6b4afd7efe4f" + } + } + }, + "silver-700": { + "sets": { + "dark": { + "value": "rgb(108, 108, 108)", + "uuid": "d66afc23-a9aa-4a50-a094-3dfebe044a08" + }, + "light": { + "value": "rgb(143, 143, 143)", + "uuid": "8c7b40e3-239d-4b57-a846-eb5d9f96615d" + } + } + }, + "silver-800": { + "sets": { + "dark": { + "value": "rgb(123, 123, 123)", + "uuid": "3f481be4-bdd3-45b8-bcfe-c7577cac40d4" + }, + "light": { + "value": "rgb(128, 128, 128)", + "uuid": "bbfb55a6-5bca-424d-8a27-e1e54fff7309" + } + } + }, + "silver-900": { + "sets": { + "dark": { + "value": "rgb(137, 137, 137)", + "uuid": "66efbf5e-008b-41f6-a623-ee3722e41c69" + }, + "light": { + "value": "rgb(114, 114, 114)", + "uuid": "39cdbda8-3c8c-4977-a90e-3883647d93a6" + } + } + }, + "silver-1000": { + "sets": { + "dark": { + "value": "rgb(152, 152, 152)", + "uuid": "ee71e6fd-283f-4ba3-a6a3-b23491ce86d0" + }, + "light": { + "value": "rgb(96, 96, 96)", + "uuid": "943f1415-fc31-4724-8434-9e9cdb51d2b4" + } + } + }, + "silver-1100": { + "sets": { + "dark": { + "value": "rgb(169, 169, 169)", + "uuid": "e1239867-313d-44f8-8ac7-ebdb9f34724e" + }, + "light": { + "value": "rgb(81, 81, 81)", + "uuid": "28748667-93d7-4752-8c75-419af48b4d1d" + } + } + }, + "silver-1200": { + "sets": { + "dark": { + "value": "rgb(190, 190, 190)", + "uuid": "5ce07115-c390-4b72-b1ce-4e1f5346ac59" + }, + "light": { + "value": "rgb(66, 66, 66)", + "uuid": "f1033f5b-aa7f-4351-9100-43ce546f6a8d" + } + } + }, + "silver-1300": { + "sets": { + "dark": { + "value": "rgb(211, 211, 211)", + "uuid": "426823de-8002-4acb-a591-8ace92d1e0cd" + }, + "light": { + "value": "rgb(52, 52, 52)", + "uuid": "77bcd85e-90f8-47b8-a9a3-ec59cd7ffe14" + } + } + }, + "silver-1400": { + "sets": { + "dark": { + "value": "rgb(229, 229, 229)", + "uuid": "b4cae4c1-1075-4776-a217-940423c4297c" + }, + "light": { + "value": "rgb(39, 39, 39)", + "uuid": "369bdb1d-bd52-41b4-8512-159cb20c5d64" + } + } + }, + "silver-1500": { + "sets": { + "dark": { + "value": "rgb(244, 244, 244)", + "uuid": "196c4205-2175-4317-82e1-c2fdeb990c4b" + }, + "light": { + "value": "rgb(28, 28, 28)", + "uuid": "b9b53281-a4f9-4073-8552-d3d4cec25271" + } + } + }, + "silver-1600": { + "sets": { + "dark": { + "value": "rgb(255, 255, 255)", + "uuid": "8509cb0b-461b-441c-b909-0384737ca553" + }, + "light": { + "value": "rgb(12, 12, 12)", + "uuid": "fc85bffe-09d4-4fb6-bb7b-5f1053139b97" + } + } } } From 7b5ec24c405ec92da8ff6c51f42868508281fa07 Mon Sep 17 00:00:00 2001 From: Frank Karstens Date: Wed, 22 Nov 2023 18:39:02 +0100 Subject: [PATCH 028/295] chore: added changeset --- .changeset/wise-turtles-confess.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/wise-turtles-confess.md diff --git a/.changeset/wise-turtles-confess.md b/.changeset/wise-turtles-confess.md new file mode 100644 index 00000000..bc1d48ba --- /dev/null +++ b/.changeset/wise-turtles-confess.md @@ -0,0 +1,5 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +feat: add new color tokens From 3c69b4093c775d3604c5716950808c3db2e8fe6c Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 4 Dec 2023 12:55:42 -0700 Subject: [PATCH 029/295] chore: update changeset to include token diff and design motivation --- .changeset/wise-turtles-confess.md | 77 +++++++++++++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/.changeset/wise-turtles-confess.md b/.changeset/wise-turtles-confess.md index bc1d48ba..f46679a5 100644 --- a/.changeset/wise-turtles-confess.md +++ b/.changeset/wise-turtles-confess.md @@ -1,5 +1,80 @@ --- -"@adobe/spectrum-tokens": patch +"@adobe/spectrum-tokens": minor --- feat: add new color tokens + +## Design Motivation + +Added new colors due to needs from Premiere Pro. The additional colors will also help when creating new data vis color palettes for Spectrum 2. + +## Token Diff + +
Tokens added (64): + +- `brown-100` +- `brown-1000` +- `brown-1100` +- `brown-1200` +- `brown-1300` +- `brown-1400` +- `brown-1500` +- `brown-1600` +- `brown-200` +- `brown-300` +- `brown-400` +- `brown-500` +- `brown-600` +- `brown-700` +- `brown-800` +- `brown-900` +- `pink-100` +- `pink-1000` +- `pink-1100` +- `pink-1200` +- `pink-1300` +- `pink-1400` +- `pink-1500` +- `pink-1600` +- `pink-200` +- `pink-300` +- `pink-400` +- `pink-500` +- `pink-600` +- `pink-700` +- `pink-800` +- `pink-900` +- `silver-100` +- `silver-1000` +- `silver-1100` +- `silver-1200` +- `silver-1300` +- `silver-1400` +- `silver-1500` +- `silver-1600` +- `silver-200` +- `silver-300` +- `silver-400` +- `silver-500` +- `silver-600` +- `silver-700` +- `silver-800` +- `silver-900` +- `turquoise-100` +- `turquoise-1000` +- `turquoise-1100` +- `turquoise-1200` +- `turquoise-1300` +- `turquoise-1400` +- `turquoise-1500` +- `turquoise-1600` +- `turquoise-200` +- `turquoise-300` +- `turquoise-400` +- `turquoise-500` +- `turquoise-600` +- `turquoise-700` +- `turquoise-800` +- `turquoise-900` + +
From 31c166cab5d214289e5b7fba29cf52a290088c58 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 4 Dec 2023 19:59:01 +0000 Subject: [PATCH 030/295] chore: release (beta) --- .changeset/pre.json | 4 +- packages/tokens/CHANGELOG.md | 345 +++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 349 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index cf6c6c05..14e0fbf7 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -13,8 +13,10 @@ "good-peas-mix", "happy-students-vanish", "lemon-dragons-raise", + "neat-balloons-rhyme", "slimy-emus-enjoy", "strange-rings-love", - "warm-experts-beg" + "warm-experts-beg", + "wise-turtles-confess" ] } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index a76a5838..68d59003 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,350 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.5 + +### Major Changes + +- 0af2674: feat: new color values for spectrum2 + + ## Design Motivation + + This update addresses several improvements: + + fuchsia, seafoam: all values shifted to make room for new colors, pink and turquoise + all other colors: certain values were updated to address accessibility contrast requirements against Spectrum 2 background layer colors + + ## Token Diff + +
Token values updated (246): + + - `accent-background-color-default` + - `accent-background-color-down` + - `accent-background-color-hover` + - `accent-background-color-key-focus` + - `accent-color-1000` + - `accent-color-200` + - `accent-color-300` + - `accent-color-400` + - `accent-color-500` + - `accent-color-600` + - `accent-color-700` + - `accent-color-800` + - `accent-color-900` + - `accent-content-color-default` + - `accent-content-color-down` + - `accent-content-color-hover` + - `accent-content-color-key-focus` + - `accent-content-color-selected` + - `accent-visual-color` + - `blue-1000` + - `blue-200` + - `blue-300` + - `blue-400` + - `blue-500` + - `blue-600` + - `blue-700` + - `blue-800` + - `blue-900` + - `blue-background-color-default` + - `blue-visual-color` + - `celery-1000` + - `celery-200` + - `celery-300` + - `celery-400` + - `celery-500` + - `celery-600` + - `celery-700` + - `celery-800` + - `celery-900` + - `celery-background-color-default` + - `celery-visual-color` + - `chartreuse-1000` + - `chartreuse-200` + - `chartreuse-300` + - `chartreuse-400` + - `chartreuse-500` + - `chartreuse-600` + - `chartreuse-700` + - `chartreuse-800` + - `chartreuse-900` + - `chartreuse-background-color-default` + - `chartreuse-visual-color` + - `cyan-1000` + - `cyan-300` + - `cyan-400` + - `cyan-500` + - `cyan-600` + - `cyan-700` + - `cyan-800` + - `cyan-900` + - `cyan-background-color-default` + - `cyan-visual-color` + - `drop-zone-background-color` + - `focus-indicator-color` + - `fuchsia-100` + - `fuchsia-1000` + - `fuchsia-1100` + - `fuchsia-1200` + - `fuchsia-1300` + - `fuchsia-1400` + - `fuchsia-1500` + - `fuchsia-1600` + - `fuchsia-200` + - `fuchsia-300` + - `fuchsia-400` + - `fuchsia-500` + - `fuchsia-600` + - `fuchsia-700` + - `fuchsia-800` + - `fuchsia-900` + - `fuchsia-background-color-default` + - `fuchsia-visual-color` + - `green-100` + - `green-1000` + - `green-200` + - `green-300` + - `green-400` + - `green-500` + - `green-600` + - `green-700` + - `green-800` + - `green-900` + - `green-background-color-default` + - `green-visual-color` + - `icon-color-blue-primary-default` + - `icon-color-green-primary-default` + - `icon-color-red-primary-default` + - `icon-color-yellow-primary-default` + - `indigo-1000` + - `indigo-300` + - `indigo-400` + - `indigo-500` + - `indigo-600` + - `indigo-700` + - `indigo-800` + - `indigo-900` + - `indigo-background-color-default` + - `indigo-visual-color` + - `informative-background-color-default` + - `informative-background-color-down` + - `informative-background-color-hover` + - `informative-background-color-key-focus` + - `informative-color-1000` + - `informative-color-200` + - `informative-color-300` + - `informative-color-400` + - `informative-color-500` + - `informative-color-600` + - `informative-color-700` + - `informative-color-800` + - `informative-color-900` + - `informative-visual-color` + - `magenta-100` + - `magenta-1000` + - `magenta-1100` + - `magenta-1200` + - `magenta-1300` + - `magenta-1400` + - `magenta-200` + - `magenta-300` + - `magenta-400` + - `magenta-500` + - `magenta-600` + - `magenta-700` + - `magenta-800` + - `magenta-900` + - `magenta-background-color-default` + - `magenta-visual-color` + - `negative-background-color-default` + - `negative-background-color-down` + - `negative-background-color-hover` + - `negative-background-color-key-focus` + - `negative-border-color-default` + - `negative-border-color-focus` + - `negative-border-color-hover` + - `negative-border-color-key-focus` + - `negative-color-1000` + - `negative-color-200` + - `negative-color-300` + - `negative-color-400` + - `negative-color-500` + - `negative-color-600` + - `negative-color-700` + - `negative-color-800` + - `negative-color-900` + - `negative-content-color-default` + - `negative-content-color-down` + - `negative-content-color-hover` + - `negative-content-color-key-focus` + - `negative-visual-color` + - `notice-background-color-default` + - `notice-color-1000` + - `notice-color-200` + - `notice-color-400` + - `notice-color-500` + - `notice-color-600` + - `notice-color-700` + - `notice-color-800` + - `notice-color-900` + - `notice-visual-color` + - `orange-1000` + - `orange-200` + - `orange-400` + - `orange-500` + - `orange-600` + - `orange-700` + - `orange-800` + - `orange-900` + - `orange-background-color-default` + - `orange-visual-color` + - `positive-background-color-default` + - `positive-background-color-down` + - `positive-background-color-hover` + - `positive-background-color-key-focus` + - `positive-color-100` + - `positive-color-1000` + - `positive-color-200` + - `positive-color-300` + - `positive-color-400` + - `positive-color-500` + - `positive-color-600` + - `positive-color-700` + - `positive-color-800` + - `positive-color-900` + - `positive-visual-color` + - `purple-1000` + - `purple-200` + - `purple-300` + - `purple-400` + - `purple-500` + - `purple-600` + - `purple-700` + - `purple-800` + - `purple-900` + - `purple-background-color-default` + - `purple-visual-color` + - `red-1000` + - `red-200` + - `red-300` + - `red-400` + - `red-500` + - `red-600` + - `red-700` + - `red-800` + - `red-900` + - `red-background-color-default` + - `red-visual-color` + - `seafoam-100` + - `seafoam-1000` + - `seafoam-1100` + - `seafoam-1200` + - `seafoam-1300` + - `seafoam-1400` + - `seafoam-1500` + - `seafoam-1600` + - `seafoam-200` + - `seafoam-300` + - `seafoam-400` + - `seafoam-500` + - `seafoam-600` + - `seafoam-700` + - `seafoam-800` + - `seafoam-900` + - `seafoam-background-color-default` + - `seafoam-visual-color` + - `table-selected-row-background-color` + - `yellow-1000` + - `yellow-300` + - `yellow-400` + - `yellow-500` + - `yellow-600` + - `yellow-700` + - `yellow-800` + - `yellow-900` + - `yellow-background-color-default` + - `yellow-visual-color` + +
+ +### Minor Changes + +- 7b5ec24: feat: add new color tokens + + ## Design Motivation + + Added new colors due to needs from Premiere Pro. The additional colors will also help when creating new data vis color palettes for Spectrum 2. + + ## Token Diff + +
Tokens added (64): + + - `brown-100` + - `brown-1000` + - `brown-1100` + - `brown-1200` + - `brown-1300` + - `brown-1400` + - `brown-1500` + - `brown-1600` + - `brown-200` + - `brown-300` + - `brown-400` + - `brown-500` + - `brown-600` + - `brown-700` + - `brown-800` + - `brown-900` + - `pink-100` + - `pink-1000` + - `pink-1100` + - `pink-1200` + - `pink-1300` + - `pink-1400` + - `pink-1500` + - `pink-1600` + - `pink-200` + - `pink-300` + - `pink-400` + - `pink-500` + - `pink-600` + - `pink-700` + - `pink-800` + - `pink-900` + - `silver-100` + - `silver-1000` + - `silver-1100` + - `silver-1200` + - `silver-1300` + - `silver-1400` + - `silver-1500` + - `silver-1600` + - `silver-200` + - `silver-300` + - `silver-400` + - `silver-500` + - `silver-600` + - `silver-700` + - `silver-800` + - `silver-900` + - `turquoise-100` + - `turquoise-1000` + - `turquoise-1100` + - `turquoise-1200` + - `turquoise-1300` + - `turquoise-1400` + - `turquoise-1500` + - `turquoise-1600` + - `turquoise-200` + - `turquoise-300` + - `turquoise-400` + - `turquoise-500` + - `turquoise-600` + - `turquoise-700` + - `turquoise-800` + - `turquoise-900` + +
+ ## 13.0.0-beta.4 ### Major Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index c1355a65..2bef45ea 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.4", + "version": "13.0.0-beta.5", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 096345d9e94bc5f07d1588b7c590b4d861011fcd Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 4 Dec 2023 13:02:41 -0700 Subject: [PATCH 031/295] chore: update config for release workflow --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 04bde25f..6bd1d4fb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.7.6 + version: 8.11.0 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run :build --query "projectSource~packages/*" From 20f280fec64103805c9ab589902d6dabbd5ae530 Mon Sep 17 00:00:00 2001 From: mrcjhicks Date: Fri, 8 Dec 2023 21:25:30 +0000 Subject: [PATCH 032/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index fead93cd..0c983366 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -460,8 +460,19 @@ } }, "notice-background-color-default": { - "value": "{notice-color-800}", - "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{notice-color-800}", + "uuid": "323428c1-792d-41b4-8a17-a12f1ac00e2a" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{notice-color-600}", + "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" + } + } }, "disabled-background-color": { "value": "{gray-100}", From 91d7e953dbc08dee80a5ddceb0a105c889f57294 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Dec 2023 09:17:51 -0700 Subject: [PATCH 033/295] chore(tokens): added changeset --- .changeset/tame-bobcats-beg.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .changeset/tame-bobcats-beg.md diff --git a/.changeset/tame-bobcats-beg.md b/.changeset/tame-bobcats-beg.md new file mode 100644 index 00000000..9fe0b0f8 --- /dev/null +++ b/.changeset/tame-bobcats-beg.md @@ -0,0 +1,15 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Fixed bug in the light theme value for notice-background-color-default, from notice-color-800 to notice-color-600 + +## Design Motivation + +While updating the badge component in Figma, we noticed a bug where notice-background-color-default in S2 was entered incorrectly for light theme, and should instead match the value for S1 + +## Token Diff + +_Token values updated (1):_ + +- `notice-background-color-default`: `light`: `notice-color-800` -> `notice-color-600` From b4f2416462cb3b690bcfcef0dff16d9a044a8426 Mon Sep 17 00:00:00 2001 From: karstens Date: Wed, 13 Dec 2023 10:56:22 +0000 Subject: [PATCH 034/295] [create-pull-request] automated change --- packages/tokens/src/color-palette.json | 240 +++++++++++++++++++++++++ 1 file changed, 240 insertions(+) diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index ebb999b5..8ac61eb0 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -4302,5 +4302,245 @@ "uuid": "fc85bffe-09d4-4fb6-bb7b-5f1053139b97" } } + }, + "cinnamon-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(48, 17, 4)", + "uuid": "4d68b861-ba0c-438b-b10b-c209d4943206" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(253, 247, 243)", + "uuid": "27d84774-6d32-4499-8ba9-9d05c8fca55d" + } + } + }, + "cinnamon-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(59, 21, 5)", + "uuid": "bd680dfb-0c2f-45e8-b814-627b496a986c" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(249, 236, 229)", + "uuid": "a8d1aa1d-f9be-448e-8209-afc6097f38ed" + } + } + }, + "cinnamon-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(79, 28, 7)", + "uuid": "4d086a5c-1b70-4750-be79-db934e7bc010" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(244, 218, 203)", + "uuid": "56c7eeb3-990f-48e3-b024-56d36b0378f5" + } + } + }, + "cinnamon-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(100, 41, 15)", + "uuid": "e5ab12a9-84b3-4bfe-94be-f734ae39f10d" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(237, 196, 172)", + "uuid": "d4760c87-d0e2-4c5c-84f3-81e0c4c8fbb3" + } + } + }, + "cinnamon-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(122, 57, 28)", + "uuid": "641a2424-c699-4920-8a27-68bc1bb178a1" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(229, 170, 136)", + "uuid": "39effb8c-2bba-4018-b6df-2465f2f7e0a0" + } + } + }, + "cinnamon-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(143, 74, 40)", + "uuid": "6ccccd38-af76-4045-8ffb-a70bed76b365" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(212, 145, 108)", + "uuid": "7d4de908-322f-4326-b623-a868b454b031" + } + } + }, + "cinnamon-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(163, 88, 52)", + "uuid": "74c0ef96-2f6e-434a-bd89-69c6d9745a45" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(198, 126, 88)", + "uuid": "0601d1ba-9a38-4fc9-ac89-ef332e906f3d" + } + } + }, + "cinnamon-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(179, 103, 64)", + "uuid": "58777c5b-8e62-49fe-8e0b-0f8b5127225c" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(184, 109, 70)", + "uuid": "560d578a-4128-40d5-979f-80d3057294a0" + } + } + }, + "cinnamon-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(192, 119, 80)", + "uuid": "7b65cc42-f559-42de-8077-d808c9e096b6" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(170, 94, 56)", + "uuid": "50199dcc-deae-42ba-99e7-cb98346789eb" + } + } + }, + "cinnamon-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(206, 136, 99)", + "uuid": "40d50298-0ea6-4c7f-8349-2e149ca288aa" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(147, 77, 43)", + "uuid": "b6943b69-7cec-4707-a556-aa350d9d8b89" + } + } + }, + "cinnamon-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(220, 154, 118)", + "uuid": "219f9efa-0717-4d41-80ac-695297b92cf8" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(128, 62, 32)", + "uuid": "62edca31-5c84-4353-9707-f3648c8e1936" + } + } + }, + "cinnamon-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(232, 179, 149)", + "uuid": "a48f0d44-c67a-4e95-b5b9-81379363aebe" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(110, 48, 21)", + "uuid": "e8b6ac17-268d-4ebc-99bc-480d15554356" + } + } + }, + "cinnamon-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(239, 203, 183)", + "uuid": "4aae0490-5f12-430c-824f-f7de008a4e15" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(92, 35, 11)", + "uuid": "4330fb2e-d402-43bc-b7a0-502c7f6d99ea" + } + } + }, + "cinnamon-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(246, 225, 214)", + "uuid": "1e29a372-600e-4cda-a190-b865c5521aa6" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(72, 25, 6)", + "uuid": "6fe88344-7920-46a6-bbe4-be3cfa20298e" + } + } + }, + "cinnamon-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(252, 244, 239)", + "uuid": "7b880574-db1b-47ee-8c66-6504ada37f56" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(52, 18, 4)", + "uuid": "fe6e5407-3f9b-4dd0-9589-7029c19f35b5" + } + } + }, + "cinnamon-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(255, 255, 255)", + "uuid": "1d04ed6a-8efc-472b-b7c7-0fbc160ce7fd" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(24, 8, 2)", + "uuid": "e3727e22-c955-4116-b5a7-2877df6ef2fe" + } + } } } From 6d1c661e5f4b29f20c0711f74d078747913a82c8 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Dec 2023 09:23:49 -0700 Subject: [PATCH 035/295] chore: added changeset --- .changeset/dirty-pets-attend.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .changeset/dirty-pets-attend.md diff --git a/.changeset/dirty-pets-attend.md b/.changeset/dirty-pets-attend.md new file mode 100644 index 00000000..61628298 --- /dev/null +++ b/.changeset/dirty-pets-attend.md @@ -0,0 +1,32 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added new Spectrum 2 color tokens for both light and dark themes: + +Cinnamon 100 to 1600 + +## Design Motivation + +This is the last new color that is a part of the new color set needed from Premiere Pro. The additional color will also help when creating new data vis color palettes for Spectrum 2. + +## Token Diff + +_Tokens added (17):_ + +- `cinnamon-100` +- `cinnamon-200` +- `cinnamon-300` +- `cinnamon-400` +- `cinnamon-500` +- `cinnamon-600` +- `cinnamon-700` +- `cinnamon-800` +- `cinnamon-900` +- `cinnamon-1000` +- `cinnamon-1100` +- `cinnamon-1200` +- `cinnamon-1300` +- `cinnamon-1400` +- `cinnamon-1500` +- `cinnamon-1600` From 07b0cd14ff4599cb58bda3eb2a5dc3cefd567f1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 Dec 2023 16:26:16 +0000 Subject: [PATCH 036/295] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/tokens/CHANGELOG.md | 45 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 48 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 14e0fbf7..dadcc810 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -10,12 +10,14 @@ "transform-tokens-json": "0.0.1" }, "changesets": [ + "dirty-pets-attend", "good-peas-mix", "happy-students-vanish", "lemon-dragons-raise", "neat-balloons-rhyme", "slimy-emus-enjoy", "strange-rings-love", + "tame-bobcats-beg", "warm-experts-beg", "wise-turtles-confess" ] diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 68d59003..da5f0f13 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,50 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.6 + +### Minor Changes + +- 6d1c661: Added new Spectrum 2 color tokens for both light and dark themes: + + Cinnamon 100 to 1600 + + ## Design Motivation + + This is the last new color that is a part of the new color set needed from Premiere Pro. The additional color will also help when creating new data vis color palettes for Spectrum 2. + + ## Token Diff + + _Tokens added (17):_ + + - `cinnamon-100` + - `cinnamon-200` + - `cinnamon-300` + - `cinnamon-400` + - `cinnamon-500` + - `cinnamon-600` + - `cinnamon-700` + - `cinnamon-800` + - `cinnamon-900` + - `cinnamon-1000` + - `cinnamon-1100` + - `cinnamon-1200` + - `cinnamon-1300` + - `cinnamon-1400` + - `cinnamon-1500` + - `cinnamon-1600` + +- 91d7e95: Fixed bug in the light theme value for notice-background-color-default, from notice-color-800 to notice-color-600 + + ## Design Motivation + + While updating the badge component in Figma, we noticed a bug where notice-background-color-default in S2 was entered incorrectly for light theme, and should instead match the value for S1 + + ## Token Diff + + _Token values updated (1):_ + + - `notice-background-color-default`: `light`: `notice-color-800` -> `notice-color-600` + ## 13.0.0-beta.5 ### Major Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 2bef45ea..7dee3f5b 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.5", + "version": "13.0.0-beta.6", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 8a3b74d30b8698c897ad1e400cd6762fbe882b19 Mon Sep 17 00:00:00 2001 From: karstens Date: Tue, 19 Dec 2023 19:55:08 +0000 Subject: [PATCH 037/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 32 +++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 0c983366..8da38f57 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -54,7 +54,7 @@ "background-base-color": { "sets": { "light": { - "value": "{gray-100}", + "value": "{gray-25}", "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" }, "dark": { @@ -1165,5 +1165,35 @@ "negative-border-color-key-focus": { "value": "{negative-color-1000}", "uuid": "393cb93a-3d0a-4118-a2ee-451fdc871b0f" + }, + "background-elevated-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-75}", + "uuid": "4c19885d-0411-43dc-8f4a-db81905728e6" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-25}", + "uuid": "2275e0fa-69a3-4542-9ec6-919e44035118" + } + } + }, + "background-pasteboard-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-25}", + "uuid": "6a7c5092-c262-49b0-b5ec-5b8b4fa66d1e" + }, + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "4938710b-5a69-49eb-8517-6f5556c23298" + } + } } } From b915199686a8a1f6b9c81e19da1a69d1dd66aafe Mon Sep 17 00:00:00 2001 From: Cable Hicks Date: Wed, 13 Dec 2023 09:50:51 -0800 Subject: [PATCH 038/295] feat: auto-adding of schema data based on tokens studio data --- packages/tokens/src/color-aliases.json | 226 ++ packages/tokens/src/color-component.json | 49 +- packages/tokens/src/color-palette.json | 883 ++++++++ packages/tokens/src/icons.json | 14 + packages/tokens/src/layout-component.json | 1856 ++++++++++++++++- packages/tokens/src/layout.json | 497 ++++- .../tokens/src/semantic-color-palette.json | 80 + packages/tokens/src/typography.json | 285 +++ 8 files changed, 3859 insertions(+), 31 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 0c983366..6c6b84d6 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1,17 +1,21 @@ { "focus-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-800}", "uuid": "fe914904-a368-414b-a4ac-21c0b0340d05" }, "static-white-focus-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{white}", "uuid": "1dd6dc5b-47a2-41eb-80fc-f06293ae8e13" }, "static-black-focus-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black}", "uuid": "c6b8275b-f44e-43b4-b763-82dda94d963c" }, "overlay-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black}", "uuid": "af66daa6-9e52-4e68-a605-86d1de4ee971" }, @@ -32,12 +36,15 @@ } }, "drop-shadow-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.15)", "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.8)", "uuid": "e54491a8-d3ca-4d67-bacb-74ac192a387f" }, @@ -48,16 +55,20 @@ } }, "opacity-disabled": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.3", "uuid": "fdf6fd5d-55a0-4428-a258-4e8fafc74b74" }, "background-base-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-25}", "uuid": "cf1299aa-86c7-4523-b6ae-6de597ac3712" }, @@ -68,12 +79,15 @@ } }, "background-layer-1-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-50}", "uuid": "7e6678b7-2903-434b-8ee2-06c83815b01d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-50}", "uuid": "da228344-5b83-4e08-96d2-089068138ba0" }, @@ -84,12 +98,15 @@ } }, "background-layer-2-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-25}", "uuid": "b7b2bf98-b96a-40ca-b51e-5876d3418085" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-75}", "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" }, @@ -100,44 +117,55 @@ } }, "neutral-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "95cf1481-f476-47ce-a45a-54da64b44255" }, "neutral-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "142f9467-e519-4ed7-bd98-69a31e876e70" }, "neutral-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "5a0fdda5-6ac2-4a31-a7b9-6b3a5dd868d6" }, "neutral-background-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "f52c6bfb-2d62-4fc8-a1cd-6c8d7420eeb4" }, "neutral-background-color-selected-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "fd1c9f2b-8358-4bd3-a5cc-d211673428bc" }, "neutral-background-color-selected-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "1c220122-5f32-42f9-848f-ae10061241e5" }, "neutral-background-color-selected-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "966c56d0-4461-45e7-9e20-0277f2111a34" }, "neutral-background-color-selected-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "9b8df7df-3439-4614-b446-97a4de782e27" }, "neutral-subdued-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-700}", "uuid": "3b09b2fd-cbf9-4933-9655-27a75d984f06" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-400}", "uuid": "bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef" }, @@ -148,12 +176,15 @@ } }, "neutral-subdued-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "a1ab50d5-1aa1-4198-9510-7ea8458cc62f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-300}", "uuid": "2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5" }, @@ -164,12 +195,15 @@ } }, "neutral-subdued-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "300d2800-a6e5-4b78-9b6c-aaf2f4af39c6" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-300}", "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" }, @@ -180,12 +214,15 @@ } }, "neutral-subdued-background-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "eece165c-743c-4d7a-b770-3ee50e1951cf" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-300}", "uuid": "a1e08db6-3a72-4b8e-9475-b54a7b9be506" }, @@ -196,16 +233,20 @@ } }, "neutral-subdued-content-color-selected": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{neutral-subdued-content-color-down}", "uuid": "ea46f6d3-4261-4482-a70f-2cddd113aa4a" }, "accent-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-900}", "uuid": "d9d8488d-9b38-47e0-9660-dcad040f3ca8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-600}", "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" }, @@ -216,12 +257,15 @@ } }, "accent-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "9651d413-47dc-4b55-976f-91e5c6c91fb5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-500}", "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" }, @@ -232,12 +276,15 @@ } }, "accent-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "026b1d5e-7cbc-4ee9-91e8-19766b9ac541" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-500}", "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" }, @@ -248,12 +295,15 @@ } }, "accent-background-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "43ca5f34-decc-4de8-9413-74ce57802b65" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-500}", "uuid": "af809118-7a97-409c-925f-8d7636a791c8" }, @@ -264,16 +314,20 @@ } }, "accent-content-color-selected": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-content-color-down}", "uuid": "9cfbf8bc-e4f3-4658-922e-9421e2ed126b" }, "informative-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-900}", "uuid": "3acd52f0-d19c-4174-9ad5-42885ec9d49d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-600}", "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" }, @@ -284,12 +338,15 @@ } }, "informative-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-1000}", "uuid": "06dcb775-28b2-454e-89ce-fda34f30c7d7" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-500}", "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" }, @@ -300,12 +357,15 @@ } }, "informative-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-1000}", "uuid": "91f91b8c-0e65-4b7b-8c7b-60d3b6e235d8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-500}", "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" }, @@ -316,12 +376,15 @@ } }, "informative-background-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-1000}", "uuid": "ea314056-fd9a-4325-b19a-33f56fad2859" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-500}", "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" }, @@ -332,12 +395,15 @@ } }, "negative-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-900}", "uuid": "46204746-7fe7-4f22-887e-2c9b85c3b7bc" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-600}", "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" }, @@ -348,12 +414,15 @@ } }, "negative-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "d2481a50-13a0-4f19-8faa-a1a215fee21d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-500}", "uuid": "648da867-549e-47c3-9312-e9cfda288705" }, @@ -364,12 +433,15 @@ } }, "negative-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "3c2d5afe-fff4-487d-a312-000f738c8704" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-500}", "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" }, @@ -380,12 +452,15 @@ } }, "negative-background-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "41a6ee21-8db2-410b-a694-fca1fbf70f2a" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-500}", "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" }, @@ -396,12 +471,15 @@ } }, "positive-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-900}", "uuid": "d878d795-2292-4d90-a9e2-37af1d97a532" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-600}", "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" }, @@ -412,12 +490,15 @@ } }, "positive-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-1000}", "uuid": "d60ab5e9-9ada-4587-a75f-91f2b492800f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-500}", "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" }, @@ -428,12 +509,15 @@ } }, "positive-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-1000}", "uuid": "4096a319-241e-410c-ad51-521d57155004" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-500}", "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" }, @@ -444,12 +528,15 @@ } }, "positive-background-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-1000}", "uuid": "036525d0-c6c4-478c-9aa3-84242737c6b1" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-500}", "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" }, @@ -475,24 +562,30 @@ } }, "disabled-background-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "a46de9d2-5c68-4a1e-97cd-7cbaf4038303" }, "disabled-static-white-background-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-white-100}", "uuid": "fbd40c55-bb12-43ff-9fa6-c93884befc89" }, "disabled-static-black-background-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-black-100}", "uuid": "579e401c-de49-41af-a8c7-a0a070c31979" }, "gray-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-700}", "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-700}", "uuid": "fa68c3bf-88b5-4653-a42d-7de5ce7cec3d" }, @@ -503,12 +596,15 @@ } }, "red-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-900}", "uuid": "8cec4a84-3eea-45d6-ae1b-64907be7da78" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-700}", "uuid": "ce074ee2-a2a2-4da3-a99e-603524193d46" }, @@ -519,12 +615,15 @@ } }, "orange-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-600}", "uuid": "981c054e-9db5-4589-b9e7-eed307b115ca" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-800}", "uuid": "3e9a6c2a-bd09-4d28-a95c-920109c1852f" }, @@ -535,12 +634,15 @@ } }, "yellow-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-400}", "uuid": "f8e435de-1630-4628-8b6d-128987d66ddc" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-1000}", "uuid": "61c5e375-bff3-479f-8c32-2d2a5edb906c" }, @@ -551,12 +653,15 @@ } }, "chartreuse-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{chartreuse-500}", "uuid": "f6e68186-e7fe-4d36-b371-72461a271358" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{chartreuse-900}", "uuid": "5df9a029-dc91-4078-a198-574486948834" }, @@ -567,12 +672,15 @@ } }, "celery-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{celery-600}", "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{celery-800}", "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" }, @@ -583,12 +691,15 @@ } }, "green-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-900}", "uuid": "d5cac08e-56e8-4217-a153-33f43c1a2059" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-700}", "uuid": "49170573-9c22-42e1-a1ce-cd3d3972ddb7" }, @@ -599,12 +710,15 @@ } }, "seafoam-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-900}", "uuid": "be1d8187-effc-430f-ac31-3904cf83a6d6" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-700}", "uuid": "9a727140-328d-430f-9b10-8965eebe77d1" }, @@ -615,12 +729,15 @@ } }, "cyan-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-900}", "uuid": "12c060c6-db12-41ca-8b53-f4fc0afd2ed7" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-700}", "uuid": "543af64f-9c28-4e88-8597-3259cd7ebf1f" }, @@ -631,12 +748,15 @@ } }, "blue-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-900}", "uuid": "c6c435b6-34b3-4fc1-bf96-a56a15e01fe5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-700}", "uuid": "83591a94-83e1-4557-8f50-cc1fe9793b76" }, @@ -647,12 +767,15 @@ } }, "indigo-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{indigo-900}", "uuid": "23859fff-27f5-4576-83c9-0fbc316e880a" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{indigo-700}", "uuid": "b7f5a677-4e89-40e1-8324-7619a628ce8b" }, @@ -663,12 +786,15 @@ } }, "purple-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{purple-900}", "uuid": "ed07d8f4-390f-4124-a4c4-81b62767c6cd" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{purple-700}", "uuid": "e577d521-0271-4226-a094-624b35a05826" }, @@ -679,12 +805,15 @@ } }, "fuchsia-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{fuchsia-900}", "uuid": "5f61f890-93b3-4ab9-bc80-d75198a5bacf" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{fuchsia-700}", "uuid": "7b4d71d3-ad78-4e02-a48e-fa79f40854a2" }, @@ -695,12 +824,15 @@ } }, "magenta-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{magenta-900}", "uuid": "4e02601f-12da-4ce2-b58c-0aa0e309442d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{magenta-700}", "uuid": "5867d764-d909-4490-b947-533e89997d0a" }, @@ -711,112 +843,140 @@ } }, "background-opacity-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0", "uuid": "b7b25005-7188-4936-8dbc-e2dd15213f47" }, "background-opacity-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "048c326d-93b1-435f-a9e3-a4cbd3144fdd" }, "background-opacity-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "0718c9fc-3bb2-4887-97bd-e23b8ad308c5" }, "background-opacity-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "a35883a9-43fd-4be5-97ee-62fdf3a33f39" }, "neutral-content-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "43ca4c0d-7803-4e8e-b444-26fe70d5304c" }, "neutral-content-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "d236bdc5-037b-4838-8401-8a0d5136936c" }, "neutral-content-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "cf169d95-e427-4665-a983-c24727dbfa60" }, "neutral-content-color-focus-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{neutral-content-color-down}", "uuid": "a370f375-b3b1-4af8-9628-fa901c0252fb" }, "neutral-content-color-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{neutral-content-color-down}", "uuid": "f218dfd0-23be-4f07-becb-6027cc971c8b" }, "neutral-content-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "c2c538e0-6f8d-4586-953a-b98ef40c9eca" }, "neutral-subdued-content-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-700}", "uuid": "7a058b23-341c-4dd3-83d8-358917277836" }, "neutral-subdued-content-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "a6d8a177-3e5c-4d28-a675-c21c2695d2f6" }, "neutral-subdued-content-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "8ab4accc-bd95-48e0-ae3a-539740a07cc6" }, "neutral-subdued-content-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "4e79877b-254d-4226-a28f-4c80d2d8b2f3" }, "accent-content-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-900}", "uuid": "b14c876e-2930-413b-8688-1e0cf2358185" }, "accent-content-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "d6cd141c-d7a4-457f-bed5-9a725ca7a0fe" }, "accent-content-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "25d3b2d2-e7d5-4686-95ff-bfaaddc14ff1" }, "accent-content-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "71dcd137-f767-4d2c-b6ac-942b99ac8621" }, "negative-content-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-900}", "uuid": "2a1b0c71-c3a4-4f4c-a625-346e026853e5" }, "negative-content-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "ff90152d-86bf-4a34-9a7e-ede61966bda0" }, "negative-content-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "f760cc99-ebec-4d34-931e-5621aef995a0" }, "negative-content-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "03a7aa1f-9493-4054-bb21-eb10e593da73" }, "disabled-content-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-400}", "uuid": "8bf69fd3-1462-49b9-a78a-cc2f03380823" }, "disabled-static-white-content-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-white-400}", "uuid": "fe319bca-0413-4ad8-a783-c64563e05816" }, "disabled-static-black-content-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-black-400}", "uuid": "e75dbb08-80eb-4de5-afd4-55a532c69c97" }, "neutral-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-500}", "uuid": "0dc6ed4d-17d5-4878-8ac3-bd99549b4f42" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-600}", "uuid": "35ef6675-7e66-4ef5-8c8d-e8e70939b224" }, @@ -827,12 +987,15 @@ } }, "accent-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-800}", "uuid": "dbcb4372-f250-42bd-a5bc-b9d48cfb9322" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-900}", "uuid": "8ccd197f-fc8e-4d31-866c-2b96049eea89" }, @@ -843,12 +1006,15 @@ } }, "informative-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-800}", "uuid": "cd900a8d-1852-4592-9031-9edab2f9721f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-900}", "uuid": "fd64c9ca-6ad7-415c-b0b8-2579399e33a5" }, @@ -859,12 +1025,15 @@ } }, "negative-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-800}", "uuid": "d1beeda3-a00d-4f8c-8553-0a0f84093b1f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-700}", "uuid": "70cb0316-5b7a-416c-bf93-7d8885c4fce6" }, @@ -875,12 +1044,15 @@ } }, "notice-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{notice-color-700}", "uuid": "b8b38df6-aac5-49fc-99bb-d64a543c5bf8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{notice-color-900}", "uuid": "2759c912-6385-40e4-9ed9-ff2e11815b4d" }, @@ -891,12 +1063,15 @@ } }, "positive-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-700}", "uuid": "455acfc0-1997-4fee-b1dc-3c91bbd9fca2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-800}", "uuid": "25e8289f-6c82-4485-8920-a187f790cd47" }, @@ -907,12 +1082,15 @@ } }, "gray-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-500}", "uuid": "744537db-023b-4833-8262-9c349b0915ee" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-600}", "uuid": "0f7a39c2-3ee7-4ff0-873f-334c81054b77" }, @@ -923,12 +1101,15 @@ } }, "red-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-800}", "uuid": "7fe7c804-7e6b-48ac-b1fa-b88874e0a330" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-700}", "uuid": "870f90ab-7f3e-41b6-9c11-59e9c4ff82c6" }, @@ -939,12 +1120,15 @@ } }, "orange-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-700}", "uuid": "8fdaf9e0-bd3e-4188-84bd-7abf72e50b58" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-900}", "uuid": "e7bf9977-2edf-48bc-8099-ad95e57b55b1" }, @@ -955,12 +1139,15 @@ } }, "yellow-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-600}", "uuid": "73e40884-6d55-4a56-a376-bd788e615754" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-1100}", "uuid": "4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b" }, @@ -971,12 +1158,15 @@ } }, "chartreuse-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{chartreuse-600}", "uuid": "18735078-a942-442b-bc04-1b72bac77c98" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{chartreuse-900}", "uuid": "a46d8e05-4f56-4b46-a279-0164abfa42e8" }, @@ -987,12 +1177,15 @@ } }, "celery-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{celery-700}", "uuid": "8f6f9f6e-1762-4ac3-a9b9-6cacd135dfac" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{celery-800}", "uuid": "37c1311b-29ed-44ab-b656-a7538726ad77" }, @@ -1003,12 +1196,15 @@ } }, "green-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-700}", "uuid": "83f76815-8660-425e-80e6-825a5be0628f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-800}", "uuid": "1219770d-543d-4216-9e87-c158f8a74df6" }, @@ -1019,12 +1215,15 @@ } }, "seafoam-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-700}", "uuid": "2b0a6584-db41-43b9-ba39-39171548c01a" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-800}", "uuid": "736e4768-7944-40ec-a412-4cd36299e03d" }, @@ -1035,12 +1234,15 @@ } }, "cyan-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-600}", "uuid": "c3c126c9-2133-416a-ac0e-4ae00546941b" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-900}", "uuid": "091a2073-baa0-4cc6-b943-9dddc285ad62" }, @@ -1051,12 +1253,15 @@ } }, "blue-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-800}", "uuid": "b7cca44c-7c7d-4904-8f2c-d5bde4ea42a2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-900}", "uuid": "63fe16ed-70fa-4eaf-918c-f642ff69ce05" }, @@ -1067,12 +1272,15 @@ } }, "indigo-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{indigo-800}", "uuid": "cb59d4d5-c17e-428d-a22a-e9a3fc02ac9c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{indigo-900}", "uuid": "584ccbd4-3243-4041-b665-e2342d2b26e8" }, @@ -1083,12 +1291,15 @@ } }, "purple-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{purple-800}", "uuid": "681fc141-b235-4cde-9c3a-f0033943d772" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{purple-900}", "uuid": "0ee2957b-c401-4106-8ff3-9de9fa544a03" }, @@ -1099,12 +1310,15 @@ } }, "fuchsia-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{fuchsia-800}", "uuid": "36b69bb1-d443-4ec6-807b-ea449a886825" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{fuchsia-900}", "uuid": "38e60263-cb08-4090-a653-5acbd1664ae0" }, @@ -1115,12 +1329,15 @@ } }, "magenta-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{magenta-800}", "uuid": "8bc581a9-558c-424d-a72b-f24b48207b82" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{magenta-900}", "uuid": "178e4bc6-6986-4e77-aab0-78dbe66f8e6f" }, @@ -1131,38 +1348,47 @@ } }, "disabled-border-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-300}", "uuid": "474ae56c-709a-4f5a-a56b-62d01093f412" }, "disabled-static-white-border-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-white-300}", "uuid": "c0dfeb64-983e-4f4c-a13e-24b5fbd2b791" }, "disabled-static-black-border-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-black-300}", "uuid": "2df7303f-3c34-47d1-9ec9-b901dfbcf947" }, "negative-border-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-900}", "uuid": "6effed65-3d52-465f-9eb2-7994f1ee90fb" }, "negative-border-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "496571fc-18ce-44a3-a89e-40ff6397adcd" }, "negative-border-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1100}", "uuid": "0c35da5c-cf37-4349-82e4-8739ea94aa65" }, "negative-border-color-focus-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-border-color-down}", "uuid": "63abd660-13c4-47b8-be9e-61e270b95212" }, "negative-border-color-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "aae2b3a5-1f68-4832-9539-62227179e69e" }, "negative-border-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "393cb93a-3d0a-4118-a2ee-451fdc871b0f" } diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index e24f6251..1117ef01 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -1,52 +1,63 @@ { "swatch-border-color": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" }, "swatch-border-opacity": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.51", "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" }, "swatch-disabled-icon-border-color": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black}", "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" }, "swatch-disabled-icon-border-opacity": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.51", "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" }, "thumbnail-border-color": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" }, "thumbnail-border-opacity": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" }, "thumbnail-opacity-disabled": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{opacity-disabled}", "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" }, "opacity-checkerboard-square-light": { "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{white}", "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" }, "opacity-checkerboard-square-dark": { "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "f783b8cb-d31f-46c2-b550-990639752510" }, @@ -58,98 +69,118 @@ }, "avatar-opacity-disabled": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{opacity-disabled}", "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" }, "color-area-border-color": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" }, "color-area-border-opacity": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" }, "color-slider-border-color": { "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" }, "color-slider-border-opacity": { "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" }, "color-loupe-drop-shadow-color": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-black-300}", "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" }, "color-loupe-drop-shadow-y": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b" }, "color-loupe-drop-shadow-blur": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d" }, "color-loupe-inner-border": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-black-200}", "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" }, "color-loupe-outer-border": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{white}", "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" }, "card-selection-background-color": { "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" }, "card-selection-background-color-opacity": { "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.95", "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" }, "drop-zone-background-color": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-visual-color}", "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" }, "drop-zone-background-color-opacity": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" }, "drop-zone-background-color-opacity-filled": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.3", "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" }, "coach-mark-pagination-color": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-600}", "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" }, "color-handle-inner-border-color": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black}", "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" }, "color-handle-inner-border-opacity": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.42", "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" }, "color-handle-outer-border-color": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "spectrum": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black}", "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" } @@ -157,6 +188,7 @@ }, "color-handle-outer-border-opacity": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{color-handle-inner-border-opacity}", "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" }, @@ -169,58 +201,69 @@ }, "floating-action-button-drop-shadow-color": { "component": "floating-action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-black-300}", "uuid": "d66d3a56-1ba0-4ce7-a263-eb46a4d17af0" }, "floating-action-button-shadow-color": { "component": "floating-action-button", - "deprecated": true, - "deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{floating-action-button-drop-shadow-color}", - "uuid": "f843b1b7-4b2f-496e-a679-b0372e49d575" + "uuid": "f843b1b7-4b2f-496e-a679-b0372e49d575", + "deprecated": true, + "deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead" }, "table-row-hover-color": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" }, "table-row-hover-opacity": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.07", "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" }, "table-selected-row-background-color": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-background-color-default}", "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" }, "table-selected-row-background-opacity": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" }, "table-selected-row-background-color-non-emphasized": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{neutral-background-color-selected-default}", "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" }, "table-selected-row-background-opacity-non-emphasized": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "1ef41e27-3dea-4589-ad7a-140a03a77384" }, "table-row-down-opacity": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "75ae742c-e96e-494f-9880-746bb2849575" }, "table-selected-row-background-opacity-hover": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.15", "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" }, "table-selected-row-background-opacity-non-emphasized-hover": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.15", "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" } diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 8ac61eb0..476cf8b4 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -1,135 +1,169 @@ { "white": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "9b799da8-2130-417e-b7ee-5e1154a89837" }, "transparent-white-25": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0)", "uuid": "98a7279b-e21c-41ae-9bae-8b9b2b243e35" }, "transparent-white-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.04)", "uuid": "db1dbf26-fa48-42e1-b724-7953b0a6a543" }, "transparent-white-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.07)", "uuid": "28d11d38-570d-4d99-b581-855781b972c5" }, "transparent-white-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.11)", "uuid": "a1b64a62-7c78-415e-a9be-c86acbf361ca" }, "transparent-white-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.14)", "uuid": "936db837-bc5a-40b0-a0e8-8e39b9fc62cb" }, "transparent-white-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.17)", "uuid": "5ffa0283-ce9c-4f96-9227-f559ec54ee0c" }, "transparent-white-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.21)", "uuid": "12e610d4-e3dc-4e86-9c09-09d86915b6f1" }, "transparent-white-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.39)", "uuid": "89c1380f-3e8e-4895-b025-027cee7ecd5b" }, "transparent-white-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.51)", "uuid": "b24431ee-5c72-4a73-8733-746c6f5d77c0" }, "transparent-white-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.66)", "uuid": "3ecc14ec-a21e-47ba-8225-915509a532af" }, "transparent-white-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.85)", "uuid": "b85836bf-af47-412a-900a-4ec5ad0733b2" }, "transparent-white-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.94)", "uuid": "c5c823c6-1911-4e0e-ba2f-5105f467e108" }, "transparent-white-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "1409a50a-9a9d-463d-957f-fa2e4f98a0cd" }, "black": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 0, 0)", "uuid": "28dea8b0-4e9a-46f9-babb-c8910e6ae783" }, "transparent-black-25": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0)", "uuid": "d0867b86-6245-4c02-8617-ea7fd5c80288" }, "transparent-black-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.03)", "uuid": "d6aa176c-30bd-423f-b05f-4360672bd87e" }, "transparent-black-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.05)", "uuid": "d33a66ea-ca60-416f-9e92-967dbbb1e983" }, "transparent-black-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.09)", "uuid": "7565eb32-d745-4fc3-8779-a717f8ba910a" }, "transparent-black-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.12)", "uuid": "a84ecad8-8005-4ce4-add6-7f83f7e05ba0" }, "transparent-black-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.15)", "uuid": "16a871e1-d9df-42bb-8889-99059d70e82e" }, "transparent-black-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.22)", "uuid": "b769453b-586c-4dd2-b3a1-ddf5964160bc" }, "transparent-black-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.44)", "uuid": "cebedd9f-9e4b-47cf-addb-45d8ff9c9179" }, "transparent-black-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.56)", "uuid": "199e19a5-bf7d-4933-8425-d7d5881e4cf5" }, "transparent-black-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.69)", "uuid": "56da822f-98ea-4ad1-b993-3f052de45f36" }, "transparent-black-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.84)", "uuid": "3e89f180-b0f0-4de0-904b-c80f0210a361" }, "transparent-black-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.93)", "uuid": "c0a331f9-53e3-4c72-b5e3-139d730a1752" }, "transparent-black-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 0, 0)", "uuid": "098f2f56-e52f-47b1-943a-d1d7218de484" }, "gray-25": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(17, 17, 17)", "uuid": "ac61b090-d356-4f7f-ac6d-b4f20617c9e3" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "a8c6363c-5297-41e3-ad76-1b6d0d3a3cc9" } } }, "gray-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(248, 248, 248)", "uuid": "f6e408a6-81ae-4658-8375-a532f324eba0" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(27, 27, 27)", "uuid": "0913be1e-b648-4b80-9976-fd8e5e53f4fc" }, @@ -140,12 +174,15 @@ } }, "gray-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(243, 243, 243)", "uuid": "01cd6c7e-f2eb-4b5d-9e2a-30940e1ab37b" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(34, 34, 34)", "uuid": "1666d544-ad1b-445a-9a57-d2277fb752eb" }, @@ -156,12 +193,15 @@ } }, "gray-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 233, 233)", "uuid": "64e2dbc2-05fa-43d7-80ae-d4d11c55348f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(44, 44, 44)", "uuid": "abd011c4-87a5-4b1f-82e2-e94d118f417f" }, @@ -172,12 +212,15 @@ } }, "gray-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(225, 225, 225)", "uuid": "8de4888d-8da5-45a0-8d5d-64a734993ae4" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(50, 50, 50)", "uuid": "0a676e7a-8a89-4607-a918-3abcfb0234a2" }, @@ -188,12 +231,15 @@ } }, "gray-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(218, 218, 218)", "uuid": "aad52960-a7ec-4f69-85f9-3e1a87975120" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(57, 57, 57)", "uuid": "cc8c4299-c40d-4e93-80b2-c052ee8aaf40" }, @@ -204,12 +250,15 @@ } }, "gray-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(198, 198, 198)", "uuid": "9a4b4fc4-25e4-4ca8-b0d1-949c5851b47e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(68, 68, 68)", "uuid": "c34dd99f-e576-4c98-a89d-86dd47514c55" }, @@ -220,12 +269,15 @@ } }, "gray-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(143, 143, 143)", "uuid": "7fa86c73-f058-4922-be8d-19902515cf44" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(109, 109, 109)", "uuid": "05808575-f14b-49d1-aefb-e3667ec0f5a4" }, @@ -236,12 +288,15 @@ } }, "gray-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(113, 113, 113)", "uuid": "e6a41088-a188-483c-b197-63ed3c70463d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(138, 138, 138)", "uuid": "8880b8f1-7850-49ef-a7ab-fd4e16cb37a6" }, @@ -252,12 +307,15 @@ } }, "gray-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(80, 80, 80)", "uuid": "97111e8e-5823-47f2-af64-c3244b8d3492" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(175, 175, 175)", "uuid": "3cc563c6-386e-4b08-850d-68d4a292e559" }, @@ -268,12 +326,15 @@ } }, "gray-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(41, 41, 41)", "uuid": "2caf1f36-80b9-4659-90be-8d89672bb19f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(219, 219, 219)", "uuid": "d39fc368-ec71-40cd-85e9-afb07862f2b7" }, @@ -284,12 +345,15 @@ } }, "gray-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(19, 19, 19)", "uuid": "59093f0d-98b7-4659-bea6-3248ad20e96c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 242, 242)", "uuid": "90d25d68-afb1-4b2a-9dba-3fe22d44976f" }, @@ -300,24 +364,30 @@ } }, "gray-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "5ce8c477-ae6e-427a-ac5c-79d15c8056ab" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 0, 0)", "uuid": "457fbeb8-56cd-4f3c-9950-f5e01f83f07c" } } }, "blue-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(245, 249, 255)", "uuid": "bb610367-a43d-4ba9-b667-84b4d8da69b2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(14, 23, 63)", "uuid": "7d56ac58-fd58-41b3-9bbd-448ae0a7dd85" }, @@ -328,12 +398,15 @@ } }, "blue-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(229, 240, 254)", "uuid": "989a37a5-66f2-4a84-a118-8d36caee6695" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(15, 28, 82)", "uuid": "7b7d1fd8-cc1e-4053-b320-e481b8f64c46" }, @@ -344,12 +417,15 @@ } }, "blue-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 226, 254)", "uuid": "58dc7d3a-3a6d-4ee4-ad38-5e01a07335bd" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 33, 117)", "uuid": "d88d1685-29dc-486b-a0b9-9c90f60b8cde" }, @@ -360,12 +436,15 @@ } }, "blue-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(172, 207, 253)", "uuid": "9c39c15f-04ee-4cb3-acf3-04c390f14780" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(18, 45, 154)", "uuid": "29d339bb-ef80-40f8-a69b-afa778b60805" }, @@ -376,12 +455,15 @@ } }, "blue-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(142, 185, 252)", "uuid": "ccc5c654-280e-4f46-964e-9d589f571bc6" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(26, 58, 195)", "uuid": "a61ed901-7f77-4667-9d19-fff6bab20623" }, @@ -392,12 +474,15 @@ } }, "blue-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 158, 253)", "uuid": "b781aad3-054c-4e81-a368-a8165e6035fd" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(37, 73, 229)", "uuid": "7e770996-780a-4494-91ea-08c1ae6cfa80" }, @@ -408,12 +493,15 @@ } }, "blue-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(93, 137, 255)", "uuid": "1a25f1fe-6d20-49f9-b8f9-d304efc83626" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 91, 248)", "uuid": "5cc66280-e13a-459d-8529-c3f531aa5e4e" }, @@ -424,12 +512,15 @@ } }, "blue-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(75, 117, 255)", "uuid": "5ac73d3a-a6cc-4403-a8d5-46bc262d62e9" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(69, 110, 254)", "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" }, @@ -440,12 +531,15 @@ } }, "blue-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(59, 99, 251)", "uuid": "3451c170-3e78-449b-86f2-8b7dbea24c1c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(86, 129, 255)", "uuid": "82b09b04-6a70-4a95-9eb5-a321a66a6465" }, @@ -456,12 +550,15 @@ } }, "blue-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(39, 77, 234)", "uuid": "da15fc4a-a3ce-4cbe-a2d1-bf5a2e77e5c4" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(105, 149, 254)", "uuid": "147ed079-b4f0-4cd7-89cd-7ec93750d688" }, @@ -472,12 +569,15 @@ } }, "blue-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(29, 62, 207)", "uuid": "7044000c-09c4-4c12-8b37-94f8601217e2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(124, 169, 252)", "uuid": "2a5d2e32-930d-4c50-b1fd-6781a1dc1db5" }, @@ -488,12 +588,15 @@ } }, "blue-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(21, 50, 173)", "uuid": "aae7bf70-35c6-49f9-a6da-ba40ee217c3d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(152, 192, 252)", "uuid": "ce7da4ba-77ed-4bdd-a154-90f389af6c2a" }, @@ -504,12 +607,15 @@ } }, "blue-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(16, 40, 140)", "uuid": "c6fce6c2-ca99-4a3d-b2af-d96a35ec70dc" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(181, 213, 253)", "uuid": "2bc63c0d-691c-4cc4-95b6-b4e530a44978" }, @@ -520,12 +626,15 @@ } }, "blue-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 31, 105)", "uuid": "af563d02-b975-4ba5-82d3-02bcf30f762c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(213, 231, 254)", "uuid": "eb86d777-ec23-47e4-adc6-1203709dc00d" }, @@ -536,36 +645,45 @@ } }, "blue-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(238, 245, 255)", "uuid": "616c28b4-d9bf-4ff3-9075-6acaad6c112c" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(14, 24, 67)", "uuid": "a24a53d4-d3c3-4d84-b6eb-048326659524" } } }, "blue-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "7e8a7cd3-c803-41a9-9178-b43f9eb2e735" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(7, 11, 30)", "uuid": "29610c54-a311-470d-ad77-c28c000730e3" } } }, "red-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 246, 245)", "uuid": "c9e0870a-8cf0-438e-9395-8141c316ad57" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(54, 10, 3)", "uuid": "04f6044b-d0fa-4705-858c-2dc5721ec30f" }, @@ -576,12 +694,15 @@ } }, "red-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 235, 232)", "uuid": "a1f7b6a3-4195-44dc-a772-9a04d3cf859c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(68, 13, 5)", "uuid": "b18ca77b-898e-4e09-88e2-8901de3e9172" }, @@ -592,12 +713,15 @@ } }, "red-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 214, 209)", "uuid": "3a393af6-c7f2-45bb-a4bc-9b55518c71ac" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(87, 17, 7)", "uuid": "fcfcf026-be31-4a05-b833-6757cacb8b05" }, @@ -608,12 +732,15 @@ } }, "red-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 188, 180)", "uuid": "49e7cf3a-1f2a-4487-a0a9-3869a30593f1" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(115, 24, 11)", "uuid": "8f9fa135-5aca-4e42-b247-fdfbf74bc07b" }, @@ -624,12 +751,15 @@ } }, "red-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 157, 145)", "uuid": "70b11bf5-60c8-48a6-a1d5-2a74bc22e283" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(147, 31, 17)", "uuid": "ec50a21c-88aa-41a8-b607-c8b1c407ac4f" }, @@ -640,12 +770,15 @@ } }, "red-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 118, 101)", "uuid": "00d13447-f1f9-4cda-89b4-6a839260e91a" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(177, 38, 23)", "uuid": "ff0fa040-17d6-4570-84b5-7a88c5bb9f45" }, @@ -656,12 +789,15 @@ } }, "red-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 81, 61)", "uuid": "a84b6ffe-5235-4517-9beb-320ed79cf6b0" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(205, 46, 29)", "uuid": "cb2486de-b2be-45e5-b459-6e371b29d357" }, @@ -672,12 +808,15 @@ } }, "red-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(240, 56, 35)", "uuid": "6c3daf67-9cdc-4c02-9912-ff0b902c22ed" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(230, 54, 35)", "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" }, @@ -688,12 +827,15 @@ } }, "red-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(215, 50, 32)", "uuid": "d5d3bc64-629c-44b0-8ff5-81f260521f5b" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(252, 67, 46)", "uuid": "ccb79099-59f4-4bf2-b149-0de72f556a45" }, @@ -704,12 +846,15 @@ } }, "red-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(183, 40, 24)", "uuid": "4a585714-4331-44b1-b81f-25a8ff1cc8ea" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 103, 86)", "uuid": "95621c5a-1768-4707-a2ce-bd15c61c89f4" }, @@ -720,12 +865,15 @@ } }, "red-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(156, 33, 19)", "uuid": "a02ee7fb-b9de-45f1-bee7-8ffe2145cbec" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 134, 120)", "uuid": "53617d38-1075-4b47-87c7-4695b385a2d7" }, @@ -736,12 +884,15 @@ } }, "red-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(129, 27, 14)", "uuid": "ea79c634-9d94-4012-bae0-903479c34dc5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 167, 157)", "uuid": "e7820c1c-ff58-431d-b521-b81ee3281db0" }, @@ -752,12 +903,15 @@ } }, "red-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(104, 21, 10)", "uuid": "63934482-260f-4c73-a176-cad11427c537" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 196, 189)", "uuid": "7691bca6-3749-4cb7-a950-a94fe3d2910f" }, @@ -768,12 +922,15 @@ } }, "red-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(80, 16, 6)", "uuid": "1c208bc2-2eca-4727-a195-f80fe0e7ea11" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 222, 219)", "uuid": "aaafa24c-cb3c-48cd-9cb7-e164be140ab5" }, @@ -784,36 +941,45 @@ } }, "red-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 242, 240)", "uuid": "e99ac2fd-25ab-4202-a279-41808cc8dbc6" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(59, 11, 4)", "uuid": "45ef3c1f-fb24-4a0e-98c3-69c6027eb709" } } }, "red-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "685778a4-bc17-4d74-a713-1776fc2516af" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(29, 5, 2)", "uuid": "3d8a70af-6e0b-449f-98e3-515498bf00ca" } } }, "orange-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 246, 231)", "uuid": "8bfd5eff-55b4-4b98-9b2e-2871e4ec6ff6" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(49, 16, 0)", "uuid": "974ab8ec-6691-4696-b38c-77e16fb3df88" }, @@ -824,12 +990,15 @@ } }, "orange-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 236, 207)", "uuid": "64371717-ac11-4ec3-a0aa-9042cf43fa8f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(61, 21, 0)", "uuid": "587d4ce3-4275-4d2a-916c-2b1bf78c38ea" }, @@ -840,12 +1009,15 @@ } }, "orange-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 218, 158)", "uuid": "f34f9b32-ef46-4473-bfd6-10b858e53f55" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(80, 27, 0)", "uuid": "74f40bbb-5afd-4c88-89d3-e69de9e2b604" }, @@ -856,12 +1028,15 @@ } }, "orange-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 193, 94)", "uuid": "15bea688-4c32-44c0-9ee3-242bdb50954c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(106, 36, 0)", "uuid": "b912089a-b6c9-49ef-8a4b-0a1f6fbbe963" }, @@ -872,12 +1047,15 @@ } }, "orange-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 162, 19)", "uuid": "33bd4908-1259-4e75-8e96-bd410bebcfd6" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(135, 47, 0)", "uuid": "8a56b352-d7d4-45d4-b403-448557656dab" }, @@ -888,12 +1066,15 @@ } }, "orange-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(252, 125, 0)", "uuid": "eeede364-d711-40e5-9d2a-0255b10d36f2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(162, 59, 0)", "uuid": "27b198b5-bf02-476a-a440-84c9a5bd2ce3" }, @@ -904,12 +1085,15 @@ } }, "orange-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(232, 106, 0)", "uuid": "a4527b6f-e2d4-4a0f-b013-007dc5a2d3ac" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(185, 73, 0)", "uuid": "f9e84513-57d6-4786-b8db-c86055cebfc6" }, @@ -920,12 +1104,15 @@ } }, "orange-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(212, 91, 0)", "uuid": "437e4f5b-e68c-4491-b26c-a9fa1503561b" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(205, 86, 0)", "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" }, @@ -936,12 +1123,15 @@ } }, "orange-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(194, 78, 0)", "uuid": "e9df9a43-f509-44f3-89f6-c277f7445651" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(224, 100, 0)", "uuid": "0fbe4f46-02a8-444d-ace5-c245c6f15112" }, @@ -952,12 +1142,15 @@ } }, "orange-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(167, 62, 0)", "uuid": "7dc902b9-6512-429e-9cb4-c2f97ca08e99" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(243, 117, 0)", "uuid": "92e06ff6-8347-4320-9a98-3054ba458d0e" }, @@ -968,12 +1161,15 @@ } }, "orange-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(144, 51, 0)", "uuid": "b6c1e499-f043-4b5a-81cf-4224a0f83fce" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 137, 0)", "uuid": "a571e2cd-2aff-4344-b608-45a48162cb61" }, @@ -984,12 +1180,15 @@ } }, "orange-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(118, 41, 0)", "uuid": "14da1231-c89f-45a1-845e-f3bd902f704b" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 173, 45)", "uuid": "8e3fe8e0-2b14-4331-869f-de2680ea60ac" }, @@ -1000,12 +1199,15 @@ } }, "orange-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(95, 32, 0)", "uuid": "f650301b-6586-4193-9937-9f12d6c3f99f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 201, 116)", "uuid": "06afaefe-7e0a-42e2-99b5-e62674e1185d" }, @@ -1016,12 +1218,15 @@ } }, "orange-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(73, 24, 0)", "uuid": "99a43835-df3a-4447-b91d-9d943659b07f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 225, 178)", "uuid": "9f2f551f-b606-48ce-9493-888587d3ccb6" }, @@ -1032,36 +1237,45 @@ } }, "orange-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 243, 225)", "uuid": "48b0167c-d675-4fc5-9130-1b36a94fd163" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 18, 0)", "uuid": "8aa75bbd-fd78-463d-a321-8672e5a537d6" } } }, "orange-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "b2f21ea2-e546-4b1a-a72d-e840172857b4" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(25, 8, 0)", "uuid": "e99566f3-7b29-4c75-a4bd-ce17c0d84c3f" } } }, "yellow-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 248, 204)", "uuid": "910d2e36-245f-4df6-a99c-92a5bb4d4cce" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(37, 23, 0)", "uuid": "7bef094a-1523-4392-a0ca-59c48409f17a" }, @@ -1072,12 +1286,15 @@ } }, "yellow-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 241, 151)", "uuid": "0ebcaa53-4d19-4eed-99d1-4477f4358a58" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(47, 29, 0)", "uuid": "f4fdc925-63b3-4670-9f2b-a057c27c834a" }, @@ -1088,12 +1305,15 @@ } }, "yellow-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 222, 44)", "uuid": "97ea0771-52c6-48f0-8725-dc514b0738d4" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(61, 39, 0)", "uuid": "238147c6-0302-4d43-b3a3-42df832c7857" }, @@ -1104,12 +1324,15 @@ } }, "yellow-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(245, 199, 0)", "uuid": "8ffb47cc-cc5c-4179-807e-4a1cb45c6496" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(83, 52, 0)", "uuid": "62ab6892-66ea-4b55-8c1a-fcc191d29717" }, @@ -1120,12 +1343,15 @@ } }, "yellow-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(230, 175, 0)", "uuid": "68a43979-6dee-45b9-963d-3e827b2554f4" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(107, 67, 0)", "uuid": "efa1fdd8-4478-411a-892c-0ecf23939489" }, @@ -1136,12 +1362,15 @@ } }, "yellow-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(210, 149, 0)", "uuid": "8c86293e-334b-49ed-a7aa-eb4fe987002f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(130, 82, 0)", "uuid": "8ae3c5ec-aabe-47a0-b822-ba0907e67ed4" }, @@ -1152,12 +1381,15 @@ } }, "yellow-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(193, 131, 0)", "uuid": "881b7389-0c65-46e6-a391-d1d5800c535c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(151, 97, 0)", "uuid": "ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359" }, @@ -1168,12 +1400,15 @@ } }, "yellow-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(175, 116, 0)", "uuid": "b9ee2410-9573-4acd-bff8-ce11bf0f72a0" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(169, 110, 0)", "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" }, @@ -1184,12 +1419,15 @@ } }, "yellow-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(158, 102, 0)", "uuid": "1b030fd3-f5bc-4e84-8efd-33db77bf64b8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(186, 124, 0)", "uuid": "a12f6cac-7fdc-4fd4-8120-ad957823ff6b" }, @@ -1200,12 +1438,15 @@ } }, "yellow-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(134, 85, 0)", "uuid": "a9d84db4-e9db-45a8-9010-4e64822f0408" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 141, 0)", "uuid": "4cf4a500-37a2-4dd8-a243-14f6c012b53c" }, @@ -1216,12 +1457,15 @@ } }, "yellow-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 72, 0)", "uuid": "b6001568-2f26-4722-85e2-e6a3a8ad0ec8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(218, 159, 0)", "uuid": "4eee9daf-e19d-4e0b-b12d-4fdcc4852956" }, @@ -1232,12 +1476,15 @@ } }, "yellow-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(93, 59, 0)", "uuid": "7be15b50-51c6-4d0c-9ec8-89b4ac170a5a" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(235, 183, 0)", "uuid": "69059dfa-e2e1-4f8d-b06b-058a8724e071" }, @@ -1248,12 +1495,15 @@ } }, "yellow-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(75, 47, 0)", "uuid": "b5808c39-38db-4378-96db-1f6d44ce5172" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(249, 206, 0)", "uuid": "b2a1039c-cbfe-44bf-a0fe-822c5f576f52" }, @@ -1264,12 +1514,15 @@ } }, "yellow-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(56, 35, 0)", "uuid": "65ad1c10-fb0d-4dd2-a9f5-66ab34dcc86b" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 230, 86)", "uuid": "dfd355e7-82fd-4fdb-96bd-b584d7268ee9" }, @@ -1280,36 +1533,45 @@ } }, "yellow-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 246, 195)", "uuid": "166ee2cc-b727-4f3c-9c08-5c586a0f6c11" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(40, 25, 0)", "uuid": "d8eebb60-7b0c-496e-ae04-1f1fc61f3013" } } }, "yellow-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "3df0b31f-656a-4400-99c4-d559da586714" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(18, 11, 0)", "uuid": "ada313e4-768c-4fd0-b93c-b6f6d2a50f68" } } }, "chartreuse-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(246, 251, 222)", "uuid": "b7cca467-abe9-4632-b01a-dda350c93480" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(23, 28, 0)", "uuid": "bdc6a473-3109-44c6-9e2f-198d3224d75f" }, @@ -1320,12 +1582,15 @@ } }, "chartreuse-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(234, 246, 173)", "uuid": "c1146153-61bf-4a31-8254-54a1d25a93c5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(30, 36, 0)", "uuid": "b18f4550-5bbe-496c-b4a5-13df8fd0c7d7" }, @@ -1336,12 +1601,15 @@ } }, "chartreuse-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(208, 236, 70)", "uuid": "f8812b11-742b-44d6-a21a-7fd3db39fe71" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(39, 47, 0)", "uuid": "b98dec90-df71-4593-946d-91df7918caac" }, @@ -1352,12 +1620,15 @@ } }, "chartreuse-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(182, 219, 0)", "uuid": "32e471ce-5b0d-40f1-a77a-67feff02775e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(53, 63, 0)", "uuid": "6a974b7d-ccd2-4778-baae-8caf419a529c" }, @@ -1368,12 +1639,15 @@ } }, "chartreuse-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(163, 196, 0)", "uuid": "fe3be762-b55e-43cb-9163-68ee7dafc53e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(68, 82, 0)", "uuid": "46d8fd3b-0e51-4cdd-a33c-de184b82dcc5" }, @@ -1384,12 +1658,15 @@ } }, "chartreuse-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(143, 172, 0)", "uuid": "d61e865b-6538-42a8-aba8-0842359b80c2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(83, 100, 0)", "uuid": "965174d2-e743-41df-a8e2-570b2ae2f447" }, @@ -1400,12 +1677,15 @@ } }, "chartreuse-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 153, 0)", "uuid": "3d0fd171-80f3-4f08-9ac0-eb46d0e755f9" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(97, 116, 0)", "uuid": "a615bb51-0249-4201-b1c9-1c6269b82ec2" }, @@ -1416,12 +1696,15 @@ } }, "chartreuse-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 137, 0)", "uuid": "9a0701e4-81a0-420b-b751-c6a46670fbf3" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(109, 131, 0)", "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" }, @@ -1432,12 +1715,15 @@ } }, "chartreuse-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(102, 122, 0)", "uuid": "7d22a144-0f7c-435e-ad05-b2d7672dff08" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(122, 147, 0)", "uuid": "1637c50e-88e4-4273-8a75-6e8a233a690c" }, @@ -1448,12 +1734,15 @@ } }, "chartreuse-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(86, 103, 0)", "uuid": "00100510-9965-4086-ba82-0cb62ffebba1" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(136, 164, 0)", "uuid": "7dbedc59-e21c-4953-a7af-5e91d170604a" }, @@ -1464,12 +1753,15 @@ } }, "chartreuse-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(73, 87, 0)", "uuid": "e964b654-261d-44a5-ab0a-78c8137a7783" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(151, 181, 0)", "uuid": "90417b40-97dd-47b3-9dbc-4ac45f8e4a5f" }, @@ -1480,12 +1772,15 @@ } }, "chartreuse-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(60, 71, 0)", "uuid": "6bf184f6-f0e1-41af-94a4-47aa1a37b0aa" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(169, 203, 0)", "uuid": "e4b04d5d-e99d-41c5-8b24-540d653ef3ff" }, @@ -1496,12 +1791,15 @@ } }, "chartreuse-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(47, 57, 0)", "uuid": "e320e57d-2794-4c1e-97ef-3a8b04be1328" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(187, 225, 0)", "uuid": "615841b9-08b2-4e21-981a-b8f5247e9e89" }, @@ -1512,12 +1810,15 @@ } }, "chartreuse-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(35, 43, 0)", "uuid": "56b4f40c-d9f2-4360-99eb-7097aafedf94" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(219, 240, 117)", "uuid": "a75188c9-02e3-4337-8056-9a6f8f39001f" }, @@ -1528,36 +1829,45 @@ } }, "chartreuse-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 249, 206)", "uuid": "d7f569e2-f91c-439e-8e5a-8c8c825367ff" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(25, 30, 0)", "uuid": "63f13dcb-6d61-4ff0-9999-33e16d30e5d6" } } }, "chartreuse-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "753f7aa2-6c7d-4b43-baf9-c72adbd9279d" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(11, 14, 0)", "uuid": "01b68e1d-06d7-44a3-91e6-08e17353008c" } } }, "celery-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(235, 255, 220)", "uuid": "b4a22d71-d90a-4f6e-8f6d-e4967849376f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(11, 31, 0)", "uuid": "43feed9a-9a2a-44e0-9506-9bc5eb8eab1d" }, @@ -1568,12 +1878,15 @@ } }, "celery-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(197, 255, 156)", "uuid": "30941af9-354a-4d61-9462-aca4bcd50093" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(15, 38, 0)", "uuid": "741a30fb-62a9-4c76-a78e-cc2590af9c7d" }, @@ -1584,12 +1897,15 @@ } }, "celery-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(157, 247, 92)", "uuid": "3562f589-ba34-465e-9549-2600e2527ab8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(21, 51, 1)", "uuid": "5eda4487-8f82-48ed-8b22-aa38601bbf88" }, @@ -1600,12 +1916,15 @@ } }, "celery-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(129, 228, 58)", "uuid": "d86c4477-a2f4-449a-8883-daaf33608fde" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(31, 67, 4)", "uuid": "646d80c1-7073-4e13-bbfe-4bd0c2226079" }, @@ -1616,12 +1935,15 @@ } }, "celery-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(110, 206, 42)", "uuid": "9c5fc2d5-30cc-4389-b219-2db69f8a86f9" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(41, 86, 8)", "uuid": "7d4c282b-78ce-4b2c-ab39-26bf02366e4d" }, @@ -1632,12 +1954,15 @@ } }, "celery-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(93, 180, 31)", "uuid": "c2cfbc22-b556-4cb5-b5ee-670254d5ecbc" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(50, 105, 11)", "uuid": "260d8921-3810-4a5d-a20f-cd00170cf951" }, @@ -1648,12 +1973,15 @@ } }, "celery-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 161, 25)", "uuid": "59b03f98-f898-4888-ad71-07a434e2fc7e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(60, 122, 15)", "uuid": "7e7e6abb-a2e9-4308-ac8e-e6866ec17c64" }, @@ -1664,12 +1992,15 @@ } }, "celery-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(72, 144, 20)", "uuid": "41747345-10ab-476a-9d3d-e657f9383e8e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(69, 138, 19)", "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" }, @@ -1680,12 +2011,15 @@ } }, "celery-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(64, 129, 17)", "uuid": "deec9c21-caeb-4ec4-bca4-a7661a2c5f91" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(78, 154, 23)", "uuid": "706f3a95-ab27-497f-aab7-f4ed806eef30" }, @@ -1696,12 +2030,15 @@ } }, "celery-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 109, 12)", "uuid": "3d509755-d653-4a3f-a5a3-fcbed0c2e21c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(88, 172, 28)", "uuid": "021a55b8-26ae-4767-82fb-06b20c58762b" }, @@ -1712,12 +2049,15 @@ } }, "celery-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(44, 92, 9)", "uuid": "ea7327bb-48a8-41dd-b139-c7bda3dedaee" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(100, 190, 35)", "uuid": "e091babe-6e02-4393-a67e-63222ab860b4" }, @@ -1728,12 +2068,15 @@ } }, "celery-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(35, 75, 6)", "uuid": "fc4dedc3-0009-4a5a-8e93-f52ba4155e0a" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(116, 213, 46)", "uuid": "9913e84a-4070-476f-a570-a16781a924cf" }, @@ -1744,12 +2087,15 @@ } }, "celery-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(27, 60, 3)", "uuid": "7a3d9646-272f-4ca1-a4e6-0708eb2cd378" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(136, 234, 65)", "uuid": "d2d8dc91-da75-4c56-a0d8-e6e9802434ad" }, @@ -1760,12 +2106,15 @@ } }, "celery-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(19, 46, 0)", "uuid": "02e66104-cbf7-4e27-89cf-f18b1ef04f2d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(170, 251, 112)", "uuid": "c5c3c68c-8293-4ebb-a8d1-9f4af902906e" }, @@ -1776,36 +2125,45 @@ } }, "celery-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(222, 255, 198)", "uuid": "ad9c1278-7296-4aef-9e19-6cabc2997bfa" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 33, 0)", "uuid": "ca5c139e-1784-4139-89a3-281a83dbeb99" } } }, "celery-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "f1a7d5b6-4414-493a-a5d8-77d81a0121a2" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(4, 15, 0)", "uuid": "56e0d793-ce33-4da3-8e67-d7df10b2cd89" } } }, "green-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 252, 241)", "uuid": "4428dba5-df85-4125-ba54-1c022b986847" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 30, 23)", "uuid": "e5a14d4a-47c5-4a53-84c5-589a0749d906" }, @@ -1816,12 +2174,15 @@ } }, "green-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(215, 247, 225)", "uuid": "9d32cd19-8375-4da3-9324-0e8334c2e714" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 38, 29)", "uuid": "e8f294f5-cb17-4fdc-b370-ca2e3f95d342" }, @@ -1832,12 +2193,15 @@ } }, "green-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 238, 197)", "uuid": "88bac762-84e1-4652-8152-384f3b1faf59" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 51, 38)", "uuid": "cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2" }, @@ -1848,12 +2212,15 @@ } }, "green-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(107, 227, 162)", "uuid": "5cb02868-9f86-4e20-85e0-e4f5df24853c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 68, 48)", "uuid": "c5e88879-9773-446c-883e-96531bcb8fad" }, @@ -1864,12 +2231,15 @@ } }, "green-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(43, 209, 125)", "uuid": "8b315766-4fa0-4acc-a679-89da4162a15c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(2, 87, 58)", "uuid": "27649ccc-69a8-48d6-9d52-6d6e2e28ae17" }, @@ -1880,12 +2250,15 @@ } }, "green-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(18, 184, 103)", "uuid": "4c6c7b90-29ac-4186-a991-c298f19aa83d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(3, 106, 67)", "uuid": "a0513e49-8483-40f8-8b8f-41fdc222f13d" }, @@ -1896,12 +2269,15 @@ } }, "green-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(11, 164, 93)", "uuid": "19a07ad0-9e01-4adc-861d-f7634de1f1ab" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(4, 124, 75)", "uuid": "9c24175e-34a5-46c8-b646-f70c08292776" }, @@ -1912,12 +2288,15 @@ } }, "green-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(7, 147, 85)", "uuid": "1be225f8-3612-422c-923f-b35f1ec4fc00" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(6, 140, 82)", "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" }, @@ -1928,12 +2307,15 @@ } }, "green-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(5, 131, 78)", "uuid": "cd39a520-2020-41d0-96d1-3b0fdb453fef" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(9, 157, 89)", "uuid": "5afee2ee-a5d5-4dcf-a917-11dfdd0c3691" }, @@ -1944,12 +2326,15 @@ } }, "green-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(3, 110, 69)", "uuid": "b0846caa-d394-4614-aaa2-af179de285f4" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(14, 175, 98)", "uuid": "3d6732a1-a1f9-4e18-927b-93cebaae3895" }, @@ -1960,12 +2345,15 @@ } }, "green-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(2, 93, 60)", "uuid": "8d0742b8-c334-41e0-a8e1-50fc8ea3b3ef" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(24, 193, 110)", "uuid": "a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82" }, @@ -1976,12 +2364,15 @@ } }, "green-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(1, 76, 52)", "uuid": "4ea6f2d0-bc92-44fa-90e9-9618806a19c2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(57, 215, 134)", "uuid": "07fa1b72-bf84-4fd5-9565-28373fae6a1f" }, @@ -1992,12 +2383,15 @@ } }, "green-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 61, 44)", "uuid": "569d58d2-c7e4-4a0c-b92a-841e45fcbc09" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(126, 231, 172)", "uuid": "c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73" }, @@ -2008,12 +2402,15 @@ } }, "green-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 46, 34)", "uuid": "c0711ebf-a91a-4041-8e1a-259ed6c3c54c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(189, 241, 208)", "uuid": "df5458e5-891b-4a88-a96c-748a812978a7" }, @@ -2024,36 +2421,45 @@ } }, "green-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(229, 250, 236)", "uuid": "8efbb45d-4d6d-423e-8a3d-cb7117f9fbf8" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 33, 25)", "uuid": "f853b643-e7bf-4af6-81f4-bc6de9007f3c" } } }, "green-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "ce6f19ce-d3fe-4bad-a4fc-7863ea9fd186" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 15, 12)", "uuid": "2b4c3a1a-8ea4-4149-862d-801b559e4f65" } } }, "seafoam-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(235, 251, 246)", "uuid": "2330ab05-6153-47a1-ab56-18f3cb1c579f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 30, 27)", "uuid": "080b56a3-6f95-422a-9f4b-d850966c4984" }, @@ -2064,12 +2470,15 @@ } }, "seafoam-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(211, 246, 234)", "uuid": "870298fd-4e1f-4649-bfbc-5ad5b768c2e3" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 39, 35)", "uuid": "2876bdd7-af97-4cd6-89cc-bdb9c2110946" }, @@ -2080,12 +2489,15 @@ } }, "seafoam-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(169, 237, 216)", "uuid": "1fe5483a-95bd-4597-802a-9e84c1486dbe" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 50, 44)", "uuid": "d90b7496-0f54-41ce-96eb-c973457661ae" }, @@ -2096,12 +2508,15 @@ } }, "seafoam-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(92, 225, 194)", "uuid": "e2b4d354-9a1d-4153-b988-4fc24c117252" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 67, 59)", "uuid": "ec603c2c-b2b2-4769-a889-ba7c91a458eb" }, @@ -2112,12 +2527,15 @@ } }, "seafoam-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(16, 207, 169)", "uuid": "a1da1af7-df37-455d-8d27-2920b36f209f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(2, 86, 75)", "uuid": "c24b866c-5ac0-49de-857b-48c655fa9990" }, @@ -2128,12 +2546,15 @@ } }, "seafoam-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(13, 181, 149)", "uuid": "cfd8a8b3-d567-4eb4-9b6f-5db352607dab" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(4, 105, 89)", "uuid": "73b58f7e-008b-44ae-8969-19d981d444d6" }, @@ -2144,12 +2565,15 @@ } }, "seafoam-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(11, 162, 134)", "uuid": "a036b309-95ec-45e6-b035-f30f0f922422" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(6, 122, 103)", "uuid": "0b8528e6-ceea-47a5-9727-24e97d7bc138" }, @@ -2160,12 +2584,15 @@ } }, "seafoam-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(9, 144, 120)", "uuid": "ac4f12a3-a3f0-4053-87f4-5fc42b08cf23" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(8, 138, 116)", "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" }, @@ -2176,12 +2603,15 @@ } }, "seafoam-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(7, 129, 109)", "uuid": "74cb44f8-8ab0-4a36-9920-0735756e0ddc" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(10, 154, 128)", "uuid": "dca23a18-2b19-48bf-9894-2f0948f6c05e" }, @@ -2192,12 +2622,15 @@ } }, "seafoam-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(5, 108, 92)", "uuid": "84e4e598-4fd7-445a-a6cf-2884c0aae4d0" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 173, 142)", "uuid": "c416b5c5-0506-419f-88ca-f722f12a9d86" }, @@ -2208,12 +2641,15 @@ } }, "seafoam-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(3, 92, 80)", "uuid": "d1bb038a-f83b-4e97-b95f-b215c7bc2916" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(14, 190, 156)", "uuid": "4a853bfc-f1b0-4e39-8cd8-da0350c99cd5" }, @@ -2224,12 +2660,15 @@ } }, "seafoam-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(1, 75, 67)", "uuid": "0eab9416-b6f5-4d26-bde6-9b8a840f7681" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(29, 214, 176)", "uuid": "8e4c65b7-d819-4ffd-9398-71e9d294ba63" }, @@ -2240,12 +2679,15 @@ } }, "seafoam-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 60, 54)", "uuid": "a88e0c6e-dfd5-4a43-8d43-97fa10101165" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(122, 229, 203)", "uuid": "ef35ace8-870d-42e0-8ce6-2df61415431f" }, @@ -2256,12 +2698,15 @@ } }, "seafoam-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 46, 40)", "uuid": "52c9177c-bc81-41b1-ba6d-9b075fbe8541" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(186, 241, 222)", "uuid": "9499384b-336c-4a41-af05-645a92ae40d4" }, @@ -2272,36 +2717,45 @@ } }, "seafoam-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(229, 249, 243)", "uuid": "6e538a2b-05f7-41f5-af4b-89bc3039c25a" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 33, 29)", "uuid": "4cbacecc-89c9-482d-b3f5-7d8f85f0a3f1" } } }, "seafoam-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "29aae26e-f4a4-4e5a-acd2-02df01f6cc90" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 15, 14)", "uuid": "ebbfe9f4-5c24-46b2-983a-98570ed5ec78" } } }, "cyan-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(238, 250, 254)", "uuid": "72bef490-0c3a-4627-9341-fc6627cf3f74" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 29, 39)", "uuid": "24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7" }, @@ -2312,12 +2766,15 @@ } }, "cyan-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(217, 244, 253)", "uuid": "c2aaf729-7f39-499a-8b67-e23801073b05" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 36, 49)", "uuid": "3445cf4b-2460-4692-acf2-71844d687da4" }, @@ -2328,12 +2785,15 @@ } }, "cyan-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(183, 231, 252)", "uuid": "b54275ad-3ea6-4e69-aea2-97f488308fcc" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 48, 65)", "uuid": "e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47" }, @@ -2344,12 +2804,15 @@ } }, "cyan-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(138, 213, 255)", "uuid": "a33de292-77a9-40b7-961e-41ebfe331ad0" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 64, 88)", "uuid": "94a5bd53-d69a-4063-b630-1976230d4f2d" }, @@ -2360,12 +2823,15 @@ } }, "cyan-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(92, 192, 255)", "uuid": "f3e8ff9f-e60b-4bce-9c39-280aef6fcb08" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 82, 113)", "uuid": "909baeef-fd2f-4550-89ea-fb7ac9ea2db5" }, @@ -2376,12 +2842,15 @@ } }, "cyan-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(48, 167, 254)", "uuid": "d65f3e1d-ad9d-4fa7-ac06-37235124e999" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(3, 99, 140)", "uuid": "d753ef33-bfc0-424b-a2ac-ea87ecbee590" }, @@ -2392,12 +2861,15 @@ } }, "cyan-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(29, 149, 231)", "uuid": "08b4548a-618d-4ab5-ae46-2a60c7936f57" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(8, 115, 168)", "uuid": "3cb348d4-14a9-43da-84c4-068cf46c8c6f" }, @@ -2408,12 +2880,15 @@ } }, "cyan-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(18, 134, 205)", "uuid": "6dbdd00d-3b03-4eab-a77c-3a1f16d5e6ef" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(15, 128, 194)", "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" }, @@ -2424,12 +2899,15 @@ } }, "cyan-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(11, 120, 179)", "uuid": "71769f93-467d-497a-b214-45c8753f34f5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(24, 142, 220)", "uuid": "9c183829-4858-4908-b1ac-d89f40f2e903" }, @@ -2440,12 +2918,15 @@ } }, "cyan-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(4, 102, 145)", "uuid": "25c689a1-7876-44fa-8849-3a8db03a866c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(38, 159, 244)", "uuid": "04f3d463-9118-43d5-973d-8bf94417912d" }, @@ -2456,12 +2937,15 @@ } }, "cyan-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 87, 121)", "uuid": "57ca59a9-1677-4813-9c0d-28267233ba35" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(63, 177, 255)", "uuid": "62a7ebff-a49b-4e7a-981f-692a506b4146" }, @@ -2472,12 +2956,15 @@ } }, "cyan-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 71, 98)", "uuid": "d6ba8ac5-09d4-44e2-8ade-216c626eb154" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(107, 199, 255)", "uuid": "36a2af99-eef4-476b-a3b8-58eade0931b7" }, @@ -2488,12 +2975,15 @@ } }, "cyan-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 57, 78)", "uuid": "1b179218-9e53-457d-977b-902509ef28aa" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(152, 219, 255)", "uuid": "5f3df12b-1330-4482-ad34-c623bd36253c" }, @@ -2504,12 +2994,15 @@ } }, "cyan-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 43, 59)", "uuid": "3eac8807-136f-4687-8403-203fb49fbd74" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(195, 236, 252)", "uuid": "fe63b8a3-ebb9-45fe-99c2-e246b53e06a6" }, @@ -2520,36 +3013,45 @@ } }, "cyan-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(230, 248, 253)", "uuid": "ce687c28-38ce-4fbe-8181-060e566b4196" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 31, 43)", "uuid": "4d029c4c-4658-4207-b43c-d69b138b25a3" } } }, "cyan-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "291e6a5c-41b3-4bf1-ad10-38d427e80e48" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 14, 20)", "uuid": "e6cd6257-d8de-428e-8ebf-c1c812031e5e" } } }, "indigo-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(247, 248, 255)", "uuid": "04cf76e0-1e7c-479a-9411-0dcad2f6ab25" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(30, 0, 93)", "uuid": "e60cb247-c265-4009-9f0a-bcbbbb801dd4" }, @@ -2560,12 +3062,15 @@ } }, "indigo-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(235, 238, 255)", "uuid": "ab568cfd-20e5-4e20-a3bf-32292297df8f" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(35, 0, 110)", "uuid": "56c709dd-b41e-478a-8098-21014e3f9ec8" }, @@ -2576,12 +3081,15 @@ } }, "indigo-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 222, 255)", "uuid": "a220a225-3bb9-446c-8ee3-732a96a150d2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(47, 0, 140)", "uuid": "716f244e-67c5-4566-b824-ed7f2192b585" }, @@ -2592,12 +3100,15 @@ } }, "indigo-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(192, 201, 255)", "uuid": "891799a7-b51d-4769-abe3-62dd0da6e190" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(62, 12, 174)", "uuid": "c256e06e-07bc-4dcd-9239-48841916c93b" }, @@ -2608,12 +3119,15 @@ } }, "indigo-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(167, 178, 255)", "uuid": "2751b8ae-f347-4a57-938d-98a5ee86071c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(79, 30, 209)", "uuid": "1ea0564b-6e88-456e-a796-4620d57b8771" }, @@ -2624,12 +3138,15 @@ } }, "indigo-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(145, 151, 254)", "uuid": "2d69bbe7-37c1-4302-9fee-39733bb13a86" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(95, 52, 235)", "uuid": "df590853-ce16-4ddf-bbe9-a912695eae17" }, @@ -2640,12 +3157,15 @@ } }, "indigo-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(132, 128, 254)", "uuid": "3c57f9f6-e837-450b-9443-a702caa049a4" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(109, 75, 248)", "uuid": "0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16" }, @@ -2656,12 +3176,15 @@ } }, "indigo-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(122, 106, 253)", "uuid": "f5a317ea-25f2-4193-9305-f20c231e786e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(119, 97, 252)", "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" }, @@ -2672,12 +3195,15 @@ } }, "indigo-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(113, 85, 250)", "uuid": "87b65e85-d767-47bb-8af5-01b85282c663" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 119, 254)", "uuid": "5cb7ff5e-ec53-4df8-b59d-a1419190a6cf" }, @@ -2688,12 +3214,15 @@ } }, "indigo-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(99, 56, 238)", "uuid": "9d1a9aa9-a7b3-4254-9e55-a992784bb7b5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(139, 141, 254)", "uuid": "0bf6170c-50d7-4600-96fe-2d1af93f173a" }, @@ -2704,12 +3233,15 @@ } }, "indigo-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(84, 36, 219)", "uuid": "2f59721c-2922-4ad3-b50a-37327d592050" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(153, 161, 255)", "uuid": "c85ea1d9-e28d-46c5-abd0-c053858770e0" }, @@ -2720,12 +3252,15 @@ } }, "indigo-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(69, 19, 191)", "uuid": "4aaedaea-2d42-4593-84e4-18a12ce5efc2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(176, 186, 255)", "uuid": "91f9622a-03b4-47b0-b380-5f6d64c13b5d" }, @@ -2736,12 +3271,15 @@ } }, "indigo-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(55, 6, 160)", "uuid": "f8300596-def6-4640-8d9a-c08fea25bfda" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(199, 208, 255)", "uuid": "c0bfd081-7859-4ed5-aa4c-c1f547dab8f3" }, @@ -2752,12 +3290,15 @@ } }, "indigo-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(42, 0, 129)", "uuid": "4e8c10e6-0c7e-4f48-91a0-ff460915725d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(223, 228, 255)", "uuid": "080f9ea4-1d87-4691-adb7-3875a7708555" }, @@ -2768,36 +3309,45 @@ } }, "indigo-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(243, 244, 255)", "uuid": "498d2f9c-7304-406d-a3f8-802a2cbd3502" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(31, 0, 98)", "uuid": "2653368d-d90b-4a5a-97f3-8380fe2e7551" } } }, "indigo-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "c498c300-86e8-4c71-bd3e-5a344324b9c1" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(17, 0, 54)", "uuid": "6a0ad8e2-b574-4148-b151-e0607c4d5317" } } }, "purple-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(251, 247, 254)", "uuid": "e80b112b-a26d-4392-a431-844b33d8bac8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(41, 0, 79)", "uuid": "ffc5aa7a-c339-4583-a586-3e8b1329d16d" }, @@ -2808,12 +3358,15 @@ } }, "purple-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(244, 235, 252)", "uuid": "65816c3d-544e-4bbd-bf0e-c0981e08a5cb" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(50, 0, 96)", "uuid": "2d67627b-372c-46af-b015-6c95bd027664" }, @@ -2824,12 +3377,15 @@ } }, "purple-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(235, 218, 249)", "uuid": "bea266d7-8f53-43b7-b7df-0daa5b7e6f89" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(64, 0, 122)", "uuid": "be628028-f41d-4ace-abf3-f7f38ecb2e01" }, @@ -2840,12 +3396,15 @@ } }, "purple-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(221, 193, 246)", "uuid": "b68c2d3d-02e6-4130-9904-d2d32e67d115" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(83, 0, 159)", "uuid": "474fed30-921a-4795-8999-2310521c64c5" }, @@ -2856,12 +3415,15 @@ } }, "purple-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(208, 167, 243)", "uuid": "9625edd4-fcdd-406a-9a66-068dcfeb3bd9" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(107, 6, 195)", "uuid": "b912e8ba-ed77-4179-9b80-7448f9e37193" }, @@ -2872,12 +3434,15 @@ } }, "purple-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(191, 138, 238)", "uuid": "bfd24d4f-9100-4937-a45d-7614ce0ece74" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(130, 34, 215)", "uuid": "05638159-aaf7-4f3e-849e-a46e80cd9ee6" }, @@ -2888,12 +3453,15 @@ } }, "purple-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(178, 114, 235)", "uuid": "2f218111-4cef-432b-8d69-06492e7c40c1" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(148, 62, 224)", "uuid": "fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c" }, @@ -2904,12 +3472,15 @@ } }, "purple-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(166, 92, 231)", "uuid": "a6205c53-9e63-475c-85f4-bdd5963e1eb2" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(161, 84, 229)", "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" }, @@ -2920,12 +3491,15 @@ } }, "purple-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 71, 226)", "uuid": "b72cb9ff-2b75-487c-914f-1c10bff76f75" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 105, 233)", "uuid": "12d86845-fd54-4d30-aac8-bb9451560ba5" }, @@ -2936,12 +3510,15 @@ } }, "purple-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(134, 40, 217)", "uuid": "163a3d87-cba9-48de-8384-c2820cf03984" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(186, 127, 237)", "uuid": "e527a3bd-3543-4b40-8a9c-eb465695bdb9" }, @@ -2952,12 +3529,15 @@ } }, "purple-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(115, 13, 204)", "uuid": "991db22a-d0c2-4f1a-a45b-95aaf13d747d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(197, 149, 240)", "uuid": "18265c0a-e466-4575-a364-3dfda9e71bd4" }, @@ -2968,12 +3548,15 @@ } }, "purple-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(93, 0, 177)", "uuid": "b71041e1-ca59-4d0c-87e4-2a8e8821b3ab" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(212, 176, 244)", "uuid": "ae071768-dcdd-4e30-8f72-d066abac97af" }, @@ -2984,12 +3567,15 @@ } }, "purple-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(75, 0, 144)", "uuid": "7a524851-d57b-40f7-930a-f67739c0e138" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(225, 201, 247)", "uuid": "fbaaff02-da93-4f45-830a-5fc449a58f0b" }, @@ -3000,12 +3586,15 @@ } }, "purple-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(59, 0, 111)", "uuid": "e1609d80-a6ba-46b6-bd52-83f32fd009ad" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(238, 224, 250)", "uuid": "9ae063c9-5817-45b4-9f57-4b2196c845b9" }, @@ -3016,36 +3605,45 @@ } }, "purple-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(248, 243, 253)", "uuid": "d96c8fa3-5872-4bd2-81a3-0109ddf0bf18" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(44, 0, 84)", "uuid": "f43e7a56-8663-41a9-b688-5b6471e3fcff" } } }, "purple-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "0f10b720-c0f8-46db-9205-fdde265d05f7" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(23, 0, 45)", "uuid": "8adc4493-0971-4b9c-bff7-c5ce8100fc43" } } }, "fuchsia-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(254, 246, 255)", "uuid": "2a8743fc-d3b3-444a-b3f1-8ad816945941" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(50, 0, 61)", "uuid": "3a434405-c4b0-40ef-b383-7cb9a9b60cab" }, @@ -3056,12 +3654,15 @@ } }, "fuchsia-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(253, 233, 255)", "uuid": "a304f27a-7a17-4c12-88d1-07171fa3ca75" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(61, 0, 74)", "uuid": "779ec441-475d-41de-b207-3e139c7c3168" }, @@ -3072,12 +3673,15 @@ } }, "fuchsia-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(250, 211, 255)", "uuid": "723a23a1-0bb0-4c11-89cf-0eca2a421867" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(79, 0, 95)", "uuid": "5fa7110f-0c33-4139-8277-eff40921939e" }, @@ -3088,12 +3692,15 @@ } }, "fuchsia-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(247, 181, 255)", "uuid": "ce8ce579-0dca-462c-a9d3-49e451931812" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(102, 9, 120)", "uuid": "a81bfdd6-4b80-4f1a-922d-2f6e04c27e01" }, @@ -3104,12 +3711,15 @@ } }, "fuchsia-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(243, 147, 255)", "uuid": "779bda09-25fd-4912-9aa8-8e3a5643d0cb" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(127, 23, 146)", "uuid": "7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4" }, @@ -3120,12 +3730,15 @@ } }, "fuchsia-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(236, 105, 255)", "uuid": "bd2db3f8-5eae-4fcb-a1f6-307d3b8e4139" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(151, 38, 170)", "uuid": "0fb76488-9965-4cf9-878f-ceed7fc2be43" }, @@ -3136,12 +3749,15 @@ } }, "fuchsia-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(223, 77, 245)", "uuid": "42525649-03ba-44f7-bc8c-9a824b898920" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 51, 192)", "uuid": "5f971453-aa30-4c1f-8cbc-be45ff042fcd" }, @@ -3152,12 +3768,15 @@ } }, "fuchsia-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(200, 68, 220)", "uuid": "3b2867ea-80f8-44ca-9394-7bb17e8c5a22" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(192, 64, 212)", "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" }, @@ -3168,12 +3787,15 @@ } }, "fuchsia-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(181, 57, 200)", "uuid": "5fa3362b-01ee-4861-9a02-6af6da804f61" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(213, 73, 235)", "uuid": "3c6d42c9-4cba-4373-a61c-c8617c509f92" }, @@ -3184,12 +3806,15 @@ } }, "fuchsia-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(156, 40, 175)", "uuid": "fa79840c-fe56-4f21-b9c5-f1e24f89e031" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(232, 91, 253)", "uuid": "a13d5f15-e4cc-4f7c-928f-aaccbf0d590e" }, @@ -3200,12 +3825,15 @@ } }, "fuchsia-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(135, 27, 154)", "uuid": "44aeb8b3-dd63-43a5-adb6-67cca83ca4c5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(240, 122, 255)", "uuid": "0a4eb3af-d067-4d9f-af91-66c676e49e26" }, @@ -3216,12 +3844,15 @@ } }, "fuchsia-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(113, 15, 131)", "uuid": "fc66406d-0e4c-4f82-9fa6-aec444f04070" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(245, 159, 255)", "uuid": "0d93ff9f-63e8-4caf-9e7b-714e56d968d4" }, @@ -3232,12 +3863,15 @@ } }, "fuchsia-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(92, 4, 109)", "uuid": "00cfb450-b2b1-47ea-aaf2-221827cca75d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(248, 191, 255)", "uuid": "abd44b32-b837-4e11-95c7-4ba1c34db44b" }, @@ -3248,12 +3882,15 @@ } }, "fuchsia-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(72, 0, 88)", "uuid": "e5fc57ed-6d37-4496-a89c-db93104cb333" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(251, 219, 255)", "uuid": "7c819391-d74c-4326-ae0d-fe3534eb44e3" }, @@ -3264,36 +3901,45 @@ } }, "fuchsia-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(253, 241, 255)", "uuid": "ff510e34-7c7c-4795-a224-b1e1c5cc25e0" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(54, 0, 66)", "uuid": "afdfcd22-19fd-4306-a069-c8f9cd0d4f2d" } } }, "fuchsia-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "c06ab95f-6471-4840-99cc-710851d25de4" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(29, 0, 35)", "uuid": "38117e2a-efd1-4edd-8284-6fb0bc7482cc" } } }, "magenta-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 245, 248)", "uuid": "06219a66-5150-42ab-a9fd-c743058728af" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(59, 0, 22)", "uuid": "9149371a-1978-4136-a89c-8895edd35e7d" }, @@ -3304,12 +3950,15 @@ } }, "magenta-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 232, 240)", "uuid": "0a9c01d3-0659-4884-a0e8-7032deeee766" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 0, 27)", "uuid": "f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8" }, @@ -3320,12 +3969,15 @@ } }, "magenta-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 213, 227)", "uuid": "bfe2436d-c026-4641-8cd7-a9824f6948dd" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(93, 0, 34)", "uuid": "673ab9b4-e296-4472-b0b5-15adf9f1f762" }, @@ -3336,12 +3988,15 @@ } }, "magenta-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 185, 208)", "uuid": "4419b5e5-344d-4905-b39d-8935bedf7d6c" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(123, 0, 45)", "uuid": "60560de2-28e6-44b4-bcff-f357fe13a4a7" }, @@ -3352,12 +4007,15 @@ } }, "magenta-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 152, 187)", "uuid": "d7c3e696-4ec4-497f-89c5-bad17cb4699a" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(152, 7, 60)", "uuid": "830123a6-0e42-4c4f-9b20-2f4204d37af8" }, @@ -3368,12 +4026,15 @@ } }, "magenta-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 112, 159)", "uuid": "329f4efa-6f0b-4bc1-95f7-1121bda7f421" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(181, 19, 76)", "uuid": "e6b14a1d-e26e-41c4-b386-7fb3f95b8c93" }, @@ -3384,12 +4045,15 @@ } }, "magenta-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 72, 133)", "uuid": "fcacf0f0-c919-4705-b4c2-6edbe2796fb0" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(207, 31, 92)", "uuid": "11055a6b-7e81-4b59-9feb-8b0b6352be07" }, @@ -3400,12 +4064,15 @@ } }, "magenta-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(240, 45, 110)", "uuid": "21e774f7-89d8-438d-9fc4-aa93261022d1" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(231, 41, 105)", "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" }, @@ -3416,12 +4083,15 @@ } }, "magenta-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(217, 35, 97)", "uuid": "0166ed9b-52e7-447a-b45d-de29ba85eb0d" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 51, 119)", "uuid": "fa5e523e-7ee3-46d0-971f-4ee95c7222b8" }, @@ -3432,12 +4102,15 @@ } }, "magenta-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(186, 22, 80)", "uuid": "98125f18-a061-4aa7-a0c5-a746d635c4c5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 96, 149)", "uuid": "bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154" }, @@ -3448,12 +4121,15 @@ } }, "magenta-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(163, 5, 62)", "uuid": "29d203d7-7c2c-4f36-a5f3-d84fab6be9f1" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 128, 171)", "uuid": "548a74eb-4401-44f4-85b4-921287d84ac9" }, @@ -3464,12 +4140,15 @@ } }, "magenta-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(136, 0, 51)", "uuid": "2a9f4ecf-5678-4345-973a-da1e066eaf10" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 163, 194)", "uuid": "9c634688-1ad5-438b-bd44-a92c64ef9934" }, @@ -3480,12 +4159,15 @@ } }, "magenta-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(111, 0, 40)", "uuid": "0be3f108-028b-4fdd-9a98-8bb24deec2d8" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 193, 214)", "uuid": "6c441ca7-0294-462f-ac18-7b28ff20d7ff" }, @@ -3496,12 +4178,15 @@ } }, "magenta-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(86, 0, 30)", "uuid": "40d9a0f7-0085-4001-a22e-3c22d3887846" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 220, 232)", "uuid": "15f36ded-01af-4c5d-8b11-45523e7d908e" }, @@ -3512,792 +4197,990 @@ } }, "magenta-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 241, 246)", "uuid": "d2814529-9c64-47fd-a317-8669d565cf67" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(64, 0, 22)", "uuid": "70dd220b-46cd-4975-ad8b-5ca31f7c33dc" } } }, "magenta-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "c24954cd-f17c-47b4-8a3e-8cb019a3e330" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(35, 0, 12)", "uuid": "fd25d1ee-438b-49a3-93d8-1d59b2a06f72" } } }, "pink-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(58, 0, 37)", "uuid": "bd616b1d-fe15-498b-b8c3-02b3ec12917c" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 246, 252)", "uuid": "89d9aa85-aef2-47fa-8939-e6774f5fa2de" } } }, "pink-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(71, 0, 44)", "uuid": "b27db3ca-2a1d-40f0-aa6b-d7256262a70c" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 232, 247)", "uuid": "d80ed3c8-4db1-48e7-bd16-1d34580a3108" } } }, "pink-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(90, 0, 57)", "uuid": "b4a885e9-96d3-498f-b8a9-87c448723198" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 211, 240)", "uuid": "3041a3b2-4275-41fb-94ff-607108d94df3" } } }, "pink-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(115, 7, 75)", "uuid": "3a4e3a24-0f21-44a4-ad80-f721ad6acb38" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 181, 230)", "uuid": "c86af74f-6fe2-41a1-a934-2589f56fd041" } } }, "pink-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(143, 18, 97)", "uuid": "14b4ffb1-3dcb-4155-b470-1006982eec4c" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 148, 219)", "uuid": "e526f977-736d-473b-b851-475fd08f5276" } } }, "pink-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(171, 29, 119)", "uuid": "77da83cc-1a57-486b-bb43-e74e6b5ac041" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 103, 204)", "uuid": "d383f12e-48f4-446c-abb4-595a50fd29a2" } } }, "pink-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(196, 39, 138)", "uuid": "6c1ae7db-8ca1-4dbe-9d1e-2b3f5ab28a5c" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 76, 184)", "uuid": "91406d69-6d53-4231-be9e-e90d8ad0cc51" } } }, "pink-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(220, 47, 156)", "uuid": "86b686e1-d580-4fc0-9246-8b94ad2fed96" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(228, 52, 163)", "uuid": "af67d2bf-e92e-42f2-93d6-2f0b45fba0ac" } } }, "pink-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(236, 67, 175)", "uuid": "fb259e11-a051-4116-a7cb-f567cf814df5" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(206, 42, 146)", "uuid": "a53ae96d-64bc-4baa-b51f-4490242047df" } } }, "pink-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(251, 90, 196)", "uuid": "89cc3b46-c438-4e65-bf43-c373cb6af83f" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(176, 31, 123)", "uuid": "8d8448ee-5b8d-4953-a2f8-ba34a3c7f796" } } }, "pink-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 122, 210)", "uuid": "ee41ab95-9c22-4523-94ce-efab466cc261" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(152, 22, 104)", "uuid": "889ea4ff-1362-474e-ab12-15eb08bec89b" } } }, "pink-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 159, 223)", "uuid": "670f5ea8-1435-4dd6-9ee9-f1886378b18f" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 12, 85)", "uuid": "ac7fa4bb-da89-44ef-95d0-5d15fd8df976" } } }, "pink-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 191, 234)", "uuid": "c70eb5b9-80fa-4e03-9589-88001bbed4e2" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(105, 3, 68)", "uuid": "a10ffb76-fc1a-4f2f-ac43-dace44726820" } } }, "pink-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 219, 243)", "uuid": "bb85af92-a0c8-4b12-b651-a2a084d6d1cc" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(83, 0, 53)", "uuid": "8c14e640-5df8-4753-8a47-295c1aee63c5" } } }, "pink-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 241, 250)", "uuid": "0344a02f-ae86-4c77-bb36-480da43b3be1" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(62, 0, 39)", "uuid": "886065e2-949f-4f4c-9aa9-0a843c3d8cf2" } } }, "pink-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "fd715951-5fb7-433c-8a9d-2d10707893e5" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(33, 0, 21)", "uuid": "0612a373-58a7-4393-b789-7dcf8e388b2c" } } }, "turquoise-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 30, 33)", "uuid": "7be82e76-2525-4496-9425-c180746f12df" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(238, 251, 251)", "uuid": "8e69d558-2c95-496f-8244-56c1abecef5f" } } }, "turquoise-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 37, 41)", "uuid": "f70fdb17-da0b-4163-8af6-2daa65327e3a" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(209, 245, 245)", "uuid": "2dd6c94d-b55e-491e-91a9-bf9b4e3ceb54" } } }, "turquoise-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 49, 54)", "uuid": "eb6f8d2a-1a82-42ef-b668-0aac077d4053" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(169, 236, 237)", "uuid": "7eda1d2a-4c4a-495c-8b2f-c663be8c22f8" } } }, "turquoise-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 66, 72)", "uuid": "e354eda3-17c2-4f07-b64b-3620692a12f3" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(111, 221, 228)", "uuid": "7a80623f-07eb-426a-9a64-ced6e3d09df1" } } }, "turquoise-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(3, 84, 92)", "uuid": "de4d07fb-1d63-44cc-a9bf-1cd2e2ed4e59" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(39, 202, 216)", "uuid": "1fae7edd-0b41-4ae6-a436-c1e5ecda3e3a" } } }, "turquoise-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(5, 103, 112)", "uuid": "ae1d9dc7-e778-4c78-b12d-ab187cc3c254" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(15, 177, 192)", "uuid": "be19fd97-84da-40ed-82a2-1afa75b6f405" } } }, "turquoise-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(7, 120, 131)", "uuid": "08f4307e-74f1-446d-9051-8a4c11546289" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 158, 171)", "uuid": "0a313605-1db7-4801-afac-28aeb30aa005" } } }, "turquoise-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(9, 135, 147)", "uuid": "69ae2217-ba32-41ca-a38f-8f19dcc5cf76" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(10, 141, 153)", "uuid": "cb62cb21-ce76-4f47-a88d-14682eb6e06d" } } }, "turquoise-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(11, 151, 164)", "uuid": "2ce15c64-8c38-4935-bc65-7580df395231" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(8, 126, 137)", "uuid": "b1e2b910-c19d-4b83-9f49-f9e858ab58b9" } } }, "turquoise-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(13, 168, 182)", "uuid": "89d12308-9718-40d6-a089-73b9fcf1185b" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(5, 107, 116)", "uuid": "f46bb42a-00fe-44ae-8421-16fbdbe1a9e3" } } }, "turquoise-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(16, 186, 202)", "uuid": "7f0dafc6-6863-4542-b58c-610bd97f79fa" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(3, 90, 98)", "uuid": "7c957f48-f033-4814-a4e0-127e67169771" } } }, "turquoise-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(64, 208, 220)", "uuid": "70ca07eb-a370-4059-9d5a-b55f6a9c9f31" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(1, 74, 81)", "uuid": "d85163b6-fbaf-4c49-b61b-f0b7b9529ff7" } } }, "turquoise-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 225, 231)", "uuid": "c1f51874-6699-4250-bcd3-9d15add56a86" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 59, 65)", "uuid": "c9ab3575-f393-45db-a92b-07eccd4696bb" } } }, "turquoise-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(183, 240, 240)", "uuid": "f2f63354-d6fb-4687-abf8-554c4ab95fbf" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 44, 49)", "uuid": "6ee374d9-95c4-4e5d-8f4d-fa1912cf6514" } } }, "turquoise-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(228, 249, 249)", "uuid": "d4b79c34-286d-40f0-87ce-bbfb6b217dba" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 32, 35)", "uuid": "d3e919d4-3777-4dca-93f9-0e04ab00d0dd" } } }, "turquoise-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "4ae14c01-10b1-4daf-a064-dab9f6fdea9d" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 15, 17)", "uuid": "6af4ec29-d7c5-4562-be2c-a838aa919aed" } } }, "brown-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(35, 24, 8)", "uuid": "478633c7-4a14-4e39-a05c-bfa07aeb4a85" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(252, 247, 242)", "uuid": "aa01448b-bf3b-4da2-b483-127a3ed708f7" } } }, "brown-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(44, 31, 11)", "uuid": "ec81816f-120e-46f9-a5b0-adb94814d1eb" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(247, 238, 225)", "uuid": "1b19a7b6-469e-4f5a-b30b-f3f465021d25" } } }, "brown-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(58, 40, 14)", "uuid": "3c253e65-bd9a-4e52-ad68-83aca3b197e6" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(239, 221, 195)", "uuid": "9f0a77f8-aab8-4942-8119-332b09441939" } } }, "brown-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(78, 55, 19)", "uuid": "a9daa02d-c0aa-4c05-80ee-2bf55165dd36" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(229, 200, 157)", "uuid": "e33616c5-157c-42aa-a349-90d05f50beba" } } }, "brown-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(98, 71, 30)", "uuid": "f455957b-e647-44b3-a917-7d6e19807d40" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(214, 177, 123)", "uuid": "5346904d-2c85-4dd5-815c-ea2708a4d380" } } }, "brown-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(115, 88, 47)", "uuid": "41f83cff-cdd4-4760-a4bd-0bb1ceb46854" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 155, 104)", "uuid": "970fd8ac-c68b-4789-84a6-1397b2514e2f" } } }, "brown-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(132, 104, 61)", "uuid": "dc738913-4af6-446e-8a1b-09c84993c8e5" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(171, 138, 90)", "uuid": "621aa30e-95de-4b69-814f-821dfe12b78d" } } }, "brown-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(148, 118, 73)", "uuid": "e21a0edf-a81a-46a0-a849-11111cb89516" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 123, 77)", "uuid": "b15bdc92-c03f-4ad4-a385-110d635e66af" } } }, "brown-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(163, 132, 84)", "uuid": "79d7de9d-7bab-4762-acd9-ecf28556906a" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(139, 109, 66)", "uuid": "b0445ddb-ec22-4dde-81a1-21ea14ed195a" } } }, "brown-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(181, 147, 98)", "uuid": "6fd7a375-e670-4bde-8061-b1b2ba5116be" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(119, 91, 50)", "uuid": "0dd635ef-0b0a-4914-8900-999ab7ce436e" } } }, "brown-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(199, 163, 112)", "uuid": "26df5572-cbdb-4988-8847-672ee1669acd" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(103, 76, 35)", "uuid": "d14770ac-d032-4408-b5de-637de47bf151" } } }, "brown-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(222, 185, 130)", "uuid": "c1965544-ed0e-438f-aed0-b1f31836950c" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(88, 61, 21)", "uuid": "1a2cfeec-1d02-4225-a2a1-ecad878a0372" } } }, "brown-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(232, 207, 169)", "uuid": "41d1432f-1b3a-4e93-8b57-2e48d0e66096" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(70, 49, 17)", "uuid": "88621915-f832-4401-b42f-4026cbf6720c" } } }, "brown-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 227, 206)", "uuid": "91db9b52-530b-4147-be4f-c4d73a82eac3" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 37, 13)", "uuid": "fa6e22f6-adb1-4123-b685-dd6050b0a248" } } }, "brown-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(250, 244, 236)", "uuid": "d4d71d28-ce37-4f3f-8487-807cd1c42b9a" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(38, 26, 9)", "uuid": "ddac3cfe-8338-4df5-94c5-baf4e04e6c46" } } }, "brown-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "bca1e3d9-9242-4b81-95ab-08735905047b" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(16, 12, 4)", "uuid": "e2753343-f81b-4677-899c-6dfbcc9378fe" } } }, "silver-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(26, 26, 26)", "uuid": "0c4a28ee-a473-4437-924e-c46a9bc0771b" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(247, 247, 247)", "uuid": "e190b39c-3e1f-4ad7-bc70-0b98c1770f61" } } }, "silver-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(33, 33, 33)", "uuid": "99b20fba-8fa9-414b-9119-dbaccc5af3c5" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(239, 239, 239)", "uuid": "f0bae14e-1c9a-4a03-9dbf-dcd3213463c1" } } }, "silver-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(44, 44, 44)", "uuid": "27ca065d-5baf-470f-b1aa-09e9934055d0" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(223, 223, 223)", "uuid": "41989dfb-ef46-493d-8b50-d9422b221ee8" } } }, "silver-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(59, 59, 59)", "uuid": "0c4f7cca-a9fc-40d5-9503-04c505962f33" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(204, 204, 204)", "uuid": "4bdcf062-a1b6-4615-ad8e-747082107f44" } } }, "silver-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(76, 76, 76)", "uuid": "98e7bc6e-bfed-47c4-8f6e-ab1e035deef7" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(183, 183, 183)", "uuid": "1bd72e90-6ec1-4a55-beb2-04ad5afd03d5" } } }, "silver-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(92, 92, 92)", "uuid": "9e46a3c3-25d1-41f5-b76d-d4d136668589" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(160, 160, 160)", "uuid": "1354b7a3-d0b5-4f48-8631-6b4afd7efe4f" } } }, "silver-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(108, 108, 108)", "uuid": "d66afc23-a9aa-4a50-a094-3dfebe044a08" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(143, 143, 143)", "uuid": "8c7b40e3-239d-4b57-a846-eb5d9f96615d" } } }, "silver-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(123, 123, 123)", "uuid": "3f481be4-bdd3-45b8-bcfe-c7577cac40d4" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 128, 128)", "uuid": "bbfb55a6-5bca-424d-8a27-e1e54fff7309" } } }, "silver-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(137, 137, 137)", "uuid": "66efbf5e-008b-41f6-a623-ee3722e41c69" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 114, 114)", "uuid": "39cdbda8-3c8c-4977-a90e-3883647d93a6" } } }, "silver-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(152, 152, 152)", "uuid": "ee71e6fd-283f-4ba3-a6a3-b23491ce86d0" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 96, 96)", "uuid": "943f1415-fc31-4724-8434-9e9cdb51d2b4" } } }, "silver-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(169, 169, 169)", "uuid": "e1239867-313d-44f8-8ac7-ebdb9f34724e" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(81, 81, 81)", "uuid": "28748667-93d7-4752-8c75-419af48b4d1d" } } }, "silver-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 190, 190)", "uuid": "5ce07115-c390-4b72-b1ce-4e1f5346ac59" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(66, 66, 66)", "uuid": "f1033f5b-aa7f-4351-9100-43ce546f6a8d" } } }, "silver-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(211, 211, 211)", "uuid": "426823de-8002-4acb-a591-8ace92d1e0cd" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 52, 52)", "uuid": "77bcd85e-90f8-47b8-a9a3-ec59cd7ffe14" } } }, "silver-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(229, 229, 229)", "uuid": "b4cae4c1-1075-4776-a217-940423c4297c" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(39, 39, 39)", "uuid": "369bdb1d-bd52-41b4-8512-159cb20c5d64" } } }, "silver-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(244, 244, 244)", "uuid": "196c4205-2175-4317-82e1-c2fdeb990c4b" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(28, 28, 28)", "uuid": "b9b53281-a4f9-4073-8552-d3d4cec25271" } } }, "silver-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "8509cb0b-461b-441c-b909-0384737ca553" }, "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 12, 12)", "uuid": "fc85bffe-09d4-4fb6-bb7b-5f1053139b97" } diff --git a/packages/tokens/src/icons.json b/packages/tokens/src/icons.json index 455e388f..bc365ebb 100644 --- a/packages/tokens/src/icons.json +++ b/packages/tokens/src/icons.json @@ -1,22 +1,27 @@ { "icon-color-inverse": { "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-50}", "uuid": "9e04025f-b58c-491a-8569-1965ae074f7b" }, "icon-color-primary-default": { "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{neutral-content-color-default}", "uuid": "d143f2f2-e0d8-4eb3-b06c-86233321fb61" }, "icon-color-blue-primary-default": { "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-900}", "uuid": "f53f030b-755f-46ca-b411-7d62f4eb901e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-800}", "uuid": "1bac9a3f-4bc8-4a4d-8dfd-53c542b1d1d8" }, @@ -28,12 +33,15 @@ }, "icon-color-green-primary-default": { "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-900}", "uuid": "a0717159-cc62-4ba1-b1f1-a69dfb88c6ee" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-800}", "uuid": "260ff567-2bdb-48cc-9576-f4f7629d3a8f" }, @@ -45,12 +53,15 @@ }, "icon-color-red-primary-default": { "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-900}", "uuid": "89656cae-d490-4b9f-93eb-75912b29ecf5" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-700}", "uuid": "a60f2744-ad15-4cf7-b9dc-89ca307ed444" }, @@ -62,12 +73,15 @@ }, "icon-color-yellow-primary-default": { "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-400}", "uuid": "59cd6057-b3d8-4bdf-b752-7df17c2c4a95" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-1000}", "uuid": "5ebf8291-23f8-4806-865d-4ebab38ff03c" }, diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 9d521d10..9962c0a2 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1,12 +1,15 @@ { "checkbox-control-size-small": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "460e8170-de69-4f8e-8420-6c87a1f6f5cd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "af31c1a5-ffce-4a54-8862-3e711ca53d25" } @@ -14,12 +17,15 @@ }, "checkbox-control-size-medium": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "86288454-7192-4e4c-b55f-fc509fc58c01" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "00fee3f7-a743-45d6-a2b6-028d5d96964a" } @@ -27,12 +33,15 @@ }, "checkbox-control-size-large": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "839a52bc-b9ee-473f-acde-0799b4f55ded" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "b4367578-989e-438d-9a3e-7cb077f2f7c9" } @@ -40,12 +49,15 @@ }, "checkbox-control-size-extra-large": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "4ba47ba1-c9bd-447e-8948-009d5b424e0d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "13093f8b-e38e-449f-a982-7f960bb84dfa" } @@ -53,12 +65,15 @@ }, "checkbox-top-to-control-small": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "20518175-5bc7-4659-8007-e74339c39433" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "f254146e-f469-44b1-b0c9-1ac72e88f9e3" } @@ -66,12 +81,15 @@ }, "checkbox-top-to-control-medium": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "dcde5d2d-60f8-4d56-bfb1-bba44a087515" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "e3751526-2db9-421c-85f9-d60071aac49b" } @@ -79,12 +97,15 @@ }, "checkbox-top-to-control-large": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "93edae08-5320-4e7e-a006-a9af1d3665ad" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "d040d2f4-9bb4-4d27-adac-40fef079d958" } @@ -92,12 +113,15 @@ }, "checkbox-top-to-control-extra-large": { "component": "checkbox", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "3c4217bb-91f2-4347-9f65-a0528992f600" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "b3be5ac8-2415-4490-8b4a-c08661ec84d1" } @@ -105,12 +129,15 @@ }, "switch-control-width-small": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "23px", "uuid": "f4d6fe1a-70bd-473a-9fa5-477865ea898e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "ca939c4d-9369-498c-81cb-61df1397f657" } @@ -118,12 +145,15 @@ }, "switch-control-width-medium": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "d329eda6-f13d-4a44-b962-ff06c371ed93" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "ec2f3b6b-80db-4c43-bdd2-caee98796775" } @@ -131,12 +161,15 @@ }, "switch-control-width-large": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "29px", "uuid": "cef839a5-2ba7-4e47-9a85-d94260a8ff10" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "41px", "uuid": "5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea" } @@ -144,12 +177,15 @@ }, "switch-control-width-extra-large": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "33px", "uuid": "f3102afd-e5df-4912-9203-8226ce37fed5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "46px", "uuid": "4e9d9b63-989a-4b63-b74d-22b5188f8df7" } @@ -157,12 +193,15 @@ }, "switch-control-height-small": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "3bf75a24-5e95-4c18-9da2-b7088377fe21" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "a1dbcaf0-bbcf-444d-9d22-7f86db20303a" } @@ -170,12 +209,15 @@ }, "switch-control-height-medium": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "f97f0f1b-c0c2-410f-b116-86d30f4d52cf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928" } @@ -183,12 +225,15 @@ }, "switch-control-height-large": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "8301bfca-a086-4efd-a22f-1d348cbd6dcf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "91b828ce-8ff9-4d32-958e-a8a23ef9b345" } @@ -196,12 +241,15 @@ }, "switch-control-height-extra-large": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "2372d602-78ce-45a7-9dff-152152e55117" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "b7ae7b32-b347-4e09-9978-3b0b92a4dbab" } @@ -209,12 +257,15 @@ }, "switch-top-to-control-small": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "8a907825-236c-4548-91c4-2123e095726c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "f379c453-da21-41f6-92d1-9b6bdb95fd86" } @@ -222,12 +273,15 @@ }, "switch-top-to-control-medium": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "0135b823-5097-43bb-9911-9f731146af3b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "68276028-41d8-49e1-b0d4-f70cd27ab149" } @@ -235,12 +289,15 @@ }, "switch-top-to-control-large": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "f2c965e6-89fb-4b9d-843d-cfde31b7703d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "035e786b-17f2-488e-a049-84b257a3312f" } @@ -248,12 +305,15 @@ }, "switch-top-to-control-extra-large": { "component": "switch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "fbc21571-970f-4bb2-8280-f6262446896b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "7e95ad9a-ca10-4f06-9c19-8dd2270cfdad" } @@ -261,12 +321,15 @@ }, "radio-button-control-size-small": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "407304fc-7c74-4427-9032-b44ab03c07ce" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "90a2b18a-61c7-40d8-926c-d6b18a641010" } @@ -274,12 +337,15 @@ }, "radio-button-control-size-medium": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "9de5b045-532c-48ef-872e-bd3c22f89a41" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "2eef4003-e666-48e7-b25b-8c50063ce400" } @@ -287,12 +353,15 @@ }, "radio-button-control-size-large": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "cadf4b9e-b4d4-4ff5-808b-557864cf7dc8" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "23d0a4aa-693d-4b79-b942-3898f9cf0b80" } @@ -300,12 +369,15 @@ }, "radio-button-control-size-extra-large": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "f8f1d29b-4093-40ed-b73c-7a27e27a63a4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "cc041f48-aaa4-4c20-8990-599e0c56134e" } @@ -313,12 +385,15 @@ }, "radio-button-top-to-control-small": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "b775d7e9-d182-4818-9ae0-b3765a0ecbf7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "02438c4c-161d-45eb-935d-b083ab830876" } @@ -326,12 +401,15 @@ }, "radio-button-top-to-control-medium": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "dcc0155a-6bd1-4148-acaf-e255a7f4d22a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "2f805530-cefe-420a-89e6-a6a81c0faea0" } @@ -339,12 +417,15 @@ }, "radio-button-top-to-control-large": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "309c9559-1763-4345-8090-aaa12f570889" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "41d0dde7-de34-4e99-96d0-4f727ed71673" } @@ -352,12 +433,15 @@ }, "radio-button-top-to-control-extra-large": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "f4620f0a-43ba-4650-8640-9425ed1a1260" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "c478710f-1747-455b-998a-6fa837762905" } @@ -365,17 +449,21 @@ }, "radio-button-selection-indicator": { "component": "radio-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "a7fc6bdb-5b9c-42d4-8f78-d34021ac0708" }, "field-label-text-to-asterisk-small": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "4796831f-4d3e-472c-bad8-699d4eb443ea" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "4271498d-747c-423d-87cc-761b8a181f7c" } @@ -383,12 +471,15 @@ }, "field-label-text-to-asterisk-medium": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "7be280dc-43dc-48c3-bf0c-b53f95e76516" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "2fbc4add-e6b4-4dfa-9a7d-0de628b2f63c" } @@ -396,12 +487,15 @@ }, "field-label-text-to-asterisk-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "997c475e-6ae5-469f-9c8e-9fedafa2b556" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "87149afe-899b-4fb6-bd7c-d2becf8117fc" } @@ -409,12 +503,15 @@ }, "field-label-text-to-asterisk-extra-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "4140e899-8a28-4627-a91a-e6526da1bdf5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "17ba788d-da38-455d-9322-16e4f05ea923" } @@ -422,12 +519,15 @@ }, "field-label-top-to-asterisk-small": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "7122627b-1906-424d-9cbf-261546ff3774" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "ec0c072f-50fb-4934-99fc-a2576062e7b4" } @@ -435,12 +535,15 @@ }, "field-label-top-to-asterisk-medium": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "eb2b857d-9482-42fb-82f9-bbe7899a22b9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "6f65ad1a-4a65-4b83-af44-5bd893f3b40e" } @@ -448,12 +551,15 @@ }, "field-label-top-to-asterisk-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "60caa810-5335-4c9f-95a7-0e60d49f43fc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "e410a804-2655-4bbc-9b66-53a5facc92ac" } @@ -461,12 +567,15 @@ }, "field-label-top-to-asterisk-extra-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "e53ea4a5-bde5-4695-9ab8-50c2ce704019" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "5227bf07-140a-49c6-88f9-cc454d8a90c1" } @@ -474,12 +583,15 @@ }, "field-label-top-margin-small": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "ab718f97-15c3-4b8b-aee7-b50b09ec0a33" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "3240fc8b-c1de-42bd-a004-9b27748f5574" } @@ -487,12 +599,15 @@ }, "field-label-top-margin-medium": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "b5243f56-7985-4686-b41f-9b9b9a18b047" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "9d00a023-3a33-4b98-819e-3229e03d103b" } @@ -500,12 +615,15 @@ }, "field-label-top-margin-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "f7dd90d8-91e6-4090-a5a9-6b30087860a4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "f83b208f-dfdb-49a8-aedd-08fe8c7a86a9" } @@ -513,12 +631,15 @@ }, "field-label-top-margin-extra-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "5c14d528-fe17-4b0b-a123-edbdb93fd173" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "c4c5e251-d514-42cf-b9e3-56694910e95b" } @@ -526,17 +647,21 @@ }, "field-label-to-component": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "4738ec46-a43c-48f9-aeca-87863275dc4d" }, "field-label-to-component-quiet-small": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-8px", "uuid": "1218beeb-1d74-4e1a-b495-38d5f07afb55" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-10px", "uuid": "2d3e67ce-de6d-4e41-bcf8-06b09c0bcce7" } @@ -544,12 +669,15 @@ }, "field-label-to-component-quiet-medium": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-8px", "uuid": "dc00948e-3c0f-4c6b-8e3e-a7fbf396e059" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-10px", "uuid": "074489d2-66b0-4198-94fe-9818279bbf0f" } @@ -557,12 +685,15 @@ }, "field-label-to-component-quiet-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-12px", "uuid": "be80f1b1-4c08-479f-a39e-28b6a64714f2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-15px", "uuid": "c29cfb87-34e7-4397-bfd8-23378ecbb011" } @@ -570,12 +701,15 @@ }, "field-label-to-component-quiet-extra-large": { "component": "field-label", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-15px", "uuid": "d6c750dc-3117-4c1a-96bf-b94d530e912d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-19px", "uuid": "e1298748-d7cc-4bff-93bc-745b777fcf9e" } @@ -583,12 +717,15 @@ }, "help-text-top-to-workflow-icon-small": { "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "91cb19ef-63fc-4d98-a61e-a5f55951f656" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "00334ebf-5706-4a97-b02c-9f41642c4795" } @@ -596,12 +733,15 @@ }, "help-text-top-to-workflow-icon-medium": { "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" } @@ -609,12 +749,15 @@ }, "help-text-top-to-workflow-icon-large": { "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "54cae12b-5f21-47b4-a964-6033bd025975" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "e2c40309-5b3d-485a-bafa-9015a5b751e7" } @@ -622,12 +765,15 @@ }, "help-text-top-to-workflow-icon-extra-large": { "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "bec914a9-5905-40ac-bd61-a727016c1228" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "251c39cc-f949-4055-aecb-42fc99f9d504" } @@ -635,17 +781,21 @@ }, "help-text-to-component": { "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "f99eb317-ebe5-43e7-8066-982fe7a9a8aa" }, "status-light-dot-size-small": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "04485265-2983-4377-9ec5-f2456863a1df" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "cd7e6182-25e6-46cc-99f7-1750bc889183" } @@ -653,12 +803,15 @@ }, "status-light-dot-size-medium": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "ada7bd8c-04c9-4d77-a6e8-072ff86984ae" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "a7fc9ca1-ad6d-47cb-8798-4a18ba4acc79" } @@ -666,12 +819,15 @@ }, "status-light-dot-size-large": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "45832ec2-5f33-4861-a857-1ca2352213db" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "6554dae9-18b6-4c90-b2f4-8aeaab0724ad" } @@ -679,12 +835,15 @@ }, "status-light-dot-size-extra-large": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" } @@ -692,12 +851,15 @@ }, "status-light-top-to-dot-small": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "ddece3b1-7f85-4c08-b783-5bde8e31f480" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "a4f43adc-1db1-4e2f-a5d1-3ec06c62c9ff" } @@ -705,12 +867,15 @@ }, "status-light-top-to-dot-medium": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "e2aa334e-ebb7-4e5f-a735-4f6a43b2d6cf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "321a462b-8811-4264-ac1f-4608df8f8c53" } @@ -718,12 +883,15 @@ }, "status-light-top-to-dot-large": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" } @@ -731,12 +899,15 @@ }, "status-light-top-to-dot-extra-large": { "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "899c7b7c-7405-4e29-8d42-edf41ca2943f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "b351cade-6d69-449e-908a-518793fef5b9" } @@ -744,12 +915,15 @@ }, "action-button-edge-to-hold-icon-extra-small": { "component": "action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "b79597cc-5294-4555-ab78-f4200e480ac3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "d0c7ca7a-e92a-43e4-8b8d-4e4a7f8e9dcc" } @@ -757,12 +931,15 @@ }, "action-button-edge-to-hold-icon-small": { "component": "action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "fa106863-0e09-44d4-9465-68cd3254ed2b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "d94c960b-4248-4422-9a0d-e77b41c6818a" } @@ -770,12 +947,15 @@ }, "action-button-edge-to-hold-icon-medium": { "component": "action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "5022d77a-9332-4bb8-bd9f-d353eed2caa3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "255a24ab-f70d-4698-8d2e-569c37c6c798" } @@ -783,12 +963,15 @@ }, "action-button-edge-to-hold-icon-large": { "component": "action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "dc65074f-a923-4130-84e5-59fa5d5f4121" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "86a36757-a2d1-4263-97dc-62cf4543b3f9" } @@ -796,12 +979,15 @@ }, "action-button-edge-to-hold-icon-extra-large": { "component": "action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "1c72a1bf-cfcc-4553-91c6-d7bbcf02cc5a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "b4b4710b-2073-4285-8342-31ae6712671b" } @@ -809,17 +995,21 @@ }, "button-minimum-width-multiplier": { "component": "button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2.25", "uuid": "68b6ac88-d229-460d-8d59-3f5c141db358" }, "tooltip-tip-width": { "component": "tooltip", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "0732bd0e-c5c0-4e58-8fee-2015c1753237" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "ad2c09a6-c42e-4eef-94a3-6c2180c6e2af" } @@ -827,12 +1017,15 @@ }, "tooltip-tip-height": { "component": "tooltip", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "481757aa-c6b5-4281-9a63-feeb1c88aec6" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "70c9f65f-1e23-4c47-94dd-0c3ddde15743" } @@ -840,12 +1033,15 @@ }, "tooltip-maximum-width": { "component": "tooltip", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "160px", "uuid": "e5ba234a-afdd-451e-84e7-51314446cdae" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "200px", "uuid": "6d7623e1-65f5-4af5-8c08-b33b093b85ae" } @@ -853,27 +1049,33 @@ }, "divider-thickness-small": { "component": "divider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "9dcc27ef-7044-4051-97f3-2fd64a5d0a36" }, "divider-thickness-medium": { "component": "divider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "3cf3e962-92f3-4334-8b92-9a1da9396c25" }, "divider-thickness-large": { "component": "divider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "913cce2a-c928-4803-9bd6-3fb1e0fcbee5" }, "progress-circle-size-small": { "component": "progress-circle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "2b9f6096-84e7-4430-a3a9-a9daadcd1225" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "a7fafd60-dc38-425a-b6b6-952a06d30ab4" } @@ -881,12 +1083,15 @@ }, "progress-circle-size-medium": { "component": "progress-circle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "2b9efe78-8384-4994-a4ab-82046f109d20" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "c380cf9b-cb59-465c-9b56-41654d3239f1" } @@ -894,12 +1099,15 @@ }, "progress-circle-size-large": { "component": "progress-circle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "a91ff845-aeb8-4a1b-9e4a-d34c77bb8253" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "80px", "uuid": "c7719369-7d3d-4446-ade2-08abb472a985" } @@ -907,12 +1115,15 @@ }, "progress-circle-thickness-small": { "component": "progress-circle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "becddd13-6ef9-4abc-9468-25885b2b4b84" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "a37ef752-662b-4152-b247-0ce9fcd624e4" } @@ -920,12 +1131,15 @@ }, "progress-circle-thickness-medium": { "component": "progress-circle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "a3adff4d-e69e-4aa0-95ec-2019328b7d08" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "aa930d94-7874-44d7-80f1-dc431d40c4a4" } @@ -933,12 +1147,15 @@ }, "progress-circle-thickness-large": { "component": "progress-circle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "6331ae2c-ddf9-4de4-8df4-82b5581cf2ea" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "076b031f-5980-4112-bf0b-2cec47f54c6b" } @@ -946,12 +1163,15 @@ }, "toast-height": { "component": "toast", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "a6267318-c8b1-43d4-99b6-ca2a55e9dff4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "12c8ae92-16b9-48ec-801c-bf07785da4b3" } @@ -959,12 +1179,15 @@ }, "toast-maximum-width": { "component": "toast", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "336px", "uuid": "9ac252c8-06dd-48a9-a3d3-ca8ccfb355dd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "420px", "uuid": "a4de5997-1eb1-430f-9a9f-cf2637d02d34" } @@ -972,12 +1195,15 @@ }, "toast-top-to-workflow-icon": { "component": "toast", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "d10d2a55-2b4d-46b1-81e9-521d6c3578e1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "1f83245b-3d79-4326-b843-df7b6549cade" } @@ -985,12 +1211,15 @@ }, "toast-top-to-text": { "component": "toast", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "be4f24cf-9334-4fc4-aa72-e0347beecda7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "9f0688f5-128f-47c3-8585-94d704214881" } @@ -998,12 +1227,15 @@ }, "toast-bottom-to-text": { "component": "toast", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "821e8f74-d1de-4507-9ff7-ece44e535e8c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "a790fd9e-4e5f-4f4c-a3ca-832540832580" } @@ -1011,12 +1243,15 @@ }, "action-bar-height": { "component": "action-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "e67822de-d0cd-4b49-8e90-6c43523bb4dd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "4be2cf45-1ba5-4a6f-a004-8d26ecbb4c2f" } @@ -1024,12 +1259,15 @@ }, "action-bar-top-to-item-counter": { "component": "action-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "73f82d09-7927-461c-b7d7-ab0bc6b3e3f9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "b8466a83-3409-47c0-a329-b8e83b83abdb" } @@ -1037,12 +1275,15 @@ }, "swatch-size-extra-small": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "9fa676c9-ccfb-47db-9ae4-348884b9b120" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "0d926e1a-080a-41ba-8bb9-ef6d0847cb77" } @@ -1050,12 +1291,15 @@ }, "swatch-size-small": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "33789b22-7d2c-4620-8f45-973e734ef5b6" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "c8d8e379-1e3f-4f5e-bce3-df3fc05ff16e" } @@ -1063,12 +1307,15 @@ }, "swatch-size-medium": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "2e29b29f-b8b7-430a-8720-31422c6ad243" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "77be7e79-a589-4f32-9e42-ea45ed7763aa" } @@ -1076,12 +1323,15 @@ }, "swatch-size-large": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "91e7d7f2-a34d-4d03-831c-75574d1b7bee" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "162c1233-3420-44a2-a270-97d0a7c23df1" } @@ -1089,47 +1339,57 @@ }, "swatch-rectangle-width-multiplier": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2", "uuid": "b3157e9d-82a0-429e-b987-8c240a669af7" }, "swatch-slash-thickness-extra-small": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "944c49d7-e189-4daa-aca1-b0b590d78875" }, "swatch-slash-thickness-small": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "f626d145-7840-4958-86be-d2306b5b2233" }, "swatch-slash-thickness-medium": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "4e735599-f420-4b51-aa75-607046431c76" }, "swatch-slash-thickness-large": { "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "6b1b2709-de8c-450d-9299-49200208599e" }, "progress-bar-minimum-width": { "component": "progress-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "8dfd4f94-93cc-47dd-92d2-87d1696f4ab7" }, "progress-bar-maximum-width": { "component": "progress-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "768px", "uuid": "7ba00389-a6ba-4d18-9d88-8704427ad784" }, "progress-bar-thickness-small": { "component": "progress-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "f8881a13-70fb-4797-a3ec-08c3c8432b5a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "ab98c47f-f2e4-4f74-8008-55c65907b6eb" } @@ -1137,12 +1397,15 @@ }, "progress-bar-thickness-medium": { "component": "progress-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "0d9f1945-262b-48d0-b584-ff78ec28e012" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "d53e3ac6-6091-4c3f-9e1b-b12b716a5f95" } @@ -1150,12 +1413,15 @@ }, "progress-bar-thickness-large": { "component": "progress-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "f8dfa5e7-efb8-409f-8ab3-6bf3adf2199b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "4b680695-7e42-493c-889b-c76a60ab1f4f" } @@ -1163,12 +1429,15 @@ }, "progress-bar-thickness-extra-large": { "component": "progress-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "71229a29-a2cf-46bc-84d4-d324bffad26b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "c15e51b3-4a5e-421e-aa4e-e0a82840f1a2" } @@ -1176,22 +1445,27 @@ }, "meter-minimum-width": { "component": "meter", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "fd4f6ef0-bab2-4405-9eea-8a9b8a7dd295" }, "meter-maximum-width": { "component": "meter", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "768px", "uuid": "63bfb4da-4aaf-49c6-9328-16c636cf0bf9" }, "meter-width": { "component": "meter", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "192px", "uuid": "ceeda4da-026b-496c-8abd-7081aceae262" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "dc5f4966-4ddd-4e9a-a748-370d8eaae568" } @@ -1206,12 +1480,15 @@ }, "meter-thickness-small": { "component": "meter", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "0013e354-3f26-41a5-8486-2577045872f6" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "eb9c3cff-5a1a-4832-a623-6ab258b81d37" } @@ -1219,12 +1496,15 @@ }, "meter-thickness-large": { "component": "meter", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "06751674-2222-433d-9dc6-40f14b2add6c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "c9052808-918e-4368-b113-28f928104eda" } @@ -1232,17 +1512,21 @@ }, "in-line-alert-minimum-width": { "component": "in-line-alert", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "8007ebd8-fd67-4dc2-8444-9e6a50c88675" }, "tag-top-to-avatar-small": { "component": "tag", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "cf1239b1-495a-482c-8aeb-3b98c6b75583" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "a2c40238-1fda-4482-a419-b8092a385c9b" } @@ -1250,12 +1534,15 @@ }, "tag-top-to-avatar-medium": { "component": "tag", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "394343df-fb5d-44be-b6d1-9975ab8a4156" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "8dbabe33-52e7-4dc1-b2e3-81c1c62d98cb" } @@ -1263,12 +1550,15 @@ }, "tag-top-to-avatar-large": { "component": "tag", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "57de6911-6f5f-4a0d-9606-e7584a10d7f4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "9881ad7c-e9df-40b1-a368-4f8185042c3f" } @@ -1276,12 +1566,15 @@ }, "tag-top-to-cross-icon-small": { "component": "tag", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "c9e5e973-4942-414e-b128-5569f62453a2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "d93e04b9-1901-4ec4-947a-62c84205e61e" } @@ -1289,12 +1582,15 @@ }, "tag-top-to-cross-icon-medium": { "component": "tag", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "1bfd3452-93c8-424a-99e4-55e5ecbee90b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "ac7b17a2-99ef-45b3-ab3b-4d3eeaf99fb9" } @@ -1302,12 +1598,15 @@ }, "tag-top-to-cross-icon-large": { "component": "tag", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "e335436a-190c-4417-86f4-b7266c093377" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "af69e3d1-92b6-4e62-93f2-c1f1f10f0a63" } @@ -1315,22 +1614,27 @@ }, "popover-tip-width": { "component": "popover", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "c4bc3596-1fbc-4b08-85af-6bd8142e499a" }, "popover-tip-height": { "component": "popover", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "5960406b-973d-4e1f-9bb4-2c7a22422c5b" }, "popover-top-to-content-area": { "component": "popover", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "f97488e8-b1c1-442e-b98c-0ae6cff0b774" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "6165bae4-7148-4cb2-a1b4-38a25f2d8cde" } @@ -1338,17 +1642,21 @@ }, "menu-item-label-to-description": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "628cf42f-eb40-49b0-b110-3340421d4502" }, "menu-item-edge-to-content-not-selected-small": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "28px", "uuid": "033fb47f-30d8-4ff2-9825-a3318ca2118b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "de2ef572-54a2-46c2-ad1d-60468fbe6090" } @@ -1356,12 +1664,15 @@ }, "menu-item-edge-to-content-not-selected-medium": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "ac4c8abe-abca-4c6f-82e7-ed7fae0c761d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "42px", "uuid": "5faa4858-5590-40d4-bd12-b4c839908c4c" } @@ -1369,12 +1680,15 @@ }, "menu-item-edge-to-content-not-selected-large": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "38px", "uuid": "bc6a7e9d-b84c-4bf3-9a63-a08047deb41c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "47px", "uuid": "90385dcc-ea45-466f-ba4d-a1b13f6a079c" } @@ -1382,12 +1696,15 @@ }, "menu-item-edge-to-content-not-selected-extra-large": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "45px", "uuid": "2480bdaf-ac18-4f67-9a0b-f92200fb31d7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "54px", "uuid": "3385c12f-199b-4e9d-b2e2-ef6e2658d180" } @@ -1395,12 +1712,15 @@ }, "menu-item-top-to-disclosure-icon-small": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "8e4b2873-fb57-42d6-8b7b-91fd270c048e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "eb9cf950-cba2-4fb8-a115-8a4c0ddb00d0" } @@ -1408,12 +1728,15 @@ }, "menu-item-top-to-disclosure-icon-medium": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "0ed8f599-b4c1-4ac5-b2b0-60db06a98a88" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "e0468683-b2d2-4839-9ad8-46963d7402fc" } @@ -1421,12 +1744,15 @@ }, "menu-item-top-to-disclosure-icon-large": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "bceffb12-72a3-40eb-98a5-3d5fb4d3b627" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "bda3ee60-8f9a-41b2-a8a2-894aed3b3bed" } @@ -1434,12 +1760,15 @@ }, "menu-item-top-to-disclosure-icon-extra-large": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "63919dd9-0dfa-4e6f-ab89-8a24fc91061b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "77e97b70-ef7e-4228-8d91-0ff9d9d2b063" } @@ -1447,12 +1776,15 @@ }, "menu-item-top-to-selected-icon-small": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "fbe45d1b-f4b9-40d1-965f-38abe057dc69" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "943a0b43-6c91-40a3-a680-318a934bf6ef" } @@ -1460,12 +1792,15 @@ }, "menu-item-top-to-selected-icon-medium": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "8fb8ad12-9bb9-417f-8d0d-7323455cfb7a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "61e906e3-6daa-4841-b4f0-54939157a50b" } @@ -1473,12 +1808,15 @@ }, "menu-item-top-to-selected-icon-large": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "ccfed193-e366-4b13-806c-0cc18e2a87b4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "f84569c5-bb63-4eb1-8193-1130e88e7e5b" } @@ -1486,12 +1824,15 @@ }, "menu-item-top-to-selected-icon-extra-large": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "7be78bf9-a761-45a4-b764-b88e6209440b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "3ff6cb7a-20cb-4b25-a367-7e4497d0f237" } @@ -1499,10 +1840,12 @@ }, "menu-item-section-divider-height": { "component": "menu", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "dac5c077-b948-434b-91bd-0759c2414007" }, "slider-track-thickness": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b" }, @@ -1511,11 +1854,13 @@ "sets": { "desktop": { "value": "14px", - "uuid": "cf748652-099a-4022-ae68-0e5dcb8eff9b" + "uuid": "cf748652-099a-4022-ae68-0e5dcb8eff9b", + "deprecated": true }, "mobile": { "value": "18px", - "uuid": "19adc707-4fc6-40f0-a972-340d6c935908" + "uuid": "19adc707-4fc6-40f0-a972-340d6c935908", + "deprecated": true } } }, @@ -1524,11 +1869,13 @@ "sets": { "desktop": { "value": "16px", - "uuid": "dd3b649d-12f8-427b-95a6-a4964d92d3b0" + "uuid": "dd3b649d-12f8-427b-95a6-a4964d92d3b0", + "deprecated": true }, "mobile": { "value": "20px", - "uuid": "7306fc00-67fd-4ccd-aec3-7a14e092da5e" + "uuid": "7306fc00-67fd-4ccd-aec3-7a14e092da5e", + "deprecated": true } } }, @@ -1537,11 +1884,13 @@ "sets": { "desktop": { "value": "18px", - "uuid": "320abda8-9fe8-4f78-87d6-3f1be921e880" + "uuid": "320abda8-9fe8-4f78-87d6-3f1be921e880", + "deprecated": true }, "mobile": { "value": "22px", - "uuid": "0926d8f3-bdd6-4dde-89d0-6d5d7ab9f094" + "uuid": "0926d8f3-bdd6-4dde-89d0-6d5d7ab9f094", + "deprecated": true } } }, @@ -1550,22 +1899,27 @@ "sets": { "desktop": { "value": "20px", - "uuid": "fd74d5a5-b966-4d26-abca-58c7a21f8136" + "uuid": "fd74d5a5-b966-4d26-abca-58c7a21f8136", + "deprecated": true }, "mobile": { "value": "26px", - "uuid": "c5d47ebf-c83f-43c3-b2f2-f4d51c40960b" + "uuid": "c5d47ebf-c83f-43c3-b2f2-f4d51c40960b", + "deprecated": true } } }, "slider-handle-size-small": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "1384d419-bfad-44d7-847c-a0f2c195fb93" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "7feb3d57-59fb-4095-966e-e8ca0e91442f" } @@ -1573,12 +1927,15 @@ }, "slider-handle-size-medium": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "a8a02181-c797-461d-a666-a63f7535a096" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "278fc618-f6c1-4d30-bf85-075654079003" } @@ -1586,12 +1943,15 @@ }, "slider-handle-size-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "3df3c866-faf0-43db-8c18-f442e7f94822" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "2a3fb9b0-d701-4e86-8180-9d81f68e91d5" } @@ -1599,12 +1959,15 @@ }, "slider-handle-size-extra-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "10ccce0d-5a2c-414e-8055-0be76709c180" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "413dc697-1f14-47c8-a7f2-e52254513e6e" } @@ -1612,12 +1975,15 @@ }, "slider-handle-border-width-down-small": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "c9b7d8d9-c5ba-4d97-a03b-a214104ede23" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "683fb538-290c-423f-990b-d7134e485f51" } @@ -1625,12 +1991,15 @@ }, "slider-handle-border-width-down-medium": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "25959ff8-6c2f-4612-8d69-b95bfe485ce4" } @@ -1638,12 +2007,15 @@ }, "slider-handle-border-width-down-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "525e7d74-2bc0-48ac-85ca-b07335819a31" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "3bf8805b-b4f7-4d0d-af85-d227d6380539" } @@ -1651,12 +2023,15 @@ }, "slider-handle-border-width-down-extra-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "47d025e2-0b26-4ebc-9b46-3cd1e470b9bc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "feac9f02-b52a-4694-a5d4-4b1930ab4f07" } @@ -1664,6 +2039,7 @@ }, "slider-handle-gap": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42" }, @@ -1672,11 +2048,13 @@ "sets": { "desktop": { "value": "5px", - "uuid": "bf2e4550-f97e-4bd2-91e8-b0ddb5a8abe2" + "uuid": "bf2e4550-f97e-4bd2-91e8-b0ddb5a8abe2", + "deprecated": true }, "mobile": { "value": "6px", - "uuid": "3b96ab4f-6628-4ebd-aba8-2837fce04709" + "uuid": "3b96ab4f-6628-4ebd-aba8-2837fce04709", + "deprecated": true } } }, @@ -1685,11 +2063,13 @@ "sets": { "desktop": { "value": "8px", - "uuid": "238ebdc2-e51c-459d-8cc7-abfeafed6451" + "uuid": "238ebdc2-e51c-459d-8cc7-abfeafed6451", + "deprecated": true }, "mobile": { "value": "10px", - "uuid": "5030babb-0017-4784-84ad-d3aaacf6fa05" + "uuid": "5030babb-0017-4784-84ad-d3aaacf6fa05", + "deprecated": true } } }, @@ -1698,11 +2078,13 @@ "sets": { "desktop": { "value": "11px", - "uuid": "be9aed61-c7a1-4dce-80a7-07c9ecef1fd9" + "uuid": "be9aed61-c7a1-4dce-80a7-07c9ecef1fd9", + "deprecated": true }, "mobile": { "value": "14px", - "uuid": "3915ff73-11dd-4389-8d81-2f540ab060f4" + "uuid": "3915ff73-11dd-4389-8d81-2f540ab060f4", + "deprecated": true } } }, @@ -1711,22 +2093,27 @@ "sets": { "desktop": { "value": "14px", - "uuid": "155b6273-1661-4ef5-85c0-a1688ce1ee72" + "uuid": "155b6273-1661-4ef5-85c0-a1688ce1ee72", + "deprecated": true }, "mobile": { "value": "17px", - "uuid": "e04d9975-4a54-416b-b5fa-87f3ae930204" + "uuid": "e04d9975-4a54-416b-b5fa-87f3ae930204", + "deprecated": true } } }, "slider-control-to-field-label-small": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "cbf9c42b-c14e-440d-97ad-3c937c464446" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "d20768dd-dbf4-48a9-8cc8-3370fa6ef810" } @@ -1734,12 +2121,15 @@ }, "slider-control-to-field-label-medium": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "b257bf97-d632-4488-a954-57b16bcf18b9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "20a8d579-038e-4432-b271-8e44b83a9aa1" } @@ -1747,12 +2137,15 @@ }, "slider-control-to-field-label-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "a4be5828-2176-42e7-97de-1f80e7dc08bb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "f4fc7ec7-cc02-4ff4-bd9a-f05f9bd59c1d" } @@ -1760,12 +2153,15 @@ }, "slider-control-to-field-label-extra-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "309b149c-306a-49ee-b14c-a0eb4826e3b1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "9be47810-7a07-4885-a86d-647f5f36d7e5" } @@ -1773,17 +2169,21 @@ }, "picker-minimum-width-multiplier": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2", "uuid": "67b68a30-ae00-4da2-9730-99196a2eaf96" }, "picker-visual-to-disclosure-icon-small": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "4bcebd07-28a8-401d-9072-3b2ac22e8b63" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "269725c9-3462-4132-8487-95dd61814448" } @@ -1791,12 +2191,15 @@ }, "picker-visual-to-disclosure-icon-medium": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "f83b0313-ba78-4c98-be6e-702b58956589" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "c620ab2b-256d-409a-a80c-7d7c2295efc8" } @@ -1804,12 +2207,15 @@ }, "picker-visual-to-disclosure-icon-large": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "2f22005b-305b-4629-bc03-10d81e36ce78" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "47f5a27f-4039-4668-bb21-aafb9dcb82fb" } @@ -1817,12 +2223,15 @@ }, "picker-visual-to-disclosure-icon-extra-large": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "de09427a-eef3-4360-a912-0b0d5602d4a4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "0ac097c8-020e-4a7b-b692-59dfdf07e3f8" } @@ -1830,8 +2239,10 @@ }, "picker-border-width": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "spectrum": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{border-width-100}", "uuid": "69c28762-f456-4641-b6ce-7cb295e3a27d" } @@ -1846,22 +2257,27 @@ }, "picker-end-edge-to-disclosure-icon-quiet": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "03da68d8-cd87-4e29-9aaf-ab467594ec2b" }, "text-field-minimum-width-multiplier": { "component": "text-field", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1.5", "uuid": "875bbeaf-b4b7-41b9-8e6f-d6a57ec03049" }, "text-area-minimum-width": { "component": "text-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "112px", "uuid": "69694a85-5f31-43b4-8044-c0f08c83d618" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "140px", "uuid": "c89bcff3-23ce-405c-a776-3ece7a2ac342" } @@ -1869,12 +2285,15 @@ }, "text-area-minimum-height": { "component": "text-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "71bc5e67-900e-4e32-8109-a4c18da89348" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "70px", "uuid": "cb7270a7-8075-435c-81a5-469ef43860c0" } @@ -1882,22 +2301,27 @@ }, "combo-box-minimum-width-multiplier": { "component": "combo-box", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2.5", "uuid": "eabcc77a-f263-43ed-9944-9daa78a56b66" }, "combo-box-quiet-minimum-width-multiplier": { "component": "combo-box", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2", "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b" }, "combo-box-visual-to-field-button-small": { "component": "combo-box", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "4ccba158-da29-43a1-bbba-6531ecf98807" } @@ -1905,12 +2329,15 @@ }, "combo-box-visual-to-field-button-medium": { "component": "combo-box", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "fefb7088-21e0-4cdf-a8a4-af2a6dcc2a1a" } @@ -1918,12 +2345,15 @@ }, "combo-box-visual-to-field-button-large": { "component": "combo-box", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "1a529788-8b87-4eef-aa07-a4ffb955761c" } @@ -1931,12 +2361,15 @@ }, "combo-box-visual-to-field-button-extra-large": { "component": "combo-box", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "50ecd11d-6710-46e9-b1c6-923bb1d9f494" } @@ -1944,17 +2377,21 @@ }, "combo-box-visual-to-field-button-quiet": { "component": "combo-box", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406" }, "thumbnail-size-50": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "0578d5e5-9c2d-46f2-9268-85bdf566b3a5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "7f33676b-63dd-4d16-b7e1-36520ade716d" } @@ -1962,12 +2399,15 @@ }, "thumbnail-size-75": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "20706cc7-9d07-4938-8328-debd3ab8d822" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "852fc55b-beb7-428c-bc0c-452abc204de3" } @@ -1975,12 +2415,15 @@ }, "thumbnail-size-100": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "46dd2eca-598a-45e3-8c7d-c6cf17e148bf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "545604c8-484f-4697-907c-31e2b2cb46d0" } @@ -1988,12 +2431,15 @@ }, "thumbnail-size-200": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "ec457831-d272-4809-a84a-f1e9dcaec495" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "28px", "uuid": "0e548378-9633-49d2-90d8-b40e1ba7c98e" } @@ -2001,12 +2447,15 @@ }, "thumbnail-size-300": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "95c5905f-b209-4e84-881f-13ea85f12d87" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "8f4dd02c-d3eb-4654-aea4-b3921048cdbe" } @@ -2014,12 +2463,15 @@ }, "thumbnail-size-400": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "28px", "uuid": "7ee6d5ae-eb01-49e1-93ba-df3e7c25d876" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "b0351cf7-f0df-4044-ab26-5b6649ea2e1f" } @@ -2027,12 +2479,15 @@ }, "thumbnail-size-500": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "87234a25-8f6d-457c-9d3f-363930fec12c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "1798b58e-fce4-411d-ba8d-75006fa4f53e" } @@ -2040,12 +2495,15 @@ }, "thumbnail-size-600": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "d533a543-9622-4c43-92a6-82dd5eebcc64" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "46px", "uuid": "543dcd25-42cc-4198-b4ba-ba5524b08691" } @@ -2053,12 +2511,15 @@ }, "thumbnail-size-700": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "d6aaa2c4-d213-44de-9bae-742d26df8765" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "5eab16f9-5537-4a14-958d-d96200c5723f" } @@ -2066,12 +2527,15 @@ }, "thumbnail-size-800": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "44px", "uuid": "8cee2b4d-48c8-45aa-803b-5d1cd9027fcf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "55px", "uuid": "94ca9817-988a-4e4f-9163-954d29204049" } @@ -2079,12 +2543,15 @@ }, "thumbnail-size-900": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "5b9fb77d-8a2e-4e1c-ba86-475cd66b4202" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "62px", "uuid": "97f11dd2-0173-464c-9eef-c260c9e8cf22" } @@ -2092,12 +2559,15 @@ }, "thumbnail-size-1000": { "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "48959be8-02f9-45b9-8190-af60c93cbb6c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "70px", "uuid": "cfbf3ec4-f51d-4a50-b81c-765fff84ce14" } @@ -2105,22 +2575,27 @@ }, "alert-dialog-minimum-width": { "component": "alert-dialog", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "288px", "uuid": "7d066c2d-ea59-483d-b8a3-6a9b9e35eedd" }, "alert-dialog-maximum-width": { "component": "alert-dialog", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "480px", "uuid": "45258afa-543b-4fbc-a621-677d8081c2f1" }, "alert-dialog-title-size": { "component": "alert-dialog", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-s}", "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-xs}", "uuid": "3f362b57-09eb-4147-b366-5c1f04c9a29f" } @@ -2128,12 +2603,15 @@ }, "alert-dialog-description-size": { "component": "alert-dialog", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-s}", "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-xs}", "uuid": "43c5762a-d3a6-49db-9e5e-4a524604fecc" } @@ -2141,12 +2619,15 @@ }, "opacity-checkerboard-square-size": { "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "9ddf2e73-ad74-46d7-a79d-fe961b06dbbd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "879360e9-a7b0-47e0-bc4a-931a12877014" } @@ -2154,17 +2635,21 @@ }, "contextual-help-minimum-width": { "component": "contextual-help", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "268px", "uuid": "83be73fe-50bc-4be8-969c-0361a816225b" }, "contextual-help-title-size": { "component": "contextual-help", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-xs}", "uuid": "5358fd6c-d9a0-4caa-a85e-af82ed82efaf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-xxs}", "uuid": "e91709ce-79e3-4a81-88fa-e124960d4389" } @@ -2172,35 +2657,43 @@ }, "contextual-help-body-size": { "component": "contextual-help", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "value": "{heading-size-s}", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", "uuid": "e458fa68-ab9c-4441-a7d5-a02f42df1cae" }, "mobile": { - "value": "{heading-size-xs}", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-xs}", "uuid": "c180fa75-254e-4ee1-8b79-31a3d90254cc" } } }, "breadcrumbs-height": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-300}", "uuid": "2d39863c-6987-413c-90d8-07fcc506a0d4" }, "breadcrumbs-height-compact": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-200}", "uuid": "8393f599-37e8-484a-a1c6-0934ce15a507" }, "breadcrumbs-height-multiline": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "72px", "uuid": "237ff958-a86d-4632-aa7d-504a697509c3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "84px", "uuid": "5e7426da-1a1e-4d37-8c96-4fdac06bfad5" } @@ -2208,12 +2701,15 @@ }, "breadcrumbs-top-to-text": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "d084038e-bc31-43be-99ee-13cf727eaf9d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "c4e58bb6-dcd7-4b64-b881-5b918c346989" } @@ -2221,12 +2717,15 @@ }, "breadcrumbs-top-to-text-compact": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "b19547e2-bd8f-435d-b726-4f2ce6a83984" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "da5c0b1f-a8df-407c-888f-ac62d1fefa7c" } @@ -2234,12 +2733,15 @@ }, "breadcrumbs-top-to-text-multiline": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "138070fe-1f06-48b4-ac49-f8ff117c5f42" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "ea82fc23-82e7-4116-a8bb-186a253675ad" } @@ -2247,12 +2749,15 @@ }, "breadcrumbs-bottom-to-text": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "f0e6a20d-8c2d-4aa3-9060-b6ca66aa7943" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "971f1589-f80b-4c1e-8814-b5c286c5f561" } @@ -2260,12 +2765,15 @@ }, "breadcrumbs-bottom-to-text-compact": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "70a356be-c304-4bb4-a9df-97806931f089" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "d783bd6f-fc7a-4be4-b53a-b8be86018b7b" } @@ -2273,12 +2781,15 @@ }, "breadcrumbs-bottom-to-text-multiline": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "5a78f5a4-ceee-4854-96d4-b61d76cc522b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "a51a1142-e38e-4055-bd45-ad2bd0045880" } @@ -2286,12 +2797,15 @@ }, "breadcrumbs-start-edge-to-text": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "6d632147-5a1e-4a19-9fca-019b234d0455" } @@ -2299,17 +2813,21 @@ }, "breadcrumbs-end-edge-to-text": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "99ef1a0d-5fe1-4b62-9609-8929e7a3bf9c" }, "breadcrumbs-top-text-to-bottom-text": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "3a89734d-4fcc-43cf-9b77-b2f6d3732391" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "b93aad22-aff0-46d5-b54e-17891f02124a" } @@ -2317,12 +2835,15 @@ }, "breadcrumbs-top-to-separator-icon": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "15e56281-5fc1-4b59-b815-fc333231e364" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "25px", "uuid": "882046d8-7111-4020-bf31-b8eb9d9013e0" } @@ -2330,12 +2851,15 @@ }, "breadcrumbs-top-to-separator-icon-compact": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "a63e8df1-124f-4f3e-9e1b-ba422b8d8257" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "23px", "uuid": "f6c5b011-ec25-42ea-a708-d7dca1b5fb5a" } @@ -2343,12 +2867,15 @@ }, "breadcrumbs-top-to-separator-icon-multiline": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "6b310160-ab2e-40fd-9216-21ddcb36b575" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "eb3b2566-6fc1-4a2c-a8cf-e40af3d34715" } @@ -2356,12 +2883,15 @@ }, "breadcrumbs-separator-icon-to-bottom-text-multiline": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "56dd2fd0-c7a3-4f2c-bda9-8e6ba6d99e6c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "571239ce-690f-49ee-9e71-d14bbfe4b279" } @@ -2369,17 +2899,21 @@ }, "breadcrumbs-truncated-menu-to-separator-icon": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "1fe2a3df-3179-4c4a-8d1f-de41297b6d74" }, "breadcrumbs-top-to-truncated-menu": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "751734bd-1c58-4222-bbd8-8b2349f2fbd2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "793da276-18a6-46d0-a0e5-a1676c4df583" } @@ -2387,12 +2921,15 @@ }, "breadcrumbs-top-to-truncated-menu-compact": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "e0aba287-799f-4621-97cb-563352002a20" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "d5e92b0a-6d37-4b77-a5d0-6c4f1b9a722c" } @@ -2400,22 +2937,27 @@ }, "breadcrumbs-start-edge-to-truncated-menu": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "b1fba444-c281-4be4-bded-4852b551cfee" }, "breadcrumbs-truncated-menu-to-bottom-text": { "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "2285d870-68ec-469f-a034-2fdeb31e33f0" }, "avatar-size-50": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "60fd0b38-3bad-4a0f-8a69-d4cf79b635ff" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "6f6fae3d-eafd-41d7-a863-b2f0b57240ab" } @@ -2423,12 +2965,15 @@ }, "avatar-size-75": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "6aa2d529-0e10-4eaf-8786-f38e04e4d438" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "f23636e9-93e2-444d-a95b-1311a7e074f3" } @@ -2436,12 +2981,15 @@ }, "avatar-size-100": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "f3293ec2-befd-49e8-a280-b5a1827aa40c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "a2833b95-ba74-4caf-89e6-8294465d2780" } @@ -2449,12 +2997,15 @@ }, "avatar-size-200": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "a17f3911-00ad-4d52-a474-dc5d4e3341d1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "28px", "uuid": "7bfa97a1-39a8-4a30-af13-31ce1393098a" } @@ -2462,12 +3013,15 @@ }, "avatar-size-300": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "337f89c8-5b8a-4cd9-a32d-31f2d9804b2e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "b0bd14f7-9642-4e20-90c4-68f38a53e72c" } @@ -2475,12 +3029,15 @@ }, "avatar-size-400": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "28px", "uuid": "f7ee2f39-d2ea-44ce-a5e6-e9a2bb8af52e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "44237baf-1128-445d-8337-a943c6ac0019" } @@ -2488,12 +3045,15 @@ }, "avatar-size-500": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "9088ecf5-e278-48fe-a7cc-bdf77d15772f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "db33d97e-15e4-4248-a8cf-4b69d745a2e0" } @@ -2501,12 +3061,15 @@ }, "avatar-size-600": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "15634a63-05f3-4fb8-989a-cb3ad46b8946" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "46px", "uuid": "9ea7c014-2c8d-403f-ad7f-fa3c08a3a46d" } @@ -2514,12 +3077,15 @@ }, "avatar-size-700": { "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "92260f9e-ad2a-4e46-ad65-d83d99f7e7b7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "0bec4f0f-efb2-44f9-a131-28f8fe248c40" } @@ -2527,12 +3093,15 @@ }, "alert-banner-minimum-height": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "450405f8-4f08-4151-85dd-730b669a7ed0" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "6d313800-3020-45f8-969d-63e81057ff97" } @@ -2540,12 +3109,15 @@ }, "alert-banner-width": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "832px", "uuid": "713e9ae2-e226-45ab-bce9-869533253ee7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "680px", "uuid": "b02e6302-d443-4b94-bda9-f4cc90b3d4ca" } @@ -2560,12 +3132,15 @@ }, "alert-banner-top-to-workflow-icon": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "fbe047c4-0346-4b81-bdf6-6565cede7a28" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "402c755b-322c-4ea0-856c-ca209bdaa8ec" } @@ -2580,12 +3155,15 @@ }, "alert-banner-top-to-text": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "1d289972-d5ba-41e8-8935-e8c83afb15cf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "8db02117-b543-4b3e-b0ff-203e9a821708" } @@ -2600,12 +3178,15 @@ }, "alert-banner-bottom-to-text": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "e19fdd96-44a4-407b-b2b1-01001684fc84" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "5f2b2bc1-ebb0-46dd-a563-58df6307996d" } @@ -2613,12 +3194,15 @@ }, "rating-indicator-width": { "component": "rating", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "f0958cee-9688-43db-9542-1aef164f9dfe" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "dce9ff1e-06d1-49a5-817f-5319f4ab15e2" } @@ -2626,12 +3210,15 @@ }, "rating-indicator-to-icon": { "component": "rating", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "b132d948-bec9-4a29-b281-e77801ce5a7c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "8e13ea1d-8000-485e-8700-5522cc71b95c" } @@ -2639,12 +3226,15 @@ }, "color-area-width": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "192px", "uuid": "8fcf30ee-73e1-4f54-8975-5467dedade29" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "e5daae6b-7040-4e80-a251-db4c8c79e113" } @@ -2652,12 +3242,15 @@ }, "color-area-minimum-width": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "19ff1ba5-a351-4427-bf2e-4e212dde3d3c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "80px", "uuid": "126cd0b8-55cc-489c-9582-fddde76b431c" } @@ -2665,12 +3258,15 @@ }, "color-area-height": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "192px", "uuid": "993f90f6-22a6-49ec-a8e6-7a8b904d42a7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "552a014a-c590-48f8-98dc-26849b62c3ab" } @@ -2678,12 +3274,15 @@ }, "color-area-minimum-height": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "73c558f3-2a1c-4c1d-9b17-cfb49f510070" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "80px", "uuid": "9b84d54e-2b10-4502-b072-ded2a8bf9cb3" } @@ -2691,22 +3290,27 @@ }, "color-area-border-width": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{border-width-100}", "uuid": "78fff16d-d6fe-4a74-98bc-97c56e352250" }, "color-area-border-rounding": { "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{corner-radius-100}", "uuid": "ab656bf4-8814-42fa-9036-b1e67159e4e1" }, "color-wheel-width": { "component": "color-wheel", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "192px", "uuid": "d4cdb77e-54b8-4bcf-97b1-992287af2690" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "81d866f0-e2a6-4f27-bb22-6675cce4e937" } @@ -2714,12 +3318,15 @@ }, "color-wheel-minimum-width": { "component": "color-wheel", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "175px", "uuid": "647244c3-b071-45c1-94f7-3be32cfebabe" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "219px", "uuid": "6733cd28-a949-40f7-bd36-034af9c0261f" } @@ -2727,17 +3334,21 @@ }, "color-wheel-color-area-margin": { "component": "color-wheel", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "4b6bca16-ea29-4d6c-81cf-9005b9a3b5e5" }, "color-slider-length": { "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "192px", "uuid": "11442823-3e61-425a-a24b-a4a0747a06c4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "c42de1ce-088a-4918-a7dc-36507c8acedf" } @@ -2745,12 +3356,15 @@ }, "color-slider-minimum-length": { "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "80px", "uuid": "54aad7a1-df6a-414a-82b4-7976c912a8e5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "100px", "uuid": "120308f7-4220-420e-b836-20176a8184b7" } @@ -2758,37 +3372,45 @@ }, "color-slider-border-width": { "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "2b907cad-7534-411b-b3bf-ab89a3712ad8" }, "color-slider-border-rounding": { "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "991541a2-df44-4f32-90a5-de698adf5db3" }, "floating-action-button-drop-shadow-blur": { "component": "floating-action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "82e8cf04-7eda-4f36-8d2c-fda63241c3de" }, "floating-action-button-drop-shadow-y": { "component": "floating-action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "a4ddc1a6-1367-4153-bb7c-c217d16d10f4" }, "illustrated-message-maximum-width": { "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "380px", "uuid": "0e464925-5524-4fcc-a2f1-54ef42a2990a" }, "illustrated-message-title-size": { "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-m}", "uuid": "365ec548-431b-4e1e-9f9d-7b04d337f001" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-s}", "uuid": "cfca5a29-7073-4627-8a61-27d37552dc03" } @@ -2796,12 +3418,15 @@ }, "illustrated-message-cjk-title-size": { "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-cjk-size-m}", "uuid": "e77279df-bc62-441a-8a30-5faa41d0df10" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-cjk-size-s}", "uuid": "00c938e6-e62e-4bc3-8884-cf23b10e286c" } @@ -2809,12 +3434,15 @@ }, "illustrated-message-body-size": { "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-s}", "uuid": "4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-xs}", "uuid": "f3ba73a4-16ba-44a4-abf2-9893e8f02344" } @@ -2822,92 +3450,111 @@ }, "search-field-minimum-width-multiplier": { "component": "search-field", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "3", "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" }, "color-loupe-height": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "0f7e8b9e-99e5-4f5a-ae80-99f65f4c4e51" }, "color-loupe-width": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "889e2495-b882-4aa3-8a5b-1a71d44edde4" }, "color-loupe-bottom-to-color-handle": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "92beba60-f61d-426a-a864-203dca7244a0" }, "color-loupe-outer-border-width": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{border-width-200}", "uuid": "51cd5039-1319-451a-b13f-bb3a218238a5" }, "color-loupe-inner-border-width": { "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "b3900f89-0a7a-4c47-a6d9-ca8aa19b9bfb" }, "card-minimum-width": { "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "100px", "uuid": "55db9f3d-621d-4d23-b3d0-c0f2b0f3f9b0" }, "card-preview-minimum-height": { "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "130px", "uuid": "58eb5be8-644f-448e-99b9-94d1fbb93240" }, "card-selection-background-size": { "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "496fd060-70a9-48d0-948f-593b81847199" }, "drop-zone-width": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "428px", "uuid": "2097b13e-94b3-4a06-a0af-c7d8420d1273" }, "drop-zone-content-maximum-width": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-maximum-width}", "uuid": "b8d0db71-9a25-46fc-b77a-037fcf86be8e" }, "drop-zone-border-dash-length": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "a596af57-256f-4445-b91f-36e47bfb2d95" }, "drop-zone-border-dash-gap": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "47c15433-53d3-425b-8b87-ea234701f781" }, "drop-zone-title-size": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-title-size}", "uuid": "edc68bfe-7ad3-4a12-81fa-ded8fb6fc2e3" }, "drop-zone-cjk-title-size": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-cjk-title-size}", "uuid": "013387e8-8925-4bb4-a8ee-94420141fde9" }, "drop-zone-body-size": { "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-body-size}", "uuid": "bb3fee51-24cc-4643-9f22-fa1592ab2457" }, "coach-mark-width": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "296px", "uuid": "49d1e2be-3aa2-4515-ba54-7f6cf3ab007c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "216px", "uuid": "b3f14387-44fd-43d3-a152-c8e691ef87df" } @@ -2915,12 +3562,15 @@ }, "coach-mark-minimum-width": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "296px", "uuid": "9f413341-5ed5-4cd0-8348-1c7141dcab8d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "216px", "uuid": "9004d69e-5726-42f5-a4d0-de09db2de784" } @@ -2928,12 +3578,15 @@ }, "coach-mark-maximum-width": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "380px", "uuid": "07cdeb95-d368-4ed1-ba29-6b9ddeae1396" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "248px", "uuid": "7f8346b2-f8bf-441d-8412-2a2a28cf4b90" } @@ -2941,12 +3594,15 @@ }, "coach-mark-edge-to-content": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-400}", "uuid": "d5a3e2c7-f717-4436-91a3-3ab34aebd48e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-300}", "uuid": "11fb0ab2-d6a0-4da8-9c83-c1f6b918406a" } @@ -2954,12 +3610,15 @@ }, "coach-mark-pagination-text-to-bottom-edge": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "33px", "uuid": "d2ff2d4f-058e-412b-9e16-1725d6d29e25" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "cd48e6b7-a4d8-4a22-8d65-531d770a9898" } @@ -2967,12 +3626,15 @@ }, "coach-mark-media-height": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "222px", "uuid": "f6381a33-ac4e-4ff9-86a3-183c857772ad" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "162px", "uuid": "45b31e46-b878-40a2-a28a-91c480f45253" } @@ -2980,12 +3642,15 @@ }, "coach-mark-media-minimum-height": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "166px", "uuid": "e62c5a76-685c-4b48-98bb-746d6dd4b10e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "121px", "uuid": "53703e12-f837-4573-bd44-e4727ed2aeaa" } @@ -2993,12 +3658,15 @@ }, "coach-mark-title-size": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-xs}", "uuid": "331604db-3f28-472e-810d-9010ed2c8e33" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{heading-size-xxs}", "uuid": "cd4848b6-d560-475a-9d80-f7b5acebce10" } @@ -3006,12 +3674,15 @@ }, "coach-mark-body-size": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-s}", "uuid": "eba9f466-deda-48d5-a120-14419d5a670f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-xs}", "uuid": "a0abef77-dafe-4158-9faa-a4b4b2871e54" } @@ -3019,12 +3690,15 @@ }, "coach-mark-pagination-body-size": { "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-s}", "uuid": "df8bc8ae-b6fa-4414-93b7-c89d8097fe11" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{body-size-xs}", "uuid": "350d9235-ff9e-43d7-9298-56b36d58d6de" } @@ -3032,12 +3706,15 @@ }, "accordion-top-to-text-compact-small": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "d6cc404c-af92-43be-88e3-407fdcb6e068" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "0a5e5c70-d24e-48a2-9445-ccf87de892a9" } @@ -3045,12 +3722,15 @@ }, "accordion-top-to-text-regular-small": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "4f6e49d2-9ab8-4548-aae4-eed45a4003b9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "1aa82f7b-64d5-4a5c-921c-4b36d0c4bd2d" } @@ -3058,12 +3738,15 @@ }, "accordion-small-top-to-text-spacious": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "229fa20e-6d13-40b0-b19f-5cf6386f81ac" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "bef73b91-db4f-4532-9f4d-f5a81ead625d" } @@ -3071,12 +3754,15 @@ }, "accordion-top-to-text-compact-medium": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "484c9603-07f1-4ba6-b1bf-7cfaec5d1594" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "47070193-194e-4211-b767-61ef8aed8723" } @@ -3084,12 +3770,15 @@ }, "accordion-top-to-text-regular-medium": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "48db5aeb-6752-4267-89c7-48ed84692ec8" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "1dab0630-304c-4087-b21c-83cd0e40b1d4" } @@ -3097,12 +3786,15 @@ }, "accordion-top-to-text-spacious-medium": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "19c91104-bdf4-4969-8d92-c9cd47d39d13" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "63602a66-5f96-4e6a-8bf0-2ac03321a577" } @@ -3110,12 +3802,15 @@ }, "accordion-top-to-text-compact-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "a73cc1b0-e31d-4d42-bb89-2e283fe9c59b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "c09ca9bf-1b8b-4ff3-93b7-e9296472dc76" } @@ -3123,12 +3818,15 @@ }, "accordion-top-to-text-regular-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "2021d787-ddaa-470a-a25d-8a57f67b7359" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "96442c10-e84d-4b26-9b49-534597d3193e" } @@ -3136,12 +3834,15 @@ }, "accordion-top-to-text-spacious-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "8e042372-2504-46f2-8486-4d6174293ea2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "e90553f0-d71e-44c2-b70a-89110fab7c6a" } @@ -3149,12 +3850,15 @@ }, "accordion-top-to-text-compact-extra-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "6e08e002-56bf-421e-b9f8-9d37b1e80e6e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "5ebd5aab-49b3-49d1-be25-8aff15217eda" } @@ -3162,12 +3866,15 @@ }, "accordion-top-to-text-regular-extra-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "9289aae4-ddaa-4a43-8f00-973dea8350f2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "51f14c59-3071-45e7-b919-683c30589da9" } @@ -3175,12 +3882,15 @@ }, "accordion-top-to-text-spacious-extra-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "5d8877e0-076c-4c9f-b2e9-cdde6942ea61" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "bd300d17-3599-4382-8a7d-1b78700d49e9" } @@ -3188,12 +3898,15 @@ }, "accordion-bottom-to-text-compact-small": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "524cb169-a9c1-4d3c-864e-dba03df6eac9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "af95123b-2ab5-49bb-a070-1ca48b498f58" } @@ -3201,12 +3914,15 @@ }, "accordion-bottom-to-text-regular-small": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "d64620dc-dd4a-447a-8491-d9e144ec8828" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "be3de2dc-7c53-4d8c-91b1-6aed5ea0895e" } @@ -3214,12 +3930,15 @@ }, "accordion-bottom-to-text-spacious-small": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "bdc61836-fdcf-4ca0-a277-dd9cb314563a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "56a65744-b195-4faf-ab5c-69a8424593f9" } @@ -3227,12 +3946,15 @@ }, "accordion-bottom-to-text-compact-medium": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "c73f4637-7a33-4598-9498-8eb4a9e9e863" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "97b9278a-11d0-4470-99c3-e2d47ca5a714" } @@ -3240,12 +3962,15 @@ }, "accordion-bottom-to-text-regular-medium": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "2d6fa243-5f7e-41a8-840b-27a6432f54bc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "6a83235c-7d94-4cb7-9f6b-6dc82fcb2fb0" } @@ -3253,12 +3978,15 @@ }, "accordion-bottom-to-text-spacious-medium": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "8a3eadad-8b88-4885-b4ca-07360b45d3ba" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "05d8a39d-a0d5-496c-810a-f1244c31b169" } @@ -3266,12 +3994,15 @@ }, "accordion-bottom-to-text-compact-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "40f76138-1a69-45ed-8df5-db8bc9792383" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "b4f92e98-694f-46cc-91be-8e0e2d5a17a4" } @@ -3279,12 +4010,15 @@ }, "accordion-bottom-to-text-regular-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "f484838e-1f0c-4125-9298-beb4ddc0fd53" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "c449b115-2116-45bd-8d3d-03fb806dd460" } @@ -3292,12 +4026,15 @@ }, "accordion-bottom-to-text-spacious-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "96acbf76-082b-487c-8c47-f0fa173f54d2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "2a6fa386-4eba-44d5-b129-c832264fafd9" } @@ -3305,12 +4042,15 @@ }, "accordion-bottom-to-text-compact-extra-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "7a576841-a2a5-4443-9d31-03a12c7a2efd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "70e6d9e7-2a8e-4f0d-96d6-aac7cde829bd" } @@ -3318,12 +4058,15 @@ }, "accordion-bottom-to-text-regular-extra-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "8c199212-a745-414c-8f6b-22d2445ade3c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "ae5feb3e-bb5d-4187-b81f-3a42ebf47e78" } @@ -3331,12 +4074,15 @@ }, "accordion-bottom-to-text-spacious-extra-large": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "3ca8a65d-5561-4d8e-a4f2-0b653b42991b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "ba11dc6e-fbd8-46bc-94fd-b4d02f654d2d" } @@ -3344,12 +4090,15 @@ }, "accordion-minimum-width": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "200px", "uuid": "47ae1059-6b16-4823-866d-11be0c0e0e8a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "250px", "uuid": "ae8169fe-1672-4e95-87a5-344ec4d7f163" } @@ -3357,12 +4106,15 @@ }, "accordion-disclosure-indicator-to-text": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "27b481a4-0ea9-4e1c-a283-4a799d18d642" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "d560c5a0-1fa3-4d94-a4e6-87b71780083b" } @@ -3370,12 +4122,15 @@ }, "accordion-edge-to-disclosure-indicator": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "614e6448-c0a4-4ad1-b125-f362e3001a86" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "d64e930a-5e7a-4438-801e-25bfe479f73d" } @@ -3383,12 +4138,15 @@ }, "accordion-edge-to-text": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "a9641e89-2c2e-49c3-9662-f530ad23a688" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "186b2461-88fe-41ba-8b1a-dbdb8a731e2f" } @@ -3396,12 +4154,15 @@ }, "accordion-focus-indicator-gap": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "318c5cda-be1b-416b-b1b7-b962e5f45c0c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "f8e8ebaa-a4e5-4874-ae6d-c6b421b2d216" } @@ -3409,12 +4170,15 @@ }, "accordion-content-area-top-to-content": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "709082c2-71b9-423a-9c93-3b53a9e18da3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "9c651dee-7d77-414d-930b-7c6b78cfed1b" } @@ -3422,12 +4186,15 @@ }, "accordion-content-area-bottom-to-content": { "component": "accordion", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "87008eae-491c-4f7d-a13b-83eae517c92f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "48383ab9-1e66-47f9-988b-6f59b7349241" } @@ -3435,12 +4202,15 @@ }, "color-handle-size": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "7c7fd224-a9d5-4d97-b3de-fd9e4e076444" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "b81cc6a6-390f-43dc-a6c8-dd335c177da3" } @@ -3448,12 +4218,15 @@ }, "color-handle-size-key-focus": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "de9cc5ca-81cf-4bde-bd21-be2402e460c5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "feddbfb7-7f1a-4eee-9cbf-b393aafb7385" } @@ -3461,42 +4234,51 @@ }, "color-handle-border-width": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{border-width-200}", "uuid": "8ec9adae-0093-42f4-bd1b-6f3b2279996b" }, "color-handle-inner-border-width": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "945e0167-6893-49dd-ab21-886f93f70b92" }, "color-handle-outer-border-width": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "fbf27473-7c97-4d94-968d-c3e68e0cd242" }, "color-handle-drop-shadow-x": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0", "uuid": "49499527-3fdb-4a91-a832-0ae0631ba3bb" }, "color-handle-drop-shadow-y": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0", "uuid": "05b11927-d0cd-46a6-ae30-6f268f143d4e" }, "color-handle-drop-shadow-blur": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0", "uuid": "29e4a8c8-33ba-44b3-952d-26f3fd6ae4f0" }, "table-column-header-row-top-to-text-small": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "de67ada3-eeed-45a2-8d03-91a5b09156ec" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "fdc8b7ae-2356-4d49-ba54-0ea471be2986" } @@ -3504,12 +4286,15 @@ }, "table-column-header-row-top-to-text-medium": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "0ec68b5a-4251-4727-a689-b10722ce1a43" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "ff3c5329-ccec-4b94-b200-29a377b34380" } @@ -3517,12 +4302,15 @@ }, "table-column-header-row-top-to-text-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "40b7bc07-3252-492a-9ee1-37aceeca3674" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "a02666d8-4ae2-42d2-b48e-419d5070e7ca" } @@ -3530,12 +4318,15 @@ }, "table-column-header-row-top-to-text-extra-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "05d4bb65-357a-4561-ab33-ea6de390a304" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "265247a7-bbc3-42b8-910d-946e8d04aee2" } @@ -3543,12 +4334,15 @@ }, "table-column-header-row-bottom-to-text-small": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "9388deb6-6a77-49bc-aeb5-9084352c2574" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "9cf85eae-ec15-4bb0-ba48-00ec946306a5" } @@ -3556,12 +4350,15 @@ }, "table-column-header-row-bottom-to-text-medium": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "7357ba3f-c707-4475-b616-4752776c06d1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "631d14a5-1d2e-4e4a-90e8-146e8a397530" } @@ -3569,12 +4366,15 @@ }, "table-column-header-row-bottom-to-text-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "fc30c9a8-b098-4edf-b3f4-c666c019b3f4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "e465ee66-392f-469f-a46c-6c98df03b046" } @@ -3582,12 +4382,15 @@ }, "table-column-header-row-bottom-to-text-extra-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "0f76ceee-1d19-4c69-9393-09b02e1eede5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "c8bd103d-d952-4649-a7a0-09ae5242ea17" } @@ -3595,32 +4398,39 @@ }, "table-row-height-small-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-75}", "uuid": "a6dfc911-50fe-46dd-a7a3-cec3b115006a" }, "table-row-height-medium-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "b4b86a59-041d-451c-a0be-cc82e997a1d2" }, "table-row-height-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-200}", "uuid": "d576b4aa-e3df-4aa9-8260-fecfe6517bde" }, "table-row-height-extra-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-300}", "uuid": "dcc5dd06-bb3d-46d3-adf2-133e5be942b7" }, "table-row-height-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "fd53964b-cf4a-4cdf-b088-418364b1c518" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "cdbb999d-c2a9-4325-9689-bede2ad3559a" } @@ -3628,12 +4438,15 @@ }, "table-row-height-medium-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "1dc88a25-18bc-491a-ab02-2c1ec36f4c1e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "72e6564c-2acf-4f77-80d9-b21d2d55a580" } @@ -3641,12 +4454,15 @@ }, "table-row-height-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "3b22a4c7-525c-4482-9e58-19cbe46d318b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "60px", "uuid": "b92bc058-27ea-4e86-a1a2-e5dbae3c2ee8" } @@ -3654,12 +4470,15 @@ }, "table-row-height-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "face2717-9c2c-4e18-9632-4e4a595b1fc7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "70px", "uuid": "b7753c9a-8854-4927-89dd-80d47bff5fa5" } @@ -3667,12 +4486,15 @@ }, "table-row-height-small-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "cb6f8879-6d73-40ca-9ea4-7eb05b26385a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "ab252e1f-a13a-4630-a6ff-0cfa6e6f0c03" } @@ -3680,12 +4502,15 @@ }, "table-row-height-medium-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "697f4b63-14b9-4d58-9d16-b9dfd72ff391" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "60px", "uuid": "572d1c5f-62a1-4bfc-a3e0-520a999545fe" } @@ -3693,12 +4518,15 @@ }, "table-row-height-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "0cd072e1-1757-49b1-a985-09ab65feb672" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "70px", "uuid": "e377fd73-62ca-481c-93f6-c62eb35ca720" } @@ -3706,12 +4534,15 @@ }, "table-row-height-extra-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "1504ecc5-0bd8-4bf2-ad3c-e073c824cd1a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "80px", "uuid": "6efd745f-2a9a-4eea-a0a3-ebe0d3fbc149" } @@ -3719,52 +4550,63 @@ }, "table-row-top-to-text-small-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-text-75}", "uuid": "b7e7808a-16c6-481a-9257-9c1dc4e13b62" }, "table-row-top-to-text-medium-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-text-100}", "uuid": "02c5faff-dbb4-4633-ae57-413b3666dfca" }, "table-row-top-to-text-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-text-200}", "uuid": "14437ed2-c60b-40ba-91e6-bed5353fc544" }, "table-row-top-to-text-extra-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-text-300}", "uuid": "2e8eff8c-60fa-4e0f-ae40-7b9f9b3679d6" }, "table-row-bottom-to-text-small-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-bottom-to-text-75}", "uuid": "5eb79adf-f94c-4bf8-9ec9-279f49ce5331" }, "table-row-bottom-to-text-medium-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-bottom-to-text-100}", "uuid": "d9d8fee2-9e0f-4c2b-8059-f9badb3b6482" }, "table-row-bottom-to-text-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-bottom-to-text-200}", "uuid": "15e21448-3174-4565-aed7-ab84aa30d7ac" }, "table-row-bottom-to-text-extra-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-bottom-to-text-300}", "uuid": "effa3e3c-eb5b-4c0a-aca9-81331e6a08ac" }, "table-row-top-to-text-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "5e5a6837-34c9-4f01-8769-b66c3f602d1f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "98014297-14dc-4547-944a-8951c7f6f253" } @@ -3772,12 +4614,15 @@ }, "table-row-top-to-text-medium-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "8e1448f8-5806-4629-8131-4e8422b26870" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "7df1dc32-b96d-41e3-a372-9bcaec7c2ccb" } @@ -3785,12 +4630,15 @@ }, "table-row-top-to-text-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "2ed03fb3-fed4-41d4-8a14-f7446bb76486" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "0108018e-6146-45c9-b032-e3d44dfb8d84" } @@ -3798,12 +4646,15 @@ }, "table-row-top-to-text-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "03555438-78f5-429a-a0dd-c6777dc36372" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "c381a3c4-e0a3-4e86-b279-f51ee6e9e532" } @@ -3811,12 +4662,15 @@ }, "table-row-bottom-to-text-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "90ae4c5b-a49d-40ad-8dd8-b25720c13f79" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "d3147ee6-dc34-46e2-8379-02d9690ff80a" } @@ -3824,12 +4678,15 @@ }, "table-row-bottom-to-text-medium-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "c66ff3f2-3661-464c-b722-151f72d03f2a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "e80339a8-22c4-4b53-9a4a-a4456f6cab3f" } @@ -3837,12 +4694,15 @@ }, "table-row-bottom-to-text-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "775139b2-3fb4-4019-8a3e-2377211ed0ec" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "151bf172-2889-4c98-8f15-5b6cdcb30d4b" } @@ -3850,12 +4710,15 @@ }, "table-row-bottom-to-text-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "d13d2f2e-9425-403d-a95f-889d67f03425" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "c9ac99be-86c3-4f6c-a2a5-3487041bc95e" } @@ -3863,12 +4726,15 @@ }, "table-row-top-to-text-small-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "c0f9a500-3259-4888-ab43-c180c694a24e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "625733b1-78b3-4dd0-9636-71d59c14e013" } @@ -3876,12 +4742,15 @@ }, "table-row-top-to-text-medium-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "9893c4bf-aa89-4b46-987f-09432943734a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "cfa36bf7-cce0-4049-970a-8f11c6d60673" } @@ -3889,12 +4758,15 @@ }, "table-row-top-to-text-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "a3e22e10-1964-4d4a-8721-2eeddfed6f42" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "23px", "uuid": "769d6bbf-64ba-4c08-8a57-580838de1d48" } @@ -3902,12 +4774,15 @@ }, "table-row-top-to-text-extra-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "7824ab63-198c-4ee3-99d7-9b151898eb40" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "90c39289-3112-49a3-8e65-d112c97f7479" } @@ -3915,12 +4790,15 @@ }, "table-row-bottom-to-text-small-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "ad51f205-c2e7-4af5-9301-937594c61027" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "07dd5018-1999-4b95-9a59-fe1c2fcc380f" } @@ -3928,12 +4806,15 @@ }, "table-row-bottom-to-text-medium-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "2cedf119-a2f6-484a-8bdd-83652a8d6d79" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "8273e28d-20b4-4575-9449-9178af111e38" } @@ -3941,12 +4822,15 @@ }, "table-row-bottom-to-text-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "3adc8c4f-32ce-4cd1-8bb1-518b9b267ed2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "23px", "uuid": "4bc11bec-9c86-4a6c-85d1-382c71c1352d" } @@ -3954,12 +4838,15 @@ }, "table-row-bottom-to-text-extra-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "3271ab20-8a93-4b5b-a889-7a07d9f7e6ab" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "27px", "uuid": "06ada9fe-ceef-4fb4-88ee-37c2edee5418" } @@ -3967,12 +4854,15 @@ }, "table-edge-to-content": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "5e46672f-eab0-4ec3-bd14-68ffa4404ec1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "7912ab09-70e2-4e08-8aa5-f985e05a4ba7" } @@ -3980,17 +4870,21 @@ }, "table-border-divider-width": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "b6f2536c-deda-409f-8667-a5a99abdfa46" }, "table-checkbox-to-text": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "400553db-907c-43a5-8545-92ba212e12b8" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "cb7c89c0-9f31-43c4-8427-2e048f549ff7" } @@ -3998,12 +4892,15 @@ }, "table-header-row-checkbox-to-top-small": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "370e9149-aaf5-43cd-a783-90cfa8d37419" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "296d445c-243d-454c-9f5a-146c13d0cded" } @@ -4011,12 +4908,15 @@ }, "table-header-row-checkbox-to-top-medium": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "578765e6-b2ec-4bfe-ae28-f24cbee15898" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "2e168a2b-46aa-453f-9ca1-746485216c84" } @@ -4024,12 +4924,15 @@ }, "table-header-row-checkbox-to-top-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "5011ae3c-2e72-4891-926e-8de8847e0a47" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "f6648787-3cf1-4af8-aa4f-15669ea1626d" } @@ -4037,12 +4940,15 @@ }, "table-header-row-checkbox-to-top-extra-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "8adf3d5f-1024-4eb8-8515-f3b6fd7cc22c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "42a78148-e111-4124-a7a6-d9baa2ca963f" } @@ -4050,12 +4956,15 @@ }, "table-row-checkbox-to-top-small-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "f5c64a03-3750-4c92-afe2-43575bdb1df9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "2444d220-a3d0-4565-a762-02cbc52f828a" } @@ -4063,12 +4972,15 @@ }, "table-row-checkbox-to-top-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "4435c143-a75a-47c1-a629-3574b70247a3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "a63aa24e-c956-4af5-bf4f-4c5d44bd1e16" } @@ -4076,12 +4988,15 @@ }, "table-row-checkbox-to-top-small-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "4637c01d-66cd-451e-8950-9e72700c80d3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "6ccbecd6-a1c4-4fcf-beb5-2b124ac3e75b" } @@ -4089,12 +5004,15 @@ }, "table-row-checkbox-to-top-medium-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "0b12ff10-52e2-4084-9f1b-ee7bc0b50576" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "84f00d87-c0ea-42fd-8477-9fff028bf79c" } @@ -4102,12 +5020,15 @@ }, "table-row-checkbox-to-top-medium-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "2c8f9b97-f4df-48c2-ab1a-82373d335b83" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "36505a4f-01b6-4b83-adf1-592818eb2c0d" } @@ -4115,12 +5036,15 @@ }, "table-row-checkbox-to-top-medium-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "c8a04cab-bfad-4b82-94dc-6c2b4160c7cb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "23px", "uuid": "a57d2d1a-5e0c-4d4c-84eb-dd2339366aad" } @@ -4128,12 +5052,15 @@ }, "table-row-checkbox-to-top-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "40acc8c4-81b4-4566-a7ce-7c3d0d8ab5c5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "5fde3b28-c553-4124-be3b-212d1407780c" } @@ -4141,12 +5068,15 @@ }, "table-row-checkbox-to-top-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "559b9fc0-389e-4e2f-985c-8741f218850a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "2e16e4ef-fec6-41fb-9d96-bc6bb6c88f69" } @@ -4154,12 +5084,15 @@ }, "table-row-checkbox-to-top-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "d4b563c8-9234-4eed-a2a3-7e448a174286" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "27px", "uuid": "cfbd6cb5-c8d3-4908-a77a-7a15cda932fb" } @@ -4167,12 +5100,15 @@ }, "table-row-checkbox-to-top-extra-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "a1aa1c65-a1e8-40d6-805f-309d5e43d129" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "4069e932-339a-495d-bb36-c89f22af4f96" } @@ -4180,12 +5116,15 @@ }, "table-row-checkbox-to-top-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "9b775e1f-9348-431d-9ba8-bffb19bcbf85" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "2171aee7-d013-459e-a13f-33075090cbe3" } @@ -4193,12 +5132,15 @@ }, "table-row-checkbox-to-top-extra-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "23px", "uuid": "568ba981-51b5-4443-a427-0f857ff02572" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "31px", "uuid": "683be05e-f8d4-4910-8d07-20515f19fbbd" } @@ -4206,12 +5148,15 @@ }, "table-section-header-row-height-small": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "89bd3638-bbbb-432d-84eb-e217f9bb0cbf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "2cd8dc05-2f95-45b5-b8a4-0273baf3ba0e" } @@ -4219,12 +5164,15 @@ }, "table-section-header-row-height-medium": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "4c9e9bd8-9320-4648-bf2c-bb2db74a63fb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "07beb872-72a0-400e-b434-dd076c9be0a7" } @@ -4232,12 +5180,15 @@ }, "table-section-header-row-height-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "553f5ffd-a163-4b33-b96a-5acc08cfb820" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "cc41c4f1-bfc5-4aa5-87af-97f191cc7af3" } @@ -4245,12 +5196,15 @@ }, "table-section-header-row-height-extra-large": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "34b1c98f-7159-4ae0-b299-bf2fc53035c0" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "60px", "uuid": "06164331-9a76-4adf-b859-82074df19fbd" } @@ -4258,12 +5212,15 @@ }, "table-thumbnail-to-top-minimum-small-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "d9cc50d4-6661-4a03-b850-ed0933f2dabb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "72ebb8a4-9bfb-4ff0-ba3a-232c885931e7" } @@ -4271,12 +5228,15 @@ }, "table-thumbnail-to-top-minimum-medium-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "86a1c328-0845-47d8-a189-24a22c1ce053" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "b546eac7-00ad-4ea2-992d-0c4b8d087679" } @@ -4284,12 +5244,15 @@ }, "table-thumbnail-to-top-minimum-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "9b0e3ebe-59f6-4970-aa47-06b115f5efff" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "891cf7bc-419a-4b78-8c7e-03685fbf36a4" } @@ -4297,12 +5260,15 @@ }, "table-thumbnail-to-top-minimum-extra-large-compact": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "499530d7-7c3c-4bed-a4a1-d4edc2195afe" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "29ee801a-95bd-495c-9905-f2fd00ae0e19" } @@ -4310,12 +5276,15 @@ }, "table-thumbnail-to-top-minimum-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "db98283d-1f25-4323-9f3a-0555b9670ba6" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "e25b14a7-cb9e-406b-bab6-b27575f00a52" } @@ -4323,12 +5292,15 @@ }, "table-thumbnail-to-top-minimum-medium-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "12a6fd11-d3a5-4d72-9942-89d828d1d256" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "75af7a67-e0ae-4f41-9c70-09babbc587d1" } @@ -4336,12 +5308,15 @@ }, "table-thumbnail-to-top-minimum-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "de6e6ae5-eae6-4f7a-89be-176674176242" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "fc7efe7c-ef97-424f-89c2-2211daf44b4a" } @@ -4349,12 +5324,15 @@ }, "table-thumbnail-to-top-minimum-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "17c4c578-d3e1-44c0-bd21-ee4df5cb2027" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "b60c33b8-acc1-4af1-b30f-b467054ee417" } @@ -4362,12 +5340,15 @@ }, "table-thumbnail-to-top-minimum-small-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "9b464ca8-f246-482d-b240-e12e097aaf8b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "b6684bce-531d-420a-befc-b4ad884059fc" } @@ -4375,12 +5356,15 @@ }, "table-thumbnail-to-top-minimum-medium-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "1cd90c35-f688-4054-aec4-e1e3b200cfcf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "0cb1e46b-039b-46d2-a024-b72ddd82d0b4" } @@ -4388,12 +5372,15 @@ }, "table-thumbnail-to-top-minimum-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "f1cbc035-b4d0-4593-b563-a107ee2eebb0" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "e6689bf9-6ecc-4900-b8ad-85b103232e3e" } @@ -4401,12 +5388,15 @@ }, "table-thumbnail-to-top-minimum-extra-large-spacious": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "127b9225-cbab-42c1-8c86-4f425c7c8e27" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "28a5df8a-0fe4-4410-b804-9a6c26de4440" } @@ -4414,52 +5404,63 @@ }, "tab-item-height-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-200}", "uuid": "7b31cf38-5bac-4f79-a4f1-172a4ea66e10" }, "tab-item-height-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-300}", "uuid": "5d2288f4-f383-47fa-baca-0168cb46750a" }, "tab-item-height-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-400}", "uuid": "8abd0b0e-fd6d-4064-9d0e-1ab998fcb0ce" }, "tab-item-height-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-500}", "uuid": "42ed814c-5044-4c70-b82f-b49f8226241e" }, "tab-item-compact-height-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-75}", "uuid": "25f7d9a5-9464-4447-97d9-97839b371f96" }, "tab-item-compact-height-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "e8c7c826-548d-4037-b064-3cf699675d35" }, "tab-item-compact-height-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-200}", "uuid": "6d781a0e-e03d-4750-ae4f-67a29d731702" }, "tab-item-compact-height-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-300}", "uuid": "49130d66-edfb-48bd-8648-96c47f40a884" }, "tab-item-to-tab-item-horizontal-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "79695d07-21cb-4772-b3f7-b2eb56e7ad20" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "27px", "uuid": "8b5e1596-f13a-4786-b0c7-f01615423922" } @@ -4467,12 +5468,15 @@ }, "tab-item-to-tab-item-horizontal-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "31bea7d1-c8c2-4901-9f18-7a5c936d243f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "885a7cc3-8873-4cb7-99e7-b17f42fb48f1" } @@ -4480,12 +5484,15 @@ }, "tab-item-to-tab-item-horizontal-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "27px", "uuid": "1f9460a7-2ec0-4353-875c-ee5a6143d00b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "33px", "uuid": "71bdfd06-4672-464f-b787-9a62137b1763" } @@ -4493,12 +5500,15 @@ }, "tab-item-to-tab-item-horizontal-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "c92ec468-0fac-4e12-b1f8-f22d09cb6c1e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "482ed7f6-ba60-4110-85c8-daf5bf352406" } @@ -4506,12 +5516,15 @@ }, "tab-item-to-tab-item-vertical-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "da8211ee-8944-447f-a6df-6a16580e1893" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "d51a6c05-67d0-425f-becf-86e783ab3305" } @@ -4519,12 +5532,15 @@ }, "tab-item-to-tab-item-vertical-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "7cd196c1-18b1-4dae-abf7-7ef1b531e0af" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "6b6c960f-adcf-48b0-8310-ba12b47f4d9a" } @@ -4532,12 +5548,15 @@ }, "tab-item-to-tab-item-vertical-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "9846992c-e27b-4760-8808-7c44cca2cc65" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "c193b2ee-a584-41dc-9ef8-3aebb38fb832" } @@ -4545,12 +5564,15 @@ }, "tab-item-to-tab-item-vertical-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "d74ea722-c146-4ad2-ab20-41c332ae1190" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "ea902ec1-25d5-47c3-896a-a95d9ca5bd62" } @@ -4558,17 +5580,21 @@ }, "tab-item-start-to-edge-quiet": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "f869f703-a850-4c6c-b518-ec8a1b355046" }, "tab-item-start-to-edge-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "712e62ce-b869-4097-aee1-82e3b7505e14" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "8d413f56-6634-49c8-8d6a-53d0f57f1bbc" } @@ -4576,12 +5602,15 @@ }, "tab-item-start-to-edge-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "4d105a45-7403-47f2-ba50-419d822ff879" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "229477d5-e21a-4f4b-a24d-580f0c60eec5" } @@ -4589,12 +5618,15 @@ }, "tab-item-start-to-edge-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "c3f8f94b-d456-4aeb-8340-bd5643efe8fc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "2c85fa9a-e854-46f6-bc6b-547692d08290" } @@ -4602,12 +5634,15 @@ }, "tab-item-start-to-edge-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "a480fffb-0a23-4893-87ce-730eb925a7cc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "4e0b2015-06c8-41ab-9e2b-3a332a7625ff" } @@ -4615,12 +5650,15 @@ }, "tab-item-top-to-text-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "a9a6d785-f06d-4505-89ea-552d47ebe49d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "3e155b8c-6cea-4b59-817c-cf71a63e00c7" } @@ -4628,12 +5666,15 @@ }, "tab-item-bottom-to-text-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "2d0f71e2-66fc-4f28-bd4b-be41df0948ed" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "e0791360-b505-492b-bf71-dfa393abecfa" } @@ -4641,12 +5682,15 @@ }, "tab-item-top-to-text-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "e75e4e96-6d1b-4a86-9059-5c1f6f6ab269" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "a8c455e9-60e5-4838-bc9c-eaf7b39a4bf7" } @@ -4654,12 +5698,15 @@ }, "tab-item-bottom-to-text-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "f507e1bd-f08e-42b1-aee6-ea38f9f8a387" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "691db84a-5336-4e45-bf73-ee617057e718" } @@ -4667,12 +5714,15 @@ }, "tab-item-top-to-text-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "8b9275f5-3e63-459c-97fc-bc03691aa772" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "7e3db5ca-cd32-464b-9a23-9d03e83faa9c" } @@ -4680,12 +5730,15 @@ }, "tab-item-bottom-to-text-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "61dd06ac-501e-4725-9d54-cc7a3d9f6586" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "31d1b6b6-721f-4474-ba86-795367399e49" } @@ -4693,12 +5746,15 @@ }, "tab-item-top-to-text-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "f1b6b932-748d-4b26-9c03-2bd9d0a40ac6" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "25px", "uuid": "174cc6c8-9c0a-44c0-b6c7-ea6d337c819b" } @@ -4706,12 +5762,15 @@ }, "tab-item-bottom-to-text-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "5840c3b8-3488-417b-8b33-f3fc667ffd7a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "25px", "uuid": "c63380d4-cc26-4299-b227-af2faedfdc74" } @@ -4719,12 +5778,15 @@ }, "tab-item-top-to-text-compact-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "bbcf3eda-4add-4d0d-b5ae-c2e7078e85ed" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "d37488c4-d489-45bd-9086-8157c5204ae4" } @@ -4732,12 +5794,15 @@ }, "tab-item-bottom-to-text-compact-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "d87a2ee3-6f7c-4f5e-8191-d35624fc10f1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "f453e51e-3d58-430e-8f17-8b95718dbf34" } @@ -4745,12 +5810,15 @@ }, "tab-item-top-to-text-compact-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "2481e3a1-302b-46b8-98c2-e9461dd47d0c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "128757b0-d690-4886-95d5-e9df36182a0f" } @@ -4758,12 +5826,15 @@ }, "tab-item-bottom-to-text-compact-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "b44bbd5a-ef03-4e83-a9f5-88c896969d4d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "e69dee42-92da-4ca9-9eb8-97a7860adaba" } @@ -4771,12 +5842,15 @@ }, "tab-item-top-to-text-compact-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "93af7bac-830c-4460-abe2-0b2d8f786786" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "fd20b444-38ac-4438-a9ef-32474222e45f" } @@ -4784,12 +5858,15 @@ }, "tab-item-bottom-to-text-compact-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "8e701e0e-4d7c-4d38-ba6b-1fd2ef5978dc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "091144b7-c63b-4827-840d-741cec01432a" } @@ -4797,12 +5874,15 @@ }, "tab-item-top-to-text-compact-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "2bdd22cd-93fe-4cf4-a025-e690ecafb50b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "9694ebdc-cc88-4584-89f5-10a2c8de686f" } @@ -4810,12 +5890,15 @@ }, "tab-item-bottom-to-text-compact-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "7e3a0369-fcc2-45d7-87ab-9053588713ef" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "3641ac9c-5610-4996-a55d-c2a94b2ff9ea" } @@ -4823,12 +5906,15 @@ }, "tab-item-top-to-workflow-icon-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "7bd7427d-06a8-4194-a9f4-300fd1a4f547" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "923fd09d-8d08-4465-961f-63ac12014206" } @@ -4836,12 +5922,15 @@ }, "tab-item-top-to-workflow-icon-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "aec60dda-9e5a-40c8-8e45-5e1662eab6e3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "820baccf-af24-42a3-9729-99408bc9322f" } @@ -4849,12 +5938,15 @@ }, "tab-item-top-to-workflow-icon-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "65e1f735-5f46-4bb3-9c7b-d5f5abab91a1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "23px", "uuid": "4dd99579-949b-4bf9-b022-e8f0c95eae33" } @@ -4862,12 +5954,15 @@ }, "tab-item-top-to-workflow-icon-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "2c869793-c10b-40ef-9545-45a8a6b4cbb5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "5afa2636-7d4c-4d83-b9fc-3c5a52ee4646" } @@ -4875,12 +5970,15 @@ }, "tab-item-top-to-workflow-icon-compact-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "96c22cdc-aecb-4747-aea9-f140af5ee048" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "b79002d2-bcff-4e8d-a406-e512c7e7d0e3" } @@ -4888,12 +5986,15 @@ }, "tab-item-top-to-workflow-icon-compact-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "7788c25c-0ce2-4170-8c5f-2fb1d98d953a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "4fb0520b-8c74-4fb7-b279-a3586a06a57e" } @@ -4901,12 +6002,15 @@ }, "tab-item-top-to-workflow-icon-compact-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "fab951e5-1a78-4fb4-8c19-677f5f231189" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "fad964d8-0020-4583-97ab-7d6565d01bdc" } @@ -4914,12 +6018,15 @@ }, "tab-item-top-to-workflow-icon-compact-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "dd4769f3-5c7e-491f-9d01-c80af0b561fb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "f310e5d7-7435-41a0-b44d-ececff4844f2" } @@ -4927,12 +6034,15 @@ }, "tab-item-focus-indicator-gap-small": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "d23bdd67-d7d0-42df-9575-61502d3692ab" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "5fbc924e-e79e-46c6-8544-c92d7f33bc26" } @@ -4940,12 +6050,15 @@ }, "tab-item-focus-indicator-gap-medium": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "cbbaa048-129d-439f-8aae-59153e28216b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "09ee234f-a596-47ba-89df-ab9ebc07ded8" } @@ -4953,12 +6066,15 @@ }, "tab-item-focus-indicator-gap-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "6fd78b93-1356-4eb0-9f70-bed00c3eb2aa" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "6c4d8c39-9f75-4c75-94e2-274a69a8f556" } @@ -4966,12 +6082,15 @@ }, "tab-item-focus-indicator-gap-extra-large": { "component": "tabs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "1f12f9aa-19bd-4f77-93db-d737c0538677" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "6c0aad05-5224-4ade-913a-3dc5ebceeb62" } @@ -4979,12 +6098,15 @@ }, "side-navigation-width": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "192px", "uuid": "d087f995-da55-4c96-89c4-69a9a83e2f05" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "3bc5710f-5fd7-4cce-a3c2-f1e45deee2b2" } @@ -4992,12 +6114,15 @@ }, "side-navigation-minimum-width": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "160px", "uuid": "998bb752-7826-4437-ac18-14e08644e226" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "200px", "uuid": "ad835d79-64d9-4183-ace0-912c87fc2241" } @@ -5005,12 +6130,15 @@ }, "side-navigation-maximum-width": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "68210b40-f87e-4059-88c1-e66d1c8cbd38" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "300px", "uuid": "bcb163a0-0156-4e2e-abfe-b2ac0158f348" } @@ -5018,12 +6146,15 @@ }, "side-navigation-second-level-edge-to-text": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "2e5df819-ac9e-4b09-bdf6-8b1fe751c8fb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "e77cde34-8f77-4fd1-a1f7-aa6738130902" } @@ -5031,12 +6162,15 @@ }, "side-navigation-third-level-edge-to-text": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "adfe198d-a39b-47a1-bfa4-77dd0d139803" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "45px", "uuid": "06140452-b779-4527-ae3a-5f0623a6b97c" } @@ -5044,12 +6178,15 @@ }, "side-navigation-with-icon-second-level-edge-to-text": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "d254c910-2939-48ce-8547-08cfb346a0db" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "62px", "uuid": "7d4cd9bd-bfaf-4ad7-9c3b-19f7913f0825" } @@ -5057,12 +6194,15 @@ }, "side-navigation-with-icon-third-level-edge-to-text": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "62px", "uuid": "f1d90f18-e114-477f-88ca-548c5ddbc287" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "77px", "uuid": "f82ab001-808a-4528-bf4a-be27645a28fc" } @@ -5070,12 +6210,15 @@ }, "side-navigation-item-to-item": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "47e687e4-c458-4e0b-bd02-7698cc14983b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "be37c65c-88c5-48cd-9554-8240909db98d" } @@ -5083,25 +6226,31 @@ }, "side-navigation-item-to-header": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "value": "16px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", "uuid": "c5de72a2-931a-429d-ba85-5aaf2e30fbc4" }, "mobile": { - "value": "20px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", "uuid": "0f3821f1-6f0e-4325-bfa7-e572768fd468" } } }, "side-navigation-bottom-to-text": { "component": "side-navigation", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "8751d85d-a325-4e4e-a7b2-0a3ca94b6b6e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "e3f49e5e-f9ec-485c-846e-7a8fda08caea" } @@ -5109,12 +6258,15 @@ }, "tray-top-to-content-area": { "component": "tray", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "74787427-ea2f-4b94-99c0-88454e8be6cf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "794ad497-1725-4a03-a7c9-425eaee3178e" } @@ -5122,87 +6274,751 @@ }, "in-field-button-width-stacked-small": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "24125066-c8d1-4c4a-85b3-493d112d3ca0" }, "in-field-button-width-stacked-medium": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "28px", "uuid": "bb8c7ce0-1766-47f9-b30e-36b3b57dc2ea" }, "in-field-button-width-stacked-large": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "36px", "uuid": "4e103763-4310-4aff-980f-652ad023084f" }, "in-field-button-width-stacked-extra-large": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "44px", "uuid": "5f844b3f-e0d7-40f0-a754-a14bee6a0fb4" }, "in-field-button-fill-stacked-inner-border-rounding": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1" }, "in-field-button-edge-to-fill": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43" }, "in-field-button-stacked-inner-edge-to-fill": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "56b54ece-0ff3-4957-9c1c-9e7fb992653c" }, "in-field-button-edge-to-disclosure-icon-stacked-small": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "8b6a0ab1-4dba-4da2-9c67-3befca0f110e" }, "in-field-button-edge-to-disclosure-icon-stacked-medium": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "ccb60cfc-86fe-4959-b4a8-1a45835132c8" }, "in-field-button-edge-to-disclosure-icon-stacked-large": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "6a6e5478-b549-4a39-a7f5-5d3c417464ce" }, "in-field-button-edge-to-disclosure-icon-stacked-extra-large": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "d563157b-f0d7-407d-aaaf-ae1790c75503" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-small": { "component": "in-field-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "9890df35-2d45-4767-9cbe-ee745d09d990" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "a87d68bb-4249-43cd-947d-bd061baba0ef" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "acc9c48a-f461-48ff-9f69-0224c4feabc6" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "391e1e67-1677-4f60-a09a-3b49bacd01f5" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-small}", "uuid": "6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-medium}", "uuid": "3dd5babb-5026-4f28-89ae-bfe687673f31" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-large}", "uuid": "710ebe58-f0d8-4d6b-8974-0be1f2f48dc4" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large}", "uuid": "c47499c1-b89f-49a7-bbb5-17e83e4b306e" + }, + "arrow-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "b39b3ce3-6a48-4025-96ef-659b0c9ae9e8" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "6ff35aff-8a9f-466c-bdd3-dda460ccaee5" + } + } + }, + "arrow-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "c22e7427-617d-4f99-bee7-e3fffba07fc2" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "e9b3eb08-2004-4ad3-bb13-a00a6cb536aa" + } + } + }, + "arrow-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "645d5384-e3a8-4d97-acf6-7cbce00e6537" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "c7df43e2-7354-4f53-b453-dc9bf9060e64" + } + } + }, + "arrow-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "d0df9084-c6bf-42e5-b830-82906036e397" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "f6116604-efbe-4c6f-b047-29247d632174" + } + } + }, + "arrow-icon-size-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "4ced8527-31ad-4e48-9491-806ffc57442a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "35f055a9-8a33-42b2-a316-7e2ef0a4b99d" + } + } + }, + "arrow-icon-size-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "31f09728-964b-4598-99a0-d17bf7256e40" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "dcf16e1a-49ea-4888-85b7-012462a60f40" + } + } + }, + "arrow-icon-size-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "5ffece39-b8fc-4a40-a051-0d6c8e253f8f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "2f5f49e5-9aba-4ea0-a8d9-0f0e4c086b89" + } + } + }, + "asterisk-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "49ea57ee-7b12-4a8b-a9bb-a11cf2c9d72c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "bcba4d11-e15a-4ebc-a152-224ef228036a" + } + } + }, + "asterisk-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "d04b37cc-2c35-49af-9e92-9993264e405a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "f6f11ca3-b78b-4207-868f-f834c19e8d3d" + } + } + }, + "asterisk-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "49892fb4-a9df-4882-a656-7f9ffb9558bc" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "3f1b200b-d341-41e4-ae7b-c981ccb492f7" + } + } + }, + "asterisk-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "93506e7b-f388-4cf8-bd73-e7d96da935d5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "a1cdad1f-6537-4c35-a87b-45d8e161ee46" + } + } + }, + "checkmark-icon-size-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "6335cb3a-6ceb-40e7-b241-ff9b36f1277c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "ee52f114-1ab6-430b-bd54-62a82bf3600e" + } + } + }, + "checkmark-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "0545a68c-f273-4348-84cd-9cd365bdb474" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "99224b4e-751a-49ec-8db4-41c8cc4c7bf5" + } + } + }, + "checkmark-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "9227a279-09f4-457a-b5b3-894f0d6a00df" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "23247915-3cc0-4fdf-b21a-85b97019a219" + } + } + }, + "checkmark-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "342a360b-d58c-4d7a-9a9d-893600b90785" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "d4e3f5ff-91d6-499e-b79e-b1d85c0c597b" + } + } + }, + "checkmark-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "b5eff9b7-6987-47a1-a673-c47b7e806370" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "d9b251b2-aa8a-46dc-9a2a-0eb46afea241" + } + } + }, + "checkmark-icon-size-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "1a043355-03e6-4322-a462-7d628c23fd06" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "c044459e-12a3-4cdd-9f22-db1d14f34164" + } + } + }, + "checkmark-icon-size-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "0bf97a2b-5fe6-46ca-8175-8457e8e37d36" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "29f107aa-b8a8-4a09-bf55-9c903c1005ed" + } + } + }, + "checkmark-icon-size-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "4bacaeea-2d60-46d2-8c98-288b45a79aaf" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "b52f4e53-06c2-4746-8063-e2bd99361174" + } + } + }, + "chevron-icon-size-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "785a9152-a69b-4164-a8e2-cc201c1f8063" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "6d8ce7eb-a2a2-496c-9ce7-847f4da5fc0c" + } + } + }, + "chevron-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "43ef1792-b182-419d-966c-a8a2d77dbe03" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "74dbb8c0-2e65-413d-8b52-7215993b5696" + } + } + }, + "chevron-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "fdd4f0b4-3284-4734-b158-ecd5da36d586" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "c4d6bea8-61b0-45a4-81e0-1e5dd7429463" + } + } + }, + "chevron-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "2df0f6e0-5821-4f70-9aa9-1cc61f860b53" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "08bbd8dd-bb02-43b9-8e25-7709aee5ff52" + } + } + }, + "chevron-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "087dcfa2-5bfd-47a4-a67c-dca50e086e7a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "e6fdcac2-9916-45e2-a479-e87d17ece1f9" + } + } + }, + "chevron-icon-size-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "7fc3ab50-4856-442b-85f7-7f0e5ab3304a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "ee913eaa-bdaf-44c0-a139-17c5d94b1d4a" + } + } + }, + "chevron-icon-size-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "2891d3c7-1178-4901-9be9-75efada4a9e7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "95400787-7abb-4cad-830b-8a4042831860" + } + } + }, + "chevron-icon-size-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "c1de2d7d-ef83-4a3f-9407-2f512127244f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "350b77ab-6440-49c1-9b1c-a31c5c4f2f5f" + } + } + }, + "cross-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "8e597833-1025-4de4-b34a-2f34201487c3" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "622d259d-b52b-409a-bf58-04705d8423f9" + } + } + }, + "cross-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "c9fac273-0c5c-46cd-b774-ad566a540511" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "11f924ca-5542-4864-b153-77363a32d690" + } + } + }, + "cross-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "5b416331-7910-4d64-9b5f-43fd1832d3a6" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "11f65b04-c50d-45bb-86bd-34520aa7db61" + } + } + }, + "cross-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "f0a65c80-55e8-4ad3-b68c-8429c2fefcf5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "37867ac1-4101-4553-98e1-c8a94fdd2d66" + } + } + }, + "cross-icon-size-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "b7e0939f-45ef-4250-8138-2bee9dcb2be4" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "2fed48b7-dd3d-4c3c-9d5c-3046934f5cfd" + } + } + }, + "cross-icon-size-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "1228762d-8c89-4e04-a097-5001d805877d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "a865d5f8-4798-4721-ab76-3b51067d6439" + } + } + }, + "cross-icon-size-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "825c1a0a-e6a3-41dc-81bb-0fb9b74c0ca2" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "e12ac1ec-08f8-4d8b-8c4b-29b74cafe1a1" + } + } + }, + "dash-icon-size-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "59e5a3f7-c1d0-4b76-bb7e-2bcddddb83da" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "ea331ff6-aa92-4cb4-936a-554a2404152d" + } + } + }, + "dash-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "bfd0ad6e-6656-46d6-aa9f-0940b2c2902a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "1b6d0e50-3ba2-43c9-8b8c-c220364f4434" + } + } + }, + "dash-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "67464126-edf0-49db-a07c-8641d4a24cae" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "9dc14737-973d-4f6e-8336-2e119c1f1af7" + } + } + }, + "dash-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "220d2f95-067f-4169-bab7-1b4e202bd1a1" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "98ebf128-02f1-4d4b-a686-af8713a0f24b" + } + } + }, + "dash-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "84f3da59-4c41-4e4e-925c-5fda4222361d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "ad59353e-3ed1-4e76-af87-020cebfa2664" + } + } + }, + "dash-icon-size-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "17540c3a-2f85-4771-a4f8-834c70872abb" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "d2c45711-be18-4c85-8b23-f4d4f3d0b492" + } + } + }, + "dash-icon-size-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "08358bbf-3f8d-48fe-bb48-5dadead4170f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "8d2ad303-095d-4f0c-b0c5-c1ec75b96819" + } + } + }, + "dash-icon-size-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "34316272-7bcd-4b44-af20-07c0e1cb8690" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "2e81ce48-452d-401f-a44d-10ca427f031e" + } + } + }, + "side-navigation-header-to-item": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "423b5520-bb29-4179-9145-67305ca75b75" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "ad959938-ad69-4137-91e4-fcf2465b223a" + } + } } } diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 13f44d19..e49a5710 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1,1686 +1,2167 @@ { "corner-radius-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "cddbb2f6-b3a8-4416-90ed-0d7cd1bc7248" } } }, "corner-radius-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "e22537bb-a29f-47e5-be13-7e2775ee1103" } } }, "corner-radius-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "23f751eb-a076-487d-a5e1-1c0eb2937018" } } }, "drop-shadow-x": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "4e20cec6-96b6-4e9c-8b25-c819731b89ba" } } }, "drop-shadow-y": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "32950bbd-7292-452d-a445-4eb6de66c77d" } } }, "drop-shadow-blur": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "374f321e-8b0b-442b-9494-6a2ae9936c6b" } } }, "android-elevation": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2dp", "uuid": "f9456531-ab61-4c14-b7af-7016ce1c0d3e" }, "workflow-icon-size-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "1423caf1-75ca-4ca8-aa6a-22dcf3655b0e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "4c4cb541-7d42-4bb4-9c86-7197c4600896" } } }, "workflow-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "85cdef34-0682-45eb-ac06-98c76883cdf7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "b720c214-babe-426d-9629-9ec60d5e8622" } } }, "workflow-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "40abc60f-ab65-41ef-b724-a0f0bdd94d14" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "9e882a20-b8e1-4e9b-89f9-26f21db3cd78" } } }, "workflow-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "6392e605-932e-456d-be53-149b624a04e2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "9948e083-8c75-48f7-8e58-32c75ec76116" } } }, "workflow-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "25908278-79d3-47f4-9b53-adbdd1c13e2a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "28px", "uuid": "df0dc6c3-59fc-4ee0-87a9-c3d49a07cf9c" } } }, "spacing-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "1b06f6e2-d9be-4934-b3da-bed75986d104" }, "spacing-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "576a60a3-ca80-46c5-a066-ba7b6197decd" }, "spacing-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "507c0b4a-9dbc-4242-89fd-5efc4d1c35b9" }, "spacing-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "79fca32b-214b-4760-9d3a-28f4d1bdf86f" }, "spacing-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "ba632ede-84a7-4e56-91ef-8143b2499452" }, "spacing-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "ec565065-0820-460f-9a1b-b81911c48cb5" }, "spacing-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "490b4010-1561-4b12-8cbb-cdb4b650ba74" }, "spacing-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "b6d0b881-d25e-452c-9069-c18745d21f33" }, "spacing-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "26639049-ec07-430d-983f-4d036758564a" }, "spacing-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "eeb099cb-707f-4e5e-97b9-1fdba35b2314" }, "spacing-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "80px", "uuid": "d04e5d81-0b6e-48e7-9e47-744753dfcff3" }, "spacing-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "96px", "uuid": "9d688a67-5ff6-4b72-8398-964c0337dce1" }, "text-to-visual-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "ff1fadc2-9ec0-456f-a054-4512e51c85c8" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "8588bf80-96df-40fb-8b6f-61d06899f8dd" } } }, "text-to-visual-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "50763a0d-c6eb-47f0-8b56-4c86ee22a430" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "77dc4cd4-8e4e-4873-b6f3-d573eb7fc315" } } }, "text-to-visual-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "1d601d0a-d6d0-4711-9fb9-71898c2bcc9a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "09d55113-8d94-429f-b0c8-ffabe8ccba27" } } }, "text-to-visual-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "7ce11af3-b94b-4239-a310-f8d09635779a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "dc4ec555-72eb-4328-aba4-e8d594102f45" } } }, "text-to-visual-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "4366909e-3bfb-481c-abdc-4ae71f965bc3" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "205f0c77-6588-4cc7-927f-3ba767200bac" } } }, "text-to-control-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "aa27af6e-baef-4d7c-bf8c-f9a972e51713" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "45f94495-0f53-42b2-94f6-7a6d91eb2ca1" } } }, "text-to-control-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "24a438ce-be6a-477e-aa0e-a3e97e286904" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "b4ce04fa-bc03-44c9-afef-a38810ac9c65" } } }, "text-to-control-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "307fb510-8759-41ee-89d2-fcfe4d554b85" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "8991287c-763f-4a39-ad5b-7ccdbc39b3f6" } } }, "text-to-control-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "7cde8c74-2ac9-4468-a25e-06c1a6cd9cbe" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "53a33d46-8d81-4f13-8c79-c4d9257a5b68" } } }, "component-height-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "81ebf2b1-01fd-45a3-a099-72048e7d7991" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "fede8012-f00b-412b-8981-16f60a6133ab" } } }, "component-height-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "f70d4c16-f588-4fa9-9318-b7184a739193" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "5f363452-6317-4e7c-965a-291b3dfa8a8f" } } }, "component-height-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", "uuid": "3d7afc6a-f66b-4033-9ed4-e60cde661a18" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "5c31197d-0412-469d-a2dd-684efbd4b7e6" } } }, "component-height-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "8bf70f40-b282-4c5d-98f0-329245bdb6f9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", "uuid": "7c69efb5-bde7-4ee0-ad1e-2f20e85ebc24" } } }, "component-height-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", "uuid": "f4aaa7bb-e724-42ad-8ddf-934cc972995a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "60px", "uuid": "53c665a4-83ae-45f2-b90d-33ce52430b84" } } }, "component-height-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "e146c28f-3349-48fc-8281-6997ab9da222" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "70px", "uuid": "4fcbb85f-afbe-41bc-a979-dc09fb98946a" } } }, "component-height-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "64px", "uuid": "b5211351-b7df-430a-93bf-906ac66ebf2e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "80px", "uuid": "8135e75c-9536-4743-ab6d-05ed5adb0448" } } }, "focus-indicator-thickness": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "b6148878-b78d-4fe7-bf78-e01e7cb314c2" }, "focus-indicator-gap": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "693651ef-71c7-4096-91a5-1c84cb861021" }, "border-width-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "b5525080-28e7-4eb7-aee9-fb2c71a16f68" }, "border-width-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "cc8a43f4-0ba6-46e3-90af-653fbc59a328" }, "border-width-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "18b0ff0d-494c-4d33-acab-a62528c5ca66" }, "component-pill-edge-to-visual-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "3eaca9fb-25c0-4a1d-8c44-320cc0e0305b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "64343da6-f1a6-4615-b2b8-41f9509679e5" } } }, "component-pill-edge-to-visual-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "fff86b73-4e28-4453-9ba3-7c40998ace07" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "14624bfc-b08f-4637-991b-94a703a7b808" } } }, "component-pill-edge-to-visual-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "b9324a3c-557e-4832-8418-1d7783e7b9be" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "053363f2-5b8e-4365-8353-3cffac169608" } } }, "component-pill-edge-to-visual-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", "uuid": "4ccb4a02-6aa9-459a-a459-1d0ebbe2dc11" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "27px", "uuid": "7ae3b6ee-2f80-4596-9d4a-08a5bf9612a7" } } }, "component-pill-edge-to-visual-only-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "47f5ab02-22db-4d82-be1d-804669d7fbd4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "7332a4d3-3775-4247-a4c0-fb01f0604d63" } } }, "component-pill-edge-to-visual-only-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "dd9e6e28-a382-46a1-a6e0-f73c8cc0ed70" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "cf58ae75-8f3f-4b9e-809b-ee78abbb2f2f" } } }, "component-pill-edge-to-visual-only-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "64cdd254-d3fe-40e6-97a8-76dd8156afa8" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "989aee4c-5c90-454a-b68d-a7564669c2bd" } } }, "component-pill-edge-to-visual-only-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "9654369a-5bf8-4436-a331-aeac1fd25a70" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "cb4f356c-2dcd-4043-8f5c-3da904716b48" } } }, "component-pill-edge-to-text-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "5c80900c-ff68-4b78-86fa-571bbf1eb9aa" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "8a23edfc-b993-48bb-917f-377051e02dff" } } }, "component-pill-edge-to-text-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "3c96bdad-6e05-4a1b-930b-92d35adf5d9d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "10e326b3-bcce-47df-a1ab-0e3ab9964dd2" } } }, "component-pill-edge-to-text-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "4cca2097-286e-46d5-bc8e-273ea50354e7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "25px", "uuid": "c77f6b68-32b7-499c-81d9-50855cc68279" } } }, "component-pill-edge-to-text-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "29fa8da5-3f74-4141-bfb1-0f2847655345" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "dd7bc474-d5f1-46fe-8a6e-b1645c34c982" } } }, "component-edge-to-visual-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "a0b6c266-499d-4292-9be4-705ddd5e9fbc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "0b157417-e40f-481c-87e3-8563d55b3135" } } }, "component-edge-to-visual-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "8d128c7d-ab8e-4a4e-9243-a2e919cb6e6f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "acc3e1b9-532d-485e-84e4-06e744c744b3" } } }, "component-edge-to-visual-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "e220eb52-f821-4807-9ab7-b5f3905d769f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "e77f525e-5043-49c1-a663-9f6c30067043" } } }, "component-edge-to-visual-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "e0673a9f-7993-490c-b2db-e8e836837e83" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "85f7f49a-7b87-4e2f-b44e-70e3ccde6291" } } }, "component-edge-to-visual-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "a0ce87ca-29e0-40e3-b7dc-c53678effd9b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "4973c83c-792d-4bc1-9e3d-d047993292ba" } } }, "component-edge-to-visual-only-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "9c536051-7794-4282-bf07-c920cda83cbe" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "fd1c11a6-53d5-4253-a7d7-c4131c4b1a5e" } } }, "component-edge-to-visual-only-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "c38259e9-87f4-4e7d-a041-692ca676a638" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "5c4f1f7a-2218-4d03-ac83-9750c2c9336b" } } }, "component-edge-to-visual-only-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "8fec6012-7cba-4ac5-94d7-14f39fce7612" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "93e42bfc-c2f0-40cd-a561-9045c68cb5d1" } } }, "component-edge-to-visual-only-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "0bf1ad10-235a-4c81-aba7-5bf55acc877d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "9dffd6f3-6230-425e-9208-296cf4d5c185" } } }, "component-edge-to-visual-only-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "815523cd-8c01-4125-bb22-3a548f1cc702" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "090b3da5-0aa3-4bf8-b3bd-dd8dabb40721" } } }, "component-edge-to-text-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "b8af0ff9-1e4b-4298-907d-3ffcde88ba03" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "d660beeb-278b-4157-b6fc-852c680ecae7" } } }, "component-edge-to-text-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "40778817-6e47-4b58-a495-c4f34cee78df" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "942f0f34-611a-4318-9b0e-3632e7f520b3" } } }, "component-edge-to-text-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "0c0d6d38-6734-4312-9be5-dd48dd571841" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "0b3ecfcf-8fb9-4faf-ab7f-ff4baf733df5" } } }, "component-edge-to-text-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "44a668d6-e013-4138-a262-383994b0637f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "c567f435-928c-4bf8-b9c0-ac2f22d58348" } } }, "component-edge-to-text-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "11088de1-8e3b-4021-968d-a8c59c7b00bd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "616de468-71fc-4315-87ea-47cdc508a599" } } }, "component-top-to-workflow-icon-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "0fafc819-d65b-4952-849a-b3c426e9a4a9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "24853983-c1b0-422d-84b6-05b9313066ed" } } }, "component-top-to-workflow-icon-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "2bc8b2ca-9792-4034-a604-43ce28ce8ede" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "9d1b0ef4-5433-43fe-aa33-0274ff29f6f3" } } }, "component-top-to-workflow-icon-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "c3a280b0-bc84-4a7c-8048-c689f8deef86" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "a3d3f9e9-a784-445a-a052-22f84b832512" } } }, "component-top-to-workflow-icon-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "ef82b92a-2cbd-4b70-920c-4b999b018e07" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "259c0cf5-d321-4a6b-a3ae-b8c58fc1c9d6" } } }, "component-top-to-workflow-icon-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "72d6ae5c-e133-4e7f-bc96-3e4c28d586fd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "bac14298-68f0-4fb6-a152-c95ab19fd27f" } } }, "component-top-to-text-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "c71c0953-d9da-4e22-93a1-6982c7665ed6" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "cb2a6539-4cee-420c-aeef-dbdd3220039d" } } }, "component-top-to-text-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "477d659b-6489-4e90-84db-75a93174559a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "54a0e5cf-3e4a-454b-9dba-a6a2c277fa5e" } } }, "component-top-to-text-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "15bf492b-3a65-4577-8a3b-df09026b96a7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "bed358a2-0559-4501-a147-b375887f25af" } } }, "component-top-to-text-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "c7914376-3769-4172-8467-fb811b3c155f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "621c9cf1-02e2-478b-9f47-0804f0183531" } } }, "component-top-to-text-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "9bf3970e-eb76-4be5-82c4-0df2538df753" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "e0ae8c97-73ee-4b09-839f-5ebfb6eb0d7a" } } }, "component-bottom-to-text-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "ee165c7d-3e9a-4a8d-a71f-3083fd7fdc4b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "80f01183-a152-4c55-ac11-24edae62df64" } } }, "component-bottom-to-text-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "923c46e1-b6f7-4d8a-844d-b4c0661b5e60" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "0f1a6c63-bc4f-444c-9a18-67b6c35464b1" } } }, "component-bottom-to-text-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "24def269-4582-46f6-a00c-8b5a28410917" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "c8590269-dcaa-44f6-9c2d-d33274c3fe5e" } } }, "component-bottom-to-text-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "ae65b844-9758-4708-8781-2c8df35af1e9" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "a39cef5c-631c-4942-b5d2-9121e05d47f8" } } }, "component-bottom-to-text-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "4459554a-d872-4a6a-a620-4a1937605d29" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "a6aac364-d617-4e21-a1db-5523daaa3c6c" } } }, "component-to-menu-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "4db24ebf-e169-4220-b895-787fe09f8658" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "cc2c2606-500a-45e2-b460-2b498dcddb26" } } }, "component-to-menu-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "0190ca9d-9f28-45b2-9dc7-c715089faebb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "e8602fbe-1bf9-4aec-9cb0-5b4e994558c9" } } }, "component-to-menu-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "d03d1199-f49d-4e57-8434-b94efe5da440" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "b33acdfa-525e-45c6-ab2b-c959760c4024" } } }, "component-to-menu-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "31f44472-9681-469c-8ba2-9efc27eb981d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "9fa90167-54ec-4343-a14c-4cd18963dcc5" } } }, "field-edge-to-text-quiet": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "3f7cee20-c187-4066-be4b-f5a1335736f5" }, "field-edge-to-visual-quiet": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "89f16f89-fd7d-41d7-8e5c-464007fd0277" }, "field-edge-to-border-quiet": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "7fb81dcf-3329-4353-917d-75de8f43c05d" }, "field-edge-to-alert-icon-quiet": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "7858fdf3-e35f-4bc5-997a-0d480ec1cb32" }, "field-edge-to-validation-icon-quiet": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "151915e5-f946-474f-9595-18d8a159a6ff" }, "field-edge-to-disclosure-icon-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "7b68e88f-8ddd-496e-9fae-7fbe44317965" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "87d3f491-f45f-4bee-9dbd-00086cca5858" } } }, "field-edge-to-disclosure-icon-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "71b53c8b-fbbb-4f84-847a-45db5ad8006f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "26d578cb-9228-4643-b042-8b00ba4d9b61" } } }, "field-edge-to-disclosure-icon-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "77792f9d-b462-48e6-a4de-abf804bed3cd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "fcc139c1-08ed-4641-932d-5050237abfaa" } } }, "field-edge-to-disclosure-icon-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "e84ef1dc-392b-4ab9-a13b-76364484a28d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "0d3045e2-a493-406a-a247-8d20f35db2d9" } } }, "field-end-edge-to-disclosure-icon-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "b79e5061-87c4-495c-ab01-90dcc5ae14ab" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "927e7b5a-57b4-4d47-9ad8-e287199e68a3" } } }, "field-end-edge-to-disclosure-icon-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "9fa71233-f98e-4d48-b2af-29552a62a479" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "7b3ab0f8-8bde-461f-b658-6848d64de0e3" } } }, "field-end-edge-to-disclosure-icon-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "622a39c4-4ed1-4637-8e8d-e8e6a72099b2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "417eb2ee-3fe9-47fc-a122-d466eb4e7b26" } } }, "field-end-edge-to-disclosure-icon-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "43ec5915-b039-4210-9bc0-ce547f90ce32" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "7c2b5cc0-01c0-4e5f-a157-1d2432f8bbc1" } } }, "field-top-to-disclosure-icon-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "c5778e77-0ff1-431a-a72e-37f3066d3257" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "2f62718d-3df8-498b-9520-baf8be65f3bd" } } }, "field-top-to-disclosure-icon-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "62c3618c-f28f-4b56-9227-a061dc54d19d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "1357cf8e-6e41-4d3c-be39-9aa87d010b78" } } }, "field-top-to-disclosure-icon-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "bdf0fc6a-404c-492c-86bb-5d2ba06714e6" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "2af47c9c-dba6-4340-b5fc-af00dcbaa05c" } } }, "field-top-to-disclosure-icon-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "d5db6c17-700e-4782-9c29-001269b50200" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "631146ab-f3f2-4ea0-aac1-2bea622d0c85" } } }, "field-top-to-alert-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "f265e6d5-8bbd-464e-b6c7-637224756e95" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "580b677d-5d7e-4306-87ee-640a4613254b" } } }, "field-top-to-alert-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "adac6224-8e2f-4cdb-8684-9365164a1499" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "1def1d88-0098-4e00-987f-17a8656047da" } } }, "field-top-to-alert-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "7e21ccc7-ba55-4e0f-b5a5-1bd95406546f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "6247903e-2c00-4242-b2d5-da2864b6aa87" } } }, "field-top-to-alert-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "78286e58-d73a-42a8-a13c-a910d7fbb82d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "246058b4-e152-4673-91ab-34384fceb798" } } }, "field-top-to-validation-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "2aad124e-19f5-404c-921e-e2060bc48f07" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "1a5b6e87-12a8-4fda-a8f7-2928b0b68a46" } } }, "field-top-to-validation-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "2cdb6de8-d494-467d-bf9d-7fa96829bf82" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "7bb6c4c7-4157-4da9-bf06-1d2527022d6a" } } }, "field-top-to-validation-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "97435915-44ba-4ace-993f-a0fac52e41f2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "f4f9d889-130a-4e71-9a9c-1ee82c2a4a4b" } } }, "field-top-to-validation-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "aa10c6ff-8cf6-4e68-8181-ca5e64f5c26f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "a6da1cb9-6085-4c58-b3dc-3b1377f64fa4" } } }, "field-top-to-progress-circle-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "9aac1df2-1693-43f1-ae43-b23c21a42f71" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "5da7e575-d0c3-44e7-bbfa-6fa58972343b" } } }, "field-top-to-progress-circle-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "7a3120a8-3c98-4227-afb4-5d6a8aa78e14" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "7b4b7283-1223-4d2e-9f24-5ed6dada4711" } } }, "field-top-to-progress-circle-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "24784275-a117-4767-98ee-5d8a08c89296" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "7a17cc60-fa76-4234-a99e-c4f711e63f5f" } } }, "field-top-to-progress-circle-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "efcd740a-033e-493a-a902-e2f657897bd4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "263428f7-3b5a-449a-87d1-874cebf50fa8" } } }, "field-edge-to-alert-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "20658099-94df-4c6c-a2f2-558c92174121" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "68c4dc34-49cb-4174-bd06-5f5dfbd0b64e" } } }, "field-edge-to-alert-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "dd684a30-2e49-4096-8b1c-40fbd6c8cac2" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "b98d3a2d-94fb-4491-9650-1c9a62365a19" } } }, "field-edge-to-alert-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "e0b53a9a-e95a-45b8-b9b2-a16b70096c05" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "a7c0e1fc-bc57-450e-bdc2-1c2cf2823d98" } } }, "field-edge-to-alert-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "7ea18d45-d6e1-4ef0-859d-4d39a3e0527a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "2a77de7a-20cb-40a2-b3a9-252fcaa7a7d2" } } }, "field-edge-to-validation-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "9ab112d7-af82-4b28-9bc2-a1216af87aea" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "a1c55785-3ae3-4c23-81e2-f088e76e4e04" } } }, "field-edge-to-validation-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "a93c8845-c89b-4e8d-b06e-c34e7c7b0e99" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "c51f02a2-35d4-460f-9f14-a97d9e8e6616" } } }, "field-edge-to-validation-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "faf7879f-d9c1-4bf1-8af7-95f48240bcf0" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "9525d928-4cdb-4cf5-8616-2024ed6fb7c0" } } }, "field-edge-to-validation-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "9379019f-5498-45d1-8590-deb8a234a3d4" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "539800f6-7bbc-4b67-8b61-99d1ee2f69a4" } } }, "field-text-to-alert-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "2d900e70-913e-4d45-9ef4-2ef8d80798fc" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "01ad9b7d-926e-4db4-a86a-a804fdfc7d68" } } }, "field-text-to-alert-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "cce2dfd4-b10f-4386-8f16-2bc2d47e49f5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "03d088d2-4ec9-45bc-896d-8423bf72317e" } } }, "field-text-to-alert-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "0f40702e-876a-4fb4-aeb7-ea56c26c081b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "73025a05-6203-460b-830b-458f8109abce" } } }, "field-text-to-alert-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "248144ce-6640-40ce-96a3-162c406c7edf" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "ec794a47-71af-42ea-87f2-048fab8dbf9d" } } }, "field-text-to-validation-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "574ddef0-b45b-49a1-b057-fb2eacfbd36f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "c2181581-6aa1-4e1f-80bc-1ca2e85ea01b" } } }, "field-text-to-validation-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "da53a8e5-95c3-48dd-a9c0-5ed2de25240d" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "87e221ab-fb8c-4d59-9d4b-9815a672cc23" } } }, "field-text-to-validation-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "f9729ef3-9807-4401-80dd-b1c209c00065" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", "uuid": "b28a0156-4930-484c-a518-ee00e0292db5" } } }, "field-text-to-validation-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "8a573d4a-0543-4e77-8f54-5ad1706d87e7" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "8926578a-c326-4a75-aafb-d90112aaedb5" } } }, "field-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "192px", "uuid": "096ddcb7-5afd-416f-9a11-4275556c4b52" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "240px", "uuid": "08c2390a-353b-4e6b-b025-dbaeaa5fdff2" } } }, "character-count-to-field-quiet-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", "uuid": "f2f62625-dfd4-46b0-9113-033820745569" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", "uuid": "819cdbf4-9e26-4fdf-895d-8f60c06efa2a" } } }, "character-count-to-field-quiet-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", "uuid": "2ebe9ae0-3b74-47dc-af79-e1dd5f93b9bd" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", "uuid": "1cecea81-8c7f-4658-b3a2-0e1282f7eac9" } } }, "character-count-to-field-quiet-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", "uuid": "3f385135-015a-44dd-bde3-60389b14c2ff" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", "uuid": "cef58f98-9fb0-4fbb-b6aa-dc5786d7658a" } } }, "character-count-to-field-quiet-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", "uuid": "8b5b5dce-a9c4-4c03-a194-8a5bc716b18a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-5px", "uuid": "2cfe025b-8bf8-47a3-8ff1-733cf62dd182" } } }, "side-label-character-count-to-field": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "146add82-4f20-46c3-bacf-4d24d60d0e10" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "ec387876-31d5-42a5-99aa-02c5d35e6223" } } }, "side-label-character-count-top-margin-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "a86ae363-b6b4-4da0-9630-97336922b3a1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "9196a2ad-67cd-44d8-b4c6-bca25e37eb4a" } } }, "side-label-character-count-top-margin-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "4d93210f-f01a-4d1c-8c10-2cb4b9d14626" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "a2b20c88-d28c-4261-8160-62630c5e0da8" } } }, "side-label-character-count-top-margin-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "e2d9e241-469a-4b03-bd6a-a105a8ed5e00" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "ca10a5d6-a8b2-414d-978a-14481e2a21cb" } } }, "side-label-character-count-top-margin-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "9b1f15bf-ea4f-4f82-8c4f-3770b7f47353" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "c2c4ddf3-f273-4e23-9be0-e1227e9999a8" } } }, "disclosure-indicator-top-to-disclosure-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "e8e0164f-2588-4c8e-9b85-543ce5a8fadb" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "d7c1f2a1-b679-42ae-8512-27883d9789f9" } } }, "disclosure-indicator-top-to-disclosure-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "1e644622-9b4a-4cce-9cf7-2474d58f4956" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "13px", "uuid": "049e0fe7-03d4-4d9b-bdcd-9c8a06852010" } } }, "disclosure-indicator-top-to-disclosure-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "ae9bbf8d-a896-4667-9034-2fd2dfeb1981" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "24dd2c12-17f0-4d38-9af3-a3b112c40c74" } } }, "disclosure-indicator-top-to-disclosure-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "ba7492f3-1a19-4d75-98cc-34a0d46ea802" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "9c38e8f6-cca7-4f7f-a7c3-9d4ee7af24b8" } } }, "text-underline-thickness": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "13f36ce1-84bb-41db-bec8-6d6e8f5c6ed3" }, "text-underline-gap": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "d9d51235-f3fe-4e2a-bdca-b6a104d9a9e5" }, "navigational-indicator-top-to-back-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "value": "7px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", "uuid": "70de4f97-bc4a-44af-9995-1042e3c7c78f" }, "mobile": { - "value": "9px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", "uuid": "d11ab0de-19bd-4f56-8798-0192fd0cfe0e" } } }, "navigational-indicator-top-to-back-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "value": "11px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", "uuid": "5561a148-fd77-44d3-b29d-3ed7389122a1" }, "mobile": { - "value": "13px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", "uuid": "74f8a686-0e06-4f7c-9e3d-694749beb420" } } }, "navigational-indicator-top-to-back-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "value": "14px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", "uuid": "c0e06d21-7372-401f-9ec2-926e2b1faf26" }, "mobile": { - "value": "17px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", "uuid": "e84bc865-c89f-403e-bb14-2a11f03fd364" } } }, "navigational-indicator-top-to-back-icon-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "value": "17px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", "uuid": "ac4d18d5-361c-4425-82c3-83979d58f682" }, "mobile": { - "value": "22px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", "uuid": "e68f2798-6a55-499a-b591-0cfc130607ba" } } }, "color-control-track-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "24px", "uuid": "424db2a9-5795-400b-a98a-58081d311bff" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "30px", "uuid": "07e3ac46-3f96-4c00-aa6a-09840ee04bdd" } } + }, + "corner-triangle-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "490fac13-d347-4c21-85fa-57814bff7537" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "434b019c-efde-437a-967b-b841ec95e621" + } + } + }, + "corner-triangle-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "6fcfc18c-c5e0-4f50-beab-6c4a10bfdaa7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "1352ad8f-a8ec-459d-8ae3-71c27038a29d" + } + } + }, + "corner-triangle-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "9c2db47b-f017-432a-a44f-238bc461c4c1" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "2be65bca-0f16-4754-bc8a-4a491ba87b90" + } + } + }, + "corner-triangle-icon-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "c9c18669-11bf-4ba3-b36f-26115981327c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "d396d74a-425d-4f06-837f-349f81ebf486" + } + } } } diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index 00901778..52071397 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -1,321 +1,401 @@ { "accent-color-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-100}", "uuid": "2e080bb5-6f2c-4fd9-96a2-bf9fc19d2649" }, "accent-color-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-200}", "uuid": "cf583998-4dfd-4222-a554-8e05ed7fb5d6" }, "accent-color-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-300}", "uuid": "ea67f054-1f42-427e-a768-beb8d21de2a3" }, "accent-color-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-400}", "uuid": "a249e4b1-e6f9-4ef3-96c6-1559059839a7" }, "accent-color-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-500}", "uuid": "c1c0e6fb-ce21-49d7-91bb-73ce873aa69f" }, "accent-color-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-600}", "uuid": "5a2000be-5640-4389-a128-b2c164ad2253" }, "accent-color-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-700}", "uuid": "a8fbe39b-db6d-4bb4-a7c5-8a235060d2ae" }, "accent-color-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-800}", "uuid": "87a2c8f0-54fd-4939-8f42-3124fde1e49e" }, "accent-color-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-900}", "uuid": "90d82778-1cbb-47c0-aab9-b6e38a9cdc54" }, "accent-color-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1000}", "uuid": "9bf3fa2f-75d3-44d3-ae30-d88893665366" }, "accent-color-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1100}", "uuid": "f7f853a5-f091-4a7e-8aea-68d060c840f0" }, "accent-color-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1200}", "uuid": "7c141cdb-1e5e-468a-ba48-0df01b275402" }, "accent-color-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1300}", "uuid": "f7307eba-e311-41a8-bb50-0b1e96833dfa" }, "accent-color-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1400}", "uuid": "06585cf4-a924-49b2-b6c8-f0e80b57c576" }, "accent-color-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1500}", "uuid": "c43d9991-8929-4b1c-8631-670eef6bde83" }, "accent-color-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1600}", "uuid": "4b70c929-f48d-403d-9607-5963203433dc" }, "informative-color-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-100}", "uuid": "b9fc8b82-275a-49fe-98d7-95f136b48772" }, "informative-color-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-200}", "uuid": "df4ceb7f-aa84-4d71-ab3f-a56146ef146c" }, "informative-color-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-300}", "uuid": "0caae9f7-cad1-4cd6-b4a3-d47ac090d40a" }, "informative-color-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-400}", "uuid": "46f3f214-5211-452b-8dc0-ffb7e9f9712b" }, "informative-color-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-500}", "uuid": "546f860f-4e17-455a-a6eb-f7a6a3b37128" }, "informative-color-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-600}", "uuid": "79a0fe09-63fb-4c96-a3bf-a8e126e7838c" }, "informative-color-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-700}", "uuid": "04a018bd-229c-47da-99e9-d338d05f0fb6" }, "informative-color-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-800}", "uuid": "b4efe4b2-3787-47df-a7a0-5d89c3641f9f" }, "informative-color-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-900}", "uuid": "41b73196-0bc1-493e-9b5d-49f608914f5a" }, "informative-color-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1000}", "uuid": "6b609325-2bcf-491a-ad38-1409025caae0" }, "informative-color-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1100}", "uuid": "7bf54313-58b6-4581-b5ac-a2e51df4a9ed" }, "informative-color-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1200}", "uuid": "4504d6a9-87f7-48ea-94a0-d075f28bbcff" }, "informative-color-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1300}", "uuid": "f7a736c2-db44-4668-90a8-c27778ae9892" }, "informative-color-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1400}", "uuid": "b178b13b-93ee-422c-af98-3bf89105754b" }, "informative-color-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1500}", "uuid": "beeee44c-dc6b-4892-949e-67f069fc4a94" }, "informative-color-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1600}", "uuid": "68aa069d-d8a6-413a-b330-0ec6af905e6d" }, "negative-color-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-100}", "uuid": "c37f795e-e338-4220-b0ab-5cf899f114c0" }, "negative-color-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-200}", "uuid": "14919f0c-a40f-48d1-adfd-55826de8e600" }, "negative-color-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-300}", "uuid": "53486ec0-79f7-4853-ad5b-dacc5a904f8a" }, "negative-color-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-400}", "uuid": "de87c624-7f43-406e-8cdf-584343a55edc" }, "negative-color-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-500}", "uuid": "67d09223-03a0-444a-95b6-645a2d66f8c7" }, "negative-color-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-600}", "uuid": "4a0c11a4-4e77-43e0-a2cd-9931ac51d87d" }, "negative-color-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-700}", "uuid": "b7d5d2db-0282-436b-8cb0-873e891b22a6" }, "negative-color-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-800}", "uuid": "d858b481-8970-4547-aed1-b6388c36aba4" }, "negative-color-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-900}", "uuid": "0b469d2e-7c66-4188-b6bf-bbc379f75538" }, "negative-color-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1000}", "uuid": "2ea616aa-e08f-47cb-a3b0-3d7a06bd6ec2" }, "negative-color-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1100}", "uuid": "8a3dacc3-93f7-4e22-8bd7-c338da1a2489" }, "negative-color-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1200}", "uuid": "1b24f4e8-224c-41f9-b0eb-6a01e9261598" }, "negative-color-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1300}", "uuid": "fa641bdd-0714-4ae4-9a8f-8d829a9977e5" }, "negative-color-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1400}", "uuid": "58824d04-e2c0-4f0c-a3d7-9b88a01bf28d" }, "negative-color-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1500}", "uuid": "b4c1f747-e665-43bb-a1a9-1bf9f252471d" }, "negative-color-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1600}", "uuid": "62beb7ee-c347-4cd7-a84b-40c84fcbc135" }, "notice-color-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-100}", "uuid": "d0382c45-0cf7-4c3b-89fb-3536459cbc31" }, "notice-color-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-200}", "uuid": "b9218264-6bd0-4fee-8ab7-346428c9bbaa" }, "notice-color-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-300}", "uuid": "f1e8d13d-d9d2-46ea-befe-ebf1927e08dd" }, "notice-color-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-400}", "uuid": "77535709-6e67-4d7c-aaeb-d2dea1918430" }, "notice-color-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-500}", "uuid": "ab679012-b7cb-4f24-b401-b02e523d7c99" }, "notice-color-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-600}", "uuid": "716af828-c64d-465d-8476-d142892ca59c" }, "notice-color-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-700}", "uuid": "adb5159c-654f-4b9a-a101-3afa90328c42" }, "notice-color-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-800}", "uuid": "a83cdd4d-b8a9-42af-98c4-459f721abbff" }, "notice-color-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-900}", "uuid": "df87ca09-ff38-485e-90f7-6d9cbfbb6714" }, "notice-color-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1000}", "uuid": "d6fdcf63-c135-48a0-a767-e8f1e93e8190" }, "notice-color-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1100}", "uuid": "c30c4ce0-ed40-44eb-ae0b-3549523d5bc9" }, "notice-color-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1200}", "uuid": "7e22e4fe-bd28-4dac-b518-e35ec6900da3" }, "notice-color-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1300}", "uuid": "197c8ecc-3d6a-46e5-82f2-c315a52169fb" }, "notice-color-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1400}", "uuid": "4eccc44a-1cd5-4d9e-8627-18f7a363d3c8" }, "notice-color-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1500}", "uuid": "3da89d37-cf33-4408-b316-05bb61c25759" }, "notice-color-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1600}", "uuid": "67e534f5-5421-493c-9324-624f0fd491f3" }, "positive-color-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-100}", "uuid": "09503086-ccd2-4dfb-9bc1-6b86cf595976" }, "positive-color-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-200}", "uuid": "00a2adcc-7b8a-4e94-97d2-51a647016265" }, "positive-color-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-300}", "uuid": "2c75e63f-e628-487d-a143-e03de065d5ee" }, "positive-color-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-400}", "uuid": "906a05ca-0b2f-4ada-9e71-507d9f0653be" }, "positive-color-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-500}", "uuid": "b2e94182-57ae-479d-ab91-717edc0ec3f6" }, "positive-color-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-600}", "uuid": "d3a018bf-0abe-4031-8c38-80a94b0d62ae" }, "positive-color-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-700}", "uuid": "ffdde321-5c1d-489e-8a0f-afc582248594" }, "positive-color-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-800}", "uuid": "ee02d9d5-b840-44af-be8a-0f10086e8f7e" }, "positive-color-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-900}", "uuid": "1cd86108-ff79-4ccf-911e-8de9986c9053" }, "positive-color-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1000}", "uuid": "82d9fc42-d750-43d2-b227-b8df29abaca4" }, "positive-color-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1100}", "uuid": "05f42672-455e-421c-8a7e-cb187355d23d" }, "positive-color-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1200}", "uuid": "c4f84a4a-cfc4-42a6-81d4-11f27e1b38eb" }, "positive-color-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1300}", "uuid": "7d2d9fe7-5498-4f73-be6a-3a4ac91b6e15" }, "positive-color-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1400}", "uuid": "eb2fdab7-ea9e-42a3-a3d1-f9beec0c7b66" }, "positive-color-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1500}", "uuid": "2381ba55-11ff-4ef0-a770-dfd402650d5d" }, "positive-color-1600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1600}", "uuid": "de206438-991f-4580-8aa1-1488acb03a09" } diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index 141b478a..b85ed16b 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -1,1359 +1,1644 @@ { "default-font-family": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{sans-serif-font-family}", "uuid": "45d43d4e-a4e4-4c5f-94ec-644a81300eb0" }, "sans-serif-font-family": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", "value": "Adobe Clean", "uuid": "a552c422-c51c-458a-87b0-c6fe5178bf4b" }, "serif-font-family": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", "value": "Adobe Clean Serif", "uuid": "7f83198f-26ec-4156-9573-826dd7feb718" }, "cjk-font-family": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", "value": "Adobe Clean Han", "uuid": "034892ba-eff6-4193-b4c5-61d20c8f22eb" }, "light-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", "value": "light", "uuid": "fd477873-3767-4883-ab3f-5ee2758b923b" }, "regular-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", "value": "regular", "uuid": "02a94ddf-1007-4c86-8863-905874e40f95" }, "medium-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", "value": "medium", "uuid": "c966c3b6-1bf5-4064-89f9-00d9ec673fd4" }, "bold-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", "value": "bold", "uuid": "ff246e6b-7515-49a2-9dc6-8cdf1ea9b2d8" }, "extra-bold-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", "value": "extra-bold", "uuid": "ccadf44e-5424-4920-979f-ea1ef39687c4" }, "black-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", "value": "black", "uuid": "e2f23ca1-802b-40a2-a211-33090f9a043e" }, "italic-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", "value": "italic", "uuid": "9a58e4ae-dfa1-428b-9d90-11f4275418da" }, "default-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", "value": "normal", "uuid": "25668698-bf78-46f4-bc6c-8fea068ddb34" }, "font-size-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "11px", "uuid": "8593a326-de37-414d-b3f6-5254b41dce07" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "13px", "uuid": "b7561ce1-e12e-4aed-9766-181f7eca309e" } } }, "font-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "12px", "uuid": "55d90327-8cc9-4d4f-891f-9d42751d989a" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "15px", "uuid": "07e1c2a8-3925-4d71-8fae-3486483ff44c" } } }, "font-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "14px", "uuid": "938e2d24-1e90-48f0-a596-595a69103707" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "17px", "uuid": "2f9ee3cf-ccb1-4f0b-aed6-96e472fb7411" } } }, "font-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "16px", "uuid": "b36caaa3-7047-4dfb-8a84-f990a8ac3a91" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "19px", "uuid": "7e51ff4e-2749-49d1-b9ed-75de92a73991" } } }, "font-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "18px", "uuid": "3dc9b6a4-77e3-484b-be8c-fbc2f50e6175" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "22px", "uuid": "9b9a7175-dcca-43aa-98ce-f1c3e4eefda7" } } }, "font-size-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "20px", "uuid": "292a28d6-2e15-46e2-80cd-5171d977e9b5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "24px", "uuid": "d5ed0e8d-01ac-495f-bd15-fecc30af17c4" } } }, "font-size-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "22px", "uuid": "9be56e29-2e79-41e0-b5a9-6a2dabc70aa1" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "27px", "uuid": "a69a5079-1b5b-4ccf-946f-8b6e3fae4d7e" } } }, "font-size-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "25px", "uuid": "db1d7d01-8dd4-4c27-b58c-686f030e5e46" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "31px", "uuid": "ac892307-2559-48f5-9e2c-98dabbb0abc2" } } }, "font-size-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "28px", "uuid": "77da1638-cb39-4c80-8c13-db77b9aa528e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "34px", "uuid": "6bd6456c-b73b-4926-8e67-7b942e32bbc2" } } }, "font-size-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "32px", "uuid": "8425654d-7f46-4b6d-8997-5ae6b6980e06" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "39px", "uuid": "bdfae93d-ae49-456b-af54-8620ea976ca8" } } }, "font-size-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "36px", "uuid": "df2d6c8d-dc03-4581-96c6-d6a92a270b77" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "44px", "uuid": "5296e771-6d04-4e9a-b1fe-ab22d4dfd92b" } } }, "font-size-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "40px", "uuid": "27f694f9-6770-49e0-b7fc-833618b3fc2f" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "49px", "uuid": "8b158ab0-7e82-4dab-a4d9-84cf7a71fa0a" } } }, "font-size-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "45px", "uuid": "00dc3fcd-383f-4bc6-8940-e0884f0ffb7e" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "55px", "uuid": "5eb96c78-c8f6-4e31-9bc8-fa62794ac4db" } } }, "font-size-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "50px", "uuid": "b73bfb12-80ef-453f-b7dc-52bf2258ef47" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "62px", "uuid": "0ab38fb2-0de9-4be0-8967-8241379706be" } } }, "font-size-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "60px", "uuid": "e8853e10-cc03-47c1-9b66-11755ff513a5" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", "value": "70px", "uuid": "bd880141-81f6-47fe-a421-01124fe66b67" } } }, "line-height-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1.3", "uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b" }, "line-height-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1.5", "uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97" }, "cjk-line-height-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1.5", "uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4" }, "cjk-line-height-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1.7", "uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015" }, "cjk-letter-spacing": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0.05em", "uuid": "12e27721-35f5-4d03-95f3-3fc9e1cf50e4" }, "heading-sans-serif-font-family": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{sans-serif-font-family}", "uuid": "234d7b9d-bddc-4988-8be5-ef5e41e08185" }, "heading-serif-font-family": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{serif-font-family}", "uuid": "f2430818-41b5-439a-8347-6b384e78d141" }, "heading-cjk-font-family": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-font-family}", "uuid": "b6652ee5-466f-4117-a77c-a93a40f2a791" }, "heading-sans-serif-light-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", "uuid": "ff84a748-5923-451d-967c-a346d2dee46c" }, "heading-sans-serif-light-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "c5551fd5-4ee2-4c93-b91f-9ed295fa63a4" }, "heading-serif-light-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "66958795-6459-4750-8c68-dc39ab383837" }, "heading-serif-light-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "5f30418a-aa76-434e-bca9-902d5be0d929" }, "heading-cjk-light-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", "uuid": "9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d" }, "heading-cjk-light-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "b5704c75-2914-4268-9023-7f7452e826c1" }, "heading-sans-serif-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "1d4d09b4-021a-48e8-a724-bfecc13df325" }, "heading-sans-serif-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "561d905e-7f44-43da-b2b4-26e12551ef6d" }, "heading-serif-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "350aa193-9996-49c8-b5e4-54d4f7bef3c2" }, "heading-serif-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "938f3684-44c6-4ae2-935a-b88921fcd7fe" }, "heading-cjk-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "bd54516c-2fda-4421-ab62-720c3a887a34" }, "heading-cjk-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "c93b39df-82e9-4e87-920f-1747e5d48e8e" }, "heading-sans-serif-heavy-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "ef13b8f0-f686-492d-990f-691ec91ebb96" }, "heading-sans-serif-heavy-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "0c4cdd06-8180-40b1-9b1f-d7d973a7b772" }, "heading-serif-heavy-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "6b74c5ea-6bf4-46bb-bee1-3841606f1500" }, "heading-serif-heavy-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "14532cb8-6c88-46ce-886b-96fac971e7b9" }, "heading-cjk-heavy-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "73c20d2f-1227-46bc-8548-102358405b0b" }, "heading-cjk-heavy-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "b2f50ba2-e694-47ba-b81a-ea8fc813247e" }, "heading-sans-serif-light-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "75437f9a-7ee8-4194-b4b3-0746be097396" }, "heading-sans-serif-light-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "67271ca0-c9fd-4047-a615-6314d7333f7a" }, "heading-serif-light-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "29ad1c96-62e4-4143-88e8-fc8e08913a52" }, "heading-serif-light-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "73906871-24e5-48cc-9140-ec700c08d144" }, "heading-cjk-light-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "5ca91bc2-215b-4cbb-b966-80bfffd569ad" }, "heading-cjk-light-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "be854057-43b1-40ce-bdc7-69960cd7638c" }, "heading-sans-serif-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "79275989-91ed-408a-b884-a31d9f8bac26" }, "heading-sans-serif-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "2117cb6e-67f7-4509-b4fb-e9e442b6dc0e" }, "heading-serif-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "6df0fb95-4aa0-4c67-896d-fa6aa3d34e95" }, "heading-serif-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "2e0ef484-406a-4902-995d-9a3d5177ec12" }, "heading-cjk-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "eaf179aa-4514-4206-b3e2-a99b7d4d2029" }, "heading-cjk-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "4f061165-0e86-46b9-83c3-c95eeb8ff956" }, "heading-sans-serif-heavy-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "2104c3c2-d834-436a-a26d-508056f1013d" }, "heading-sans-serif-heavy-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "86775b10-5682-49fb-9d38-6bdb857da801" }, "heading-serif-heavy-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "af0010c7-5134-4fe4-bee1-bbb7dd31de3a" }, "heading-serif-heavy-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "b2875bbe-b5cb-452f-b7d6-3dcb4fc59921" }, "heading-cjk-heavy-strong-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "b7d2203c-c651-493e-80c2-b71b7c7c2692" }, "heading-cjk-heavy-strong-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "26817f91-2742-4170-aa01-1e1e67ef01e8" }, "heading-sans-serif-light-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", "uuid": "e882ea46-8f0a-4313-84f5-85bb8d9f1f5e" }, "heading-sans-serif-light-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "5f88eb81-7052-4c21-9896-f14cb09f0e70" }, "heading-serif-light-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "b5f79fde-07f7-4c07-897e-0bfdf27e2839" }, "heading-serif-light-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "7bd831cd-3fe0-402b-a105-f65b8e8023e2" }, "heading-cjk-light-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "aea9787b-ee0b-40cc-9089-5973e52b18bd" }, "heading-cjk-light-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7" }, "heading-sans-serif-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "e4a183fd-53c5-4dbb-afd1-6308e2e74f80" }, "heading-sans-serif-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "2f17833a-28a4-4152-8999-12b077557797" }, "heading-serif-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "a0983216-b0c5-4a3f-97dc-96ee711acb1f" }, "heading-serif-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "fe694554-832d-457d-a320-f02629f9c441" }, "heading-cjk-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "d854afd2-290a-40ae-a627-c4cdabeb546a" }, "heading-cjk-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "05c74b28-3051-498c-874a-5dc523bc27e5" }, "heading-sans-serif-heavy-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "a7cb3274-e48e-435b-a066-32027ac19e84" }, "heading-sans-serif-heavy-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "924c338f-7141-490a-a842-ad632c26160c" }, "heading-serif-heavy-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "82e9d579-8918-4114-bafa-3a9757556f84" }, "heading-serif-heavy-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "a18ac621-eade-4224-9660-3e9a080219ec" }, "heading-cjk-heavy-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "9315971c-6e83-42c8-9c24-d1bc6fa5e106" }, "heading-cjk-heavy-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "aef21944-3dac-4b2d-ba7b-0a4df3f406bb" }, "heading-sans-serif-light-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "c297a503-fc3c-4939-8c5a-6611b9b04719" }, "heading-sans-serif-light-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "bc5d65e0-e13a-424c-a260-9268a0dee66c" }, "heading-serif-light-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "98c61df3-057d-4345-881e-0c04628757f3" }, "heading-serif-light-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "71c8e302-6bc1-4f45-b804-c847dd153d1b" }, "heading-cjk-light-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "83cc347c-7a1a-4665-9de4-cf19903f1043" }, "heading-cjk-light-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "9136e25e-563b-4485-bad7-41809d5317de" }, "heading-sans-serif-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "9d834e30-53c1-4cea-9e17-2326038cb6cb" }, "heading-sans-serif-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "f692d35f-1b11-43d1-ad29-967436b90928" }, "heading-serif-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "cd32f2b7-3e9f-47ae-ad34-2c7783dd5b2f" }, "heading-serif-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "da6e1593-9d2a-4fd8-8877-d30d6e1d1c07" }, "heading-cjk-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "0080a817-b26f-42f1-84c4-5ed1ac08c12c" }, "heading-cjk-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "22934d4d-4952-40a7-a5e5-256a7a3c9371" }, "heading-sans-serif-heavy-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "8779e773-7b37-4eb0-ae7a-2ba0104ad9d5" }, "heading-sans-serif-heavy-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "c20ea22a-c34d-4c7c-a816-75b533e28c92" }, "heading-serif-heavy-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "2d8e76cd-f123-488d-893d-54a9f48f679e" }, "heading-serif-heavy-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "adf303e8-1e27-4aec-9bbc-5abe166358ec" }, "heading-cjk-heavy-strong-emphasized-font-weight": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "a0f680fa-2453-4bcc-b06c-9ff82de50c0c" }, "heading-cjk-heavy-strong-emphasized-font-style": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "619a15ba-f74e-4ff4-a604-312b810f1a50" }, "heading-size-xxxl": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-1300}", "uuid": "db884bf9-e7b5-420a-b408-bd9a4d6bb0a4" }, "heading-size-xxl": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-1100}", "uuid": "464e34cd-e768-4a38-a72b-cae1a4852ef3" }, "heading-size-xl": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-900}", "uuid": "94bb5ad9-503a-428a-a8ba-6cf3f70592ac" }, "heading-size-l": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-700}", "uuid": "336e434c-9026-4bb3-96b1-5bb44376b868" }, "heading-size-m": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-500}", "uuid": "4cdcefe1-2006-4560-839f-5bdef6db8c1a" }, "heading-size-s": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-300}", "uuid": "96673fee-b75c-4867-9041-48362af044bc" }, "heading-size-xs": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-200}", "uuid": "4f179af6-c31f-48f8-927c-a45150668ad3" }, "heading-size-xxs": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "82a831b4-b624-475b-b2be-4eb949e48626" }, "heading-cjk-size-xxxl": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-1300}", "uuid": "5a44e177-2478-4bb0-9212-ba2df64c8b00" }, "heading-cjk-size-xxl": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-900}", "uuid": "fbf59302-1ad2-4327-bfde-d638a0ca2429" }, "heading-cjk-size-xl": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-800}", "uuid": "43535e5f-607e-43f4-bd37-8230b1f7993f" }, "heading-cjk-size-l": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-600}", "uuid": "f57ffe02-2e41-46f3-a0ac-1feb63bdd748" }, "heading-cjk-size-m": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-400}", "uuid": "43f45659-314b-45aa-9886-1beb096fc4ce" }, "heading-cjk-size-s": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-300}", "uuid": "c1242a8c-ca10-40d0-8fc4-67bbbce8fc5f" }, "heading-cjk-size-xs": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-200}", "uuid": "132688a7-917d-44b9-a34f-a7135599b299" }, "heading-cjk-size-xxs": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "bddd6a96-c280-47ca-8858-20df055e488d" }, "heading-line-height": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{line-height-100}", "uuid": "64f28fe4-20f7-48cb-baeb-ff1898573727" }, "heading-cjk-line-height": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-line-height-100}", "uuid": "3e038db9-c5f7-4b8b-b1af-31075a31e0cc" }, "heading-margin-top-multiplier": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.88888889", "uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642" }, "heading-margin-bottom-multiplier": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.25", "uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f" }, "heading-color": { "component": "heading", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "60300cd2-9b30-4ee3-b7a1-b8dae00270d9" }, "body-sans-serif-font-family": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{sans-serif-font-family}", "uuid": "32c3d84f-2b0d-4ccd-ba3c-b8475d82550b" }, "body-serif-font-family": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{serif-font-family}", "uuid": "20df8bd4-5a61-4614-aa86-5b76c5976860" }, "body-cjk-font-family": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-font-family}", "uuid": "06d5790c-21e9-4135-843d-05007b046677" }, "body-sans-serif-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "6813005d-9df4-459b-9fab-b2a054c32c31" }, "body-sans-serif-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "e1da0eff-7482-46a0-8190-4c54c6b1e1dd" }, "body-serif-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "f049ba7a-c52f-4d39-b38e-911b2b91d031" }, "body-serif-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "d317d387-9bc8-4258-a79a-a0dd4e22d952" }, "body-cjk-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "a754c16b-2f0c-485f-813d-d472ee650660" }, "body-cjk-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "41389b62-c449-485b-bfa8-1659bacc8c42" }, "body-sans-serif-strong-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "633953a9-c61b-44cc-9dee-aebece97ccbc" }, "body-sans-serif-strong-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "b36db31f-eaaa-4310-9f54-f7b509d5f571" }, "body-serif-strong-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "be263571-bd6b-4383-bdf9-3cdf80248b6a" }, "body-serif-strong-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "c8b531d1-949e-4492-9897-450a477983ce" }, "body-cjk-strong-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "d79de2c4-ca7c-4316-ac44-fee1a66983d7" }, "body-cjk-strong-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "11fe09ad-92eb-4d7d-8872-467cdd69659b" }, "body-sans-serif-emphasized-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "5640ac73-a482-4787-9ab2-035b57a87833" }, "body-sans-serif-emphasized-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "717c067c-55d1-4927-ad9c-8784769f581d" }, "body-serif-emphasized-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "be2a8ff3-6117-4235-bcb8-72257b75d622" }, "body-serif-emphasized-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "c817210d-2b1a-4648-bff3-33fa212491f1" }, "body-cjk-emphasized-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "0d8ada2f-272d-4f76-bf37-095e0b48cdae" }, "body-cjk-emphasized-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "3e90be19-62fd-4e53-abf9-4c697baba5da" }, "body-sans-serif-strong-emphasized-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "421dc907-5862-4ed5-95f4-41d654b2fdc0" }, "body-sans-serif-strong-emphasized-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "b87e6738-af38-49be-9945-f3a307ce7b6f" }, "body-serif-strong-emphasized-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "a87b77ff-5b27-47e0-a7df-f15092fb783e" }, "body-serif-strong-emphasized-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "b940bdc8-d373-4bd0-8620-d6c04134698b" }, "body-cjk-strong-emphasized-font-weight": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "54020791-a975-4e5d-a905-8bffcc9d2d93" }, "body-cjk-strong-emphasized-font-style": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "f792aac0-62f2-47e3-b6ac-158ae009d9c3" }, "body-size-xxxl": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-600}", "uuid": "e0b8ceea-3404-4c4b-9145-fe5d445020fe" }, "body-size-xxl": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-500}", "uuid": "4d0d4ed9-af14-4d88-98f1-9237f65e192a" }, "body-size-xl": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-400}", "uuid": "3927604f-eaf3-4605-aa34-80b7bc88ac0f" }, "body-size-l": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-300}", "uuid": "884b74cb-d247-491d-acb9-d3dc84bfd9a6" }, "body-size-m": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-200}", "uuid": "4f7f6878-5304-48d3-8a42-5bb452c2163b" }, "body-size-s": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "1194f7e3-e4c3-4a3a-bd19-50f4b48e1a6e" }, "body-size-xs": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-75}", "uuid": "25e93322-8f0b-45f8-ae9a-18668251f064" }, "body-line-height": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{line-height-200}", "uuid": "39accad7-3de1-4850-9773-4e0ff8080049" }, "body-cjk-line-height": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-line-height-200}", "uuid": "2106b188-8520-4261-968b-2eb2928857f9" }, "body-margin-multiplier": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.75", "uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89" }, "body-color": { "component": "body", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "a7218010-91c1-4f20-8072-7b1801593014" }, "detail-sans-serif-font-family": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{sans-serif-font-family}", "uuid": "34101c26-b4cd-43aa-bddd-0758d21fef01" }, "detail-serif-font-family": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{serif-font-family}", "uuid": "365c6166-e17d-40bd-841e-495aa9c6acd7" }, "detail-cjk-font-family": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-font-family}", "uuid": "6cc647ab-1474-4094-974d-d079d7ef7565" }, "detail-sans-serif-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "d06a4346-ec24-4922-8985-4b8a05e0bfc6" }, "detail-sans-serif-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "21a9500c-f9a4-4ff3-9eb5-6da81bf314f6" }, "detail-serif-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "87ef8843-f44e-4526-80cd-9635f3e0261e" }, "detail-serif-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "524c5101-f745-47e6-b233-62cd005850f8" }, "detail-cjk-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "9b11f80a-7600-4a6b-a366-218ba320a5cc" }, "detail-cjk-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "4d2a9b37-101b-4025-95d6-aba18b701a58" }, "detail-sans-serif-light-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3" }, "detail-sans-serif-light-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e" }, "detail-serif-light-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb" }, "detail-serif-light-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7" }, "detail-cjk-light-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38" }, "detail-cjk-light-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131" }, "detail-sans-serif-strong-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "a150e66c-daf4-4c71-a2e2-577600878988" }, "detail-sans-serif-strong-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "c56642f3-043c-4738-bed0-61b324221f4e" }, "detail-serif-strong-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "d737931b-f63c-4874-8fa5-872b95048727" }, "detail-serif-strong-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "3b2124e3-e50b-4ab7-8340-f97b1f8fef1e" }, "detail-cjk-strong-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "ef2997f3-276c-4662-8644-9514590114f4" }, "detail-cjk-strong-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "653358fc-5ee4-4e97-affc-c56896d370c0" }, "detail-sans-serif-light-strong-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5" }, "detail-sans-serif-light-strong-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba" }, "detail-serif-light-strong-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b" }, "detail-serif-light-strong-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80" }, "detail-cjk-light-strong-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "91231878-73dc-46ce-a277-1d14e0e36842" }, "detail-cjk-light-strong-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230" }, "detail-sans-serif-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "6ca600be-010a-4aaa-a815-e5bfdbe36b21" }, "detail-sans-serif-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "5c7dcef1-514e-4d43-b2ef-76639e214b8c" }, "detail-serif-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "247b2004-e0bc-42b9-ba83-6edbe417c4cb" }, "detail-serif-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "cfaf6a70-3eb5-4887-bae6-8ae41c094192" }, "detail-cjk-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1" }, "detail-cjk-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "3dca0579-91c4-4f60-a2a6-25f16eb673b3" }, "detail-sans-serif-light-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "64972012-5050-41d0-9c9b-269b533a58b7" }, "detail-sans-serif-light-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "fc6098a2-3263-433c-8378-ba609629ef53" }, "detail-serif-light-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2" }, "detail-serif-light-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857" }, "detail-cjk-light-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40" }, "detail-cjk-light-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b" }, "detail-sans-serif-strong-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "c57f8682-52d2-43fa-a306-a588a13ead6b" }, "detail-sans-serif-strong-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "82d04795-da5f-4868-a90d-980f5376a878" }, "detail-serif-strong-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "863cf841-7b83-4f66-a01f-12dccd47fee6" }, "detail-serif-strong-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "7fdffa4e-4370-45cf-aab0-316561a56a24" }, "detail-cjk-strong-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb" }, "detail-cjk-strong-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "75a3a4ec-2b57-4a49-b3bd-84b41a3cd314" }, "detail-sans-serif-light-strong-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486" }, "detail-sans-serif-light-strong-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d" }, "detail-serif-light-strong-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2" }, "detail-serif-light-strong-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b" }, "detail-cjk-light-strong-emphasized-font-weight": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d" }, "detail-cjk-light-strong-emphasized-font-style": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a" }, "detail-size-xl": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-200}", "uuid": "ab476eec-b592-4890-af8f-74de808cb87f" }, "detail-size-l": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "613da587-5c48-4efa-abb5-36378c1e81f0" }, "detail-size-m": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-75}", "uuid": "07840554-1ec1-4823-b119-474ec9cc31f0" }, "detail-size-s": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-50}", "uuid": "585e1bec-ee93-4983-b0bb-3a1f6ec28218" }, "detail-line-height": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{line-height-100}", "uuid": "4ca9965a-24f9-454e-b0a7-dd5a0c5ae170" }, "detail-cjk-line-height": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-line-height-100}", "uuid": "93434006-5ed7-4656-96b7-8f355a1f07b2" }, "detail-margin-top-multiplier": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.88888889", "uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c" }, "detail-margin-bottom-multiplier": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.25", "uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51" }, "detail-letter-spacing": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0.06em", "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279" }, "detail-sans-serif-text-transform": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", "uuid": "8646d403-21f9-4e77-8a21-92289c303715" }, "detail-serif-text-transform": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534" }, "detail-color": { "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" }, "code-font-family": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", "value": "Source Code Pro", "uuid": "79b6c1f9-d1d5-4053-be47-36ecb666d0c1" }, "code-cjk-font-family": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{code-font-family}", "uuid": "322cb744-5837-4d0a-94a8-3c885d54568d" }, "code-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "bf02dd59-4b3c-435a-b33b-49fff22674a3" }, "code-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "b98a9c39-7d39-4b6d-ad35-46c8b1725c0c" }, "code-cjk-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "8455f34c-0c79-4699-aa7c-c77d28bfa617" }, "code-cjk-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "b26477bc-8bf1-41aa-b849-cfde54e27780" }, "code-strong-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "48d2b9b8-beac-4185-827d-0c552e47663f" }, "code-strong-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "dac3d8d5-3005-4fa6-b71a-6679470176cf" }, "code-cjk-strong-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "ed73f5fc-5b7a-4414-8f1c-325e7944a9e1" }, "code-cjk-strong-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "a30c9a18-1a49-4b16-87a0-e882c81dd1bd" }, "code-emphasized-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", "uuid": "948436ba-23d7-4eec-a3fe-ef5829ccadb0" }, "code-emphasized-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "9d3151ad-4a37-4eeb-aadd-7389ccb09345" }, "code-cjk-emphasized-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "61f8b443-95fa-46fd-8876-b4d7a2244af9" }, "code-cjk-emphasized-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "f892e676-5218-4dc9-870b-c9d2df6f3152" }, "code-strong-emphasized-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "4d5f1937-552d-44a4-be8e-2edafefa46aa" }, "code-strong-emphasized-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "83d53fe1-372f-46ba-b8e0-f90ca2e59647" }, "code-cjk-strong-emphasized-font-weight": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "8ed5c5e0-ff72-4937-98fd-fd09f1fab288" }, "code-cjk-strong-emphasized-font-style": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "38006d42-4f02-46ff-917f-6c0163525642" }, "code-size-xl": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-400}", "uuid": "7879adbc-6c38-4d29-9a90-a4ad91c75b90" }, "code-size-l": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-300}", "uuid": "b7010f1a-c994-4b19-b273-3f609fe4be2b" }, "code-size-m": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-200}", "uuid": "e5b76091-7cbb-4d1e-8d27-48f00759c9f3" }, "code-size-s": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "efa9311b-27c5-45ea-93a7-bef6f9370179" }, "code-size-xs": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-75}", "uuid": "f0c5e6fb-fb48-45d2-a043-558b3dc28bc7" }, "code-line-height": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{line-height-200}", "uuid": "0d33b30d-96d6-4b5a-90d2-2a708bdae623" }, "code-cjk-line-height": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-line-height-200}", "uuid": "35580910-cb91-44df-9613-7b2e40a75a7c" }, "code-color": { "component": "code", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } From a3a497e6ef8e996fb64fb11990969c5e73b70598 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Dec 2023 15:09:57 -0700 Subject: [PATCH 039/295] test: added schema checking tests --- .../tokens/schemas/components/action-bar.json | 2 +- .../schemas/components/action-button.json | 2 +- .../schemas/components/action-group.json | 2 +- .../schemas/components/alert-banner.json | 2 +- .../schemas/components/alert-dialog.json | 2 +- .../tokens/schemas/components/avatar.json | 2 +- packages/tokens/schemas/components/badge.json | 2 +- packages/tokens/schemas/components/body.json | 2 +- .../components/bottom-navigation-android.json | 2 +- .../schemas/components/breadcrumbs.json | 2 +- .../schemas/components/button-group.json | 2 +- .../tokens/schemas/components/button.json | 2 +- .../schemas/components/checkbox-group.json | 2 +- .../tokens/schemas/components/checkbox.json | 2 +- .../schemas/components/close-button.json | 2 +- packages/tokens/schemas/components/code.json | 2 +- .../tokens/schemas/components/color-area.json | 2 +- .../schemas/components/color-loupe.json | 2 +- .../schemas/components/color-slider.json | 2 +- .../schemas/components/color-wheel.json | 2 +- .../tokens/schemas/components/combo-box.json | 2 +- .../schemas/components/contextual-help.json | 2 +- .../tokens/schemas/components/detail.json | 2 +- .../tokens/schemas/components/divider.json | 2 +- .../schemas/components/field-label.json | 2 +- .../tokens/schemas/components/heading.json | 2 +- .../tokens/schemas/components/help-text.json | 2 +- .../schemas/components/in-line-alert.json | 2 +- packages/tokens/schemas/components/link.json | 2 +- packages/tokens/schemas/components/menu.json | 2 +- packages/tokens/schemas/components/meter.json | 2 +- .../tokens/schemas/components/picker.json | 2 +- .../tokens/schemas/components/popover.json | 2 +- .../schemas/components/progress-bar.json | 2 +- .../schemas/components/progress-circle.json | 2 +- .../schemas/components/radio-group.json | 2 +- .../tokens/schemas/components/rating.json | 2 +- .../schemas/components/scroll-zoom-bar.json | 2 +- .../schemas/components/side-navigation.json | 2 +- .../tokens/schemas/components/slider.json | 2 +- .../schemas/components/status-light.json | 2 +- .../schemas/components/swatch-group.json | 2 +- .../tokens/schemas/components/swatch.json | 2 +- .../tokens/schemas/components/switch.json | 2 +- .../schemas/components/tab-bar-ios.json | 2 +- packages/tokens/schemas/components/tabs.json | 2 +- packages/tokens/schemas/components/tag.json | 2 +- .../tokens/schemas/components/text-area.json | 2 +- .../tokens/schemas/components/text-field.json | 2 +- packages/tokens/schemas/components/toast.json | 2 +- .../tokens/schemas/components/tooltip.json | 2 +- packages/tokens/schemas/components/tray.json | 2 +- .../tokens/schemas/components/tree-view.json | 2 +- .../tokens/schemas/token-types/alias.json | 25 +++++ .../tokens/schemas/token-types/color-set.json | 78 +++++++++++++++ .../tokens/schemas/token-types/color.json | 25 +++++ .../tokens/schemas/token-types/dimension.json | 25 +++++ .../schemas/token-types/font-family.json | 25 +++++ .../tokens/schemas/token-types/font-size.json | 25 +++++ .../schemas/token-types/font-style.json | 25 +++++ .../schemas/token-types/font-weight.json | 25 +++++ .../schemas/token-types/multiplier.json | 25 +++++ .../tokens/schemas/token-types/opacity.json | 25 +++++ .../tokens/schemas/token-types/scale-set.json | 54 +++++++++++ packages/tokens/schemas/token-types/set.json | 22 +++++ .../schemas/token-types/system-set.json | 71 ++++++++++++++ .../schemas/token-types/text-transform.json | 25 +++++ .../tokens/schemas/token-types/token.json | 27 ++++++ .../test/componentSchemaValidator.test.js | 74 ++++++++++++++ .../test/schemaValidators/alias.test.js | 41 ++++++++ .../tokens/test/tokenSchemaValidator.test.js | 97 +++++++++++++++++++ 71 files changed, 767 insertions(+), 53 deletions(-) create mode 100644 packages/tokens/schemas/token-types/alias.json create mode 100644 packages/tokens/schemas/token-types/color-set.json create mode 100644 packages/tokens/schemas/token-types/color.json create mode 100644 packages/tokens/schemas/token-types/dimension.json create mode 100644 packages/tokens/schemas/token-types/font-family.json create mode 100644 packages/tokens/schemas/token-types/font-size.json create mode 100644 packages/tokens/schemas/token-types/font-style.json create mode 100644 packages/tokens/schemas/token-types/font-weight.json create mode 100644 packages/tokens/schemas/token-types/multiplier.json create mode 100644 packages/tokens/schemas/token-types/opacity.json create mode 100644 packages/tokens/schemas/token-types/scale-set.json create mode 100644 packages/tokens/schemas/token-types/set.json create mode 100644 packages/tokens/schemas/token-types/system-set.json create mode 100644 packages/tokens/schemas/token-types/text-transform.json create mode 100644 packages/tokens/schemas/token-types/token.json create mode 100644 packages/tokens/test/componentSchemaValidator.test.js create mode 100644 packages/tokens/test/schemaValidators/alias.test.js create mode 100644 packages/tokens/test/tokenSchemaValidator.test.js diff --git a/packages/tokens/schemas/components/action-bar.json b/packages/tokens/schemas/components/action-bar.json index 69e6d623..0ace98be 100644 --- a/packages/tokens/schemas/components/action-bar.json +++ b/packages/tokens/schemas/components/action-bar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/action-bar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/action-bar.json", "title": "Action bar", "description": "Action bars are used for single and bulk selection patterns, when a user needs to perform actions on either a single or multiple items at the same time.", "meta": { diff --git a/packages/tokens/schemas/components/action-button.json b/packages/tokens/schemas/components/action-button.json index d311586e..9486045f 100644 --- a/packages/tokens/schemas/components/action-button.json +++ b/packages/tokens/schemas/components/action-button.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/action-button.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/action-button.json", "title": "Action button", "description": "Action buttons allow users to perform an action or mark a selection. They're used for similar, task-based options within a workflow, and are ideal for interfaces where buttons aren't meant to draw a lot of attention.", "meta": { diff --git a/packages/tokens/schemas/components/action-group.json b/packages/tokens/schemas/components/action-group.json index cfd3b125..f2febc8e 100644 --- a/packages/tokens/schemas/components/action-group.json +++ b/packages/tokens/schemas/components/action-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/action-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/action-group.json", "title": "Action group", "description": "An action group is a grouping of action buttons that are related to each other.", "meta": { diff --git a/packages/tokens/schemas/components/alert-banner.json b/packages/tokens/schemas/components/alert-banner.json index a92764a7..3097426f 100644 --- a/packages/tokens/schemas/components/alert-banner.json +++ b/packages/tokens/schemas/components/alert-banner.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/alert-banner.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/alert-banner.json", "title": "Alert banner", "description": "Alert banners show pressing and high-signal messages, such as system alerts. They're meant to be noticed and prompt users to take action.", "meta": { diff --git a/packages/tokens/schemas/components/alert-dialog.json b/packages/tokens/schemas/components/alert-dialog.json index 3462e665..cbf2787d 100644 --- a/packages/tokens/schemas/components/alert-dialog.json +++ b/packages/tokens/schemas/components/alert-dialog.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/alert-dialog.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/alert-dialog.json", "title": "Alert dialog", "description": "Alert dialogs display important information that users need to acknowledge. They appear over the interface and block further interactions until an action is selected.", "meta": { diff --git a/packages/tokens/schemas/components/avatar.json b/packages/tokens/schemas/components/avatar.json index 8d434b76..f61c419a 100644 --- a/packages/tokens/schemas/components/avatar.json +++ b/packages/tokens/schemas/components/avatar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/avatar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/avatar.json", "title": "Avatar", "description": "An avatar is a thumbnail representation of an entity, such as a user or an organization.", "meta": { diff --git a/packages/tokens/schemas/components/badge.json b/packages/tokens/schemas/components/badge.json index f823e633..2e0d3166 100644 --- a/packages/tokens/schemas/components/badge.json +++ b/packages/tokens/schemas/components/badge.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/badge.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/badge.json", "title": "Badge", "description": "Similar to status lights, badges are for showing a small amount of color-categorized metadata. They're ideal for getting a user''s attention.", "meta": { diff --git a/packages/tokens/schemas/components/body.json b/packages/tokens/schemas/components/body.json index 045bf4d5..21af8c57 100644 --- a/packages/tokens/schemas/components/body.json +++ b/packages/tokens/schemas/components/body.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/body.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/body.json", "title": "Body", "description": "Body is a typography component primarily used within Spectrum components and for blocks of text.", "meta": { diff --git a/packages/tokens/schemas/components/bottom-navigation-android.json b/packages/tokens/schemas/components/bottom-navigation-android.json index c50e6004..9ef527c0 100644 --- a/packages/tokens/schemas/components/bottom-navigation-android.json +++ b/packages/tokens/schemas/components/bottom-navigation-android.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/bottom-navigation-android.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/bottom-navigation-android.json", "title": "Bottom navigation (Android)", "description": "Bottom navigation is a top-level navigation control for Android apps.", "meta": { diff --git a/packages/tokens/schemas/components/breadcrumbs.json b/packages/tokens/schemas/components/breadcrumbs.json index 3ef936f8..09e601cf 100644 --- a/packages/tokens/schemas/components/breadcrumbs.json +++ b/packages/tokens/schemas/components/breadcrumbs.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/breadcrumbs.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/breadcrumbs.json", "title": "Breadcrumbs", "description": "Breadcrumbs show hierarchy and navigational context for a user’s location within an app.", "meta": { diff --git a/packages/tokens/schemas/components/button-group.json b/packages/tokens/schemas/components/button-group.json index be844ea4..b873abb1 100644 --- a/packages/tokens/schemas/components/button-group.json +++ b/packages/tokens/schemas/components/button-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/button-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/button-group.json", "title": "Button group", "description": "A button group is a grouping of buttons whose actions are related to each other.", "meta": { diff --git a/packages/tokens/schemas/components/button.json b/packages/tokens/schemas/components/button.json index beb76af2..25650650 100644 --- a/packages/tokens/schemas/components/button.json +++ b/packages/tokens/schemas/components/button.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/button.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/button.json", "title": "Button", "description": "Buttons allow users to perform an action or to navigate to another page. They have multiple styles for various needs, and are ideal for calling attention to where a user needs to do something in order to move forward in a flow.", "meta": { diff --git a/packages/tokens/schemas/components/checkbox-group.json b/packages/tokens/schemas/components/checkbox-group.json index 226f1cac..2cae6741 100644 --- a/packages/tokens/schemas/components/checkbox-group.json +++ b/packages/tokens/schemas/components/checkbox-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/checkbox-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/checkbox-group.json", "title": "Checkbox group", "description": "A checkbox group is a grouping of checkboxes that are related to each other.", "meta": { diff --git a/packages/tokens/schemas/components/checkbox.json b/packages/tokens/schemas/components/checkbox.json index 79eddca7..13fc598b 100644 --- a/packages/tokens/schemas/components/checkbox.json +++ b/packages/tokens/schemas/components/checkbox.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/checkbox.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/checkbox.json", "title": "Checkbox", "description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.", "meta": { diff --git a/packages/tokens/schemas/components/close-button.json b/packages/tokens/schemas/components/close-button.json index 02011239..b2fe7e46 100644 --- a/packages/tokens/schemas/components/close-button.json +++ b/packages/tokens/schemas/components/close-button.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/close-button.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/close-button.json", "title": "Close button", "description": "The close button is used inside of other components, like a toast or an action bar, for closing or dismissing its parent component.", "meta": { diff --git a/packages/tokens/schemas/components/code.json b/packages/tokens/schemas/components/code.json index 33e27528..31582474 100644 --- a/packages/tokens/schemas/components/code.json +++ b/packages/tokens/schemas/components/code.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/code.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/code.json", "title": "Code", "description": "Detail is a typography component used for disclosing extra information or smaller items in hierarchical relationships of text.", "meta": { diff --git a/packages/tokens/schemas/components/color-area.json b/packages/tokens/schemas/components/color-area.json index 39299b29..3da17fcf 100644 --- a/packages/tokens/schemas/components/color-area.json +++ b/packages/tokens/schemas/components/color-area.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-area.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-area.json", "title": "Color area", "description": "A color area allows users to visually select two properties of a color simultaneously. It's commonly used together with a color slider or color wheel.", "meta": { diff --git a/packages/tokens/schemas/components/color-loupe.json b/packages/tokens/schemas/components/color-loupe.json index bba95cf5..7afcd44b 100644 --- a/packages/tokens/schemas/components/color-loupe.json +++ b/packages/tokens/schemas/components/color-loupe.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-loupe.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-loupe.json", "title": "Color loupe", "description": "A color loupe shows the output color that would otherwise be covered by a cursor, stylus, or finger during color selection.", "meta": { diff --git a/packages/tokens/schemas/components/color-slider.json b/packages/tokens/schemas/components/color-slider.json index a571f4e1..51444cfd 100644 --- a/packages/tokens/schemas/components/color-slider.json +++ b/packages/tokens/schemas/components/color-slider.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-slider.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-slider.json", "title": "Color slider", "description": "A color slider lets users visually change an individual channel of a color.", "meta": { diff --git a/packages/tokens/schemas/components/color-wheel.json b/packages/tokens/schemas/components/color-wheel.json index 04f13423..dd488113 100644 --- a/packages/tokens/schemas/components/color-wheel.json +++ b/packages/tokens/schemas/components/color-wheel.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-wheel.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-wheel.json", "title": "Color wheel", "description": "A color wheel lets users visually change an individual channel of a color on a circular track.", "meta": { diff --git a/packages/tokens/schemas/components/combo-box.json b/packages/tokens/schemas/components/combo-box.json index 77fd1978..1c4021f1 100644 --- a/packages/tokens/schemas/components/combo-box.json +++ b/packages/tokens/schemas/components/combo-box.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/combo-box.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/combo-box.json", "title": "Combo box", "description": "Combo boxes combine a text entry with a picker menu, allowing users to filter longer lists to only the selections matching a query.", "meta": { diff --git a/packages/tokens/schemas/components/contextual-help.json b/packages/tokens/schemas/components/contextual-help.json index da76feee..f40aedb7 100644 --- a/packages/tokens/schemas/components/contextual-help.json +++ b/packages/tokens/schemas/components/contextual-help.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/contextual-help.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/contextual-help.json", "title": "Contextual help", "description": "Contextual help shows a user extra information about the state of either an adjacent component or an entire view. It explains a high-level topic about an experience and can point users to more information elsewhere.", "meta": { diff --git a/packages/tokens/schemas/components/detail.json b/packages/tokens/schemas/components/detail.json index 315cf360..95c75c13 100644 --- a/packages/tokens/schemas/components/detail.json +++ b/packages/tokens/schemas/components/detail.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/detail.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/detail.json", "title": "Detail", "description": "Detail is a typography component used for disclosing extra information or smaller items in hierarchical relationships of text.", "meta": { diff --git a/packages/tokens/schemas/components/divider.json b/packages/tokens/schemas/components/divider.json index c79bea8e..9613e491 100644 --- a/packages/tokens/schemas/components/divider.json +++ b/packages/tokens/schemas/components/divider.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/divider.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/divider.json", "title": "Divider", "description": "Dividers bring clarity to a layout by grouping and dividing content in close proximity. They can also be used to establish rhythm and hierarchy.", "meta": { diff --git a/packages/tokens/schemas/components/field-label.json b/packages/tokens/schemas/components/field-label.json index 901c3fd7..bbdb906a 100644 --- a/packages/tokens/schemas/components/field-label.json +++ b/packages/tokens/schemas/components/field-label.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/field-label.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/field-label.json", "title": "Field label", "description": "Field labels give context to the information that a user needs to input. They're commonly used in forms.", "meta": { diff --git a/packages/tokens/schemas/components/heading.json b/packages/tokens/schemas/components/heading.json index 20a1a053..ba1ec25a 100644 --- a/packages/tokens/schemas/components/heading.json +++ b/packages/tokens/schemas/components/heading.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/heading.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/heading.json", "title": "Heading", "description": "Heading is a typography component used to create various levels of hierarchies between text.", "meta": { diff --git a/packages/tokens/schemas/components/help-text.json b/packages/tokens/schemas/components/help-text.json index 5358f073..ab77bc27 100644 --- a/packages/tokens/schemas/components/help-text.json +++ b/packages/tokens/schemas/components/help-text.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/help-text.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/help-text.json", "title": "Help text", "description": "Help text provides either an informative description or an error message that gives more context about what a user needs to input. It’s commonly used in forms.", "meta": { diff --git a/packages/tokens/schemas/components/in-line-alert.json b/packages/tokens/schemas/components/in-line-alert.json index 586d6d02..45164d4e 100644 --- a/packages/tokens/schemas/components/in-line-alert.json +++ b/packages/tokens/schemas/components/in-line-alert.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/in-line-alert.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/in-line-alert.json", "title": "In-line alert", "description": "In-line alerts display a non-modal message associated with objects in a view. These are often used in form validation, providing a place to aggregate feedback related to multiple fields.", "meta": { diff --git a/packages/tokens/schemas/components/link.json b/packages/tokens/schemas/components/link.json index 2fefdc93..bd45e29d 100644 --- a/packages/tokens/schemas/components/link.json +++ b/packages/tokens/schemas/components/link.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/link.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/link.json", "title": "Link", "description": "Links allow users to navigate to a different location. They can be presented inside a paragraph or as standalone text.", "meta": { diff --git a/packages/tokens/schemas/components/menu.json b/packages/tokens/schemas/components/menu.json index 2de4193e..aa2d02ad 100644 --- a/packages/tokens/schemas/components/menu.json +++ b/packages/tokens/schemas/components/menu.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/menu.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/menu.json", "title": "Menu", "description": "Menus help users take actions, choose from a list of options, configure settings, and more. They can be placed in a transient container, like a popover or tray.", "meta": { diff --git a/packages/tokens/schemas/components/meter.json b/packages/tokens/schemas/components/meter.json index dc5a8e14..d9e8a0e6 100644 --- a/packages/tokens/schemas/components/meter.json +++ b/packages/tokens/schemas/components/meter.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/meter.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/meter.json", "title": "Meter", "description": "Meters are visual representations of a quantity or an achievement. Their progress is determined by user actions, rather than system actions.", "meta": { diff --git a/packages/tokens/schemas/components/picker.json b/packages/tokens/schemas/components/picker.json index 5fe616a6..1e4622f7 100644 --- a/packages/tokens/schemas/components/picker.json +++ b/packages/tokens/schemas/components/picker.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/picker.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/picker.json", "title": "Picker", "description": "Pickers (sometimes known as \"dropdowns\" or \"selects\") allow users to choose from a list of options in a limited space. The list of options can change based on the context.", "meta": { diff --git a/packages/tokens/schemas/components/popover.json b/packages/tokens/schemas/components/popover.json index da47820a..e3184032 100644 --- a/packages/tokens/schemas/components/popover.json +++ b/packages/tokens/schemas/components/popover.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/popover.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/popover.json", "title": "Popover", "description": "Popovers are containers used to display transient content such as menus, options, additional actions, and more. They visually stand out through stroke and drop shadow and float on top of the interface.", "meta": { diff --git a/packages/tokens/schemas/components/progress-bar.json b/packages/tokens/schemas/components/progress-bar.json index eab41371..ef30e832 100644 --- a/packages/tokens/schemas/components/progress-bar.json +++ b/packages/tokens/schemas/components/progress-bar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/progress-bar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/progress-bar.json", "title": "Progress bar", "description": "Progress bars show the progression of a system operation: downloading, uploading, processing, etc., in a visual way. They can represent either determinate or indeterminate progress.", "meta": { diff --git a/packages/tokens/schemas/components/progress-circle.json b/packages/tokens/schemas/components/progress-circle.json index 03f2858b..8aee1ae1 100644 --- a/packages/tokens/schemas/components/progress-circle.json +++ b/packages/tokens/schemas/components/progress-circle.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/progress-circle.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/progress-circle.json", "title": "Progress circle", "description": "Progress circles show the progression of a system operation such as downloading, uploading, processing, etc. in a visual way. They can represent determinate or indeterminate progress.", "meta": { diff --git a/packages/tokens/schemas/components/radio-group.json b/packages/tokens/schemas/components/radio-group.json index cd470c18..4b68c1a7 100644 --- a/packages/tokens/schemas/components/radio-group.json +++ b/packages/tokens/schemas/components/radio-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/radio-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/radio-group.json", "title": "Radio Group", "description": "A radio group is a grouping of radio buttons that are related to each other.", "meta": { diff --git a/packages/tokens/schemas/components/rating.json b/packages/tokens/schemas/components/rating.json index 91eff1ff..2cd95f5f 100644 --- a/packages/tokens/schemas/components/rating.json +++ b/packages/tokens/schemas/components/rating.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/rating.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/rating.json", "title": "Rating", "description": "The rating component lets users apply a rating to an item or experience, such as an image, a forum post, an item for sale in a marketplace, and more.", "meta": { diff --git a/packages/tokens/schemas/components/scroll-zoom-bar.json b/packages/tokens/schemas/components/scroll-zoom-bar.json index bff7add9..a000cd5f 100644 --- a/packages/tokens/schemas/components/scroll-zoom-bar.json +++ b/packages/tokens/schemas/components/scroll-zoom-bar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/scroll-zoom-bar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/scroll-zoom-bar.json", "title": "Scroll-zoom bar", "description": "Primarily for usage in timelines, a scroll-zoom bar lets a user scroll or zoom with the same control.", "meta": { diff --git a/packages/tokens/schemas/components/side-navigation.json b/packages/tokens/schemas/components/side-navigation.json index 8f797855..cbff1ae0 100644 --- a/packages/tokens/schemas/components/side-navigation.json +++ b/packages/tokens/schemas/components/side-navigation.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/side-navigation.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/side-navigation.json", "title": "Side navigation", "description": "Side navigation lets users navigate the entire content of a product or a section. These can be used for a single level or a multi-level navigation.", "meta": { diff --git a/packages/tokens/schemas/components/slider.json b/packages/tokens/schemas/components/slider.json index 246d2eae..f7d100fc 100644 --- a/packages/tokens/schemas/components/slider.json +++ b/packages/tokens/schemas/components/slider.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/slider.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/slider.json", "title": "Slider", "description": "Sliders allow users to quickly select a value within a range. They should be used when the upper and lower bounds to the range are invariable.", "meta": { diff --git a/packages/tokens/schemas/components/status-light.json b/packages/tokens/schemas/components/status-light.json index f4b1580b..53e84c50 100644 --- a/packages/tokens/schemas/components/status-light.json +++ b/packages/tokens/schemas/components/status-light.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/status-light.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/status-light.json", "title": "Status light", "description": "Status lights describe the condition of an entity. They can be used to convey semantic meaning, such as statuses and categories.", "meta": { diff --git a/packages/tokens/schemas/components/swatch-group.json b/packages/tokens/schemas/components/swatch-group.json index 9450f5ef..b6559d31 100644 --- a/packages/tokens/schemas/components/swatch-group.json +++ b/packages/tokens/schemas/components/swatch-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/swatch-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/swatch-group.json", "title": "Swatch group", "description": "A swatch group is a grouping of swatches that are related to each other.", "meta": { diff --git a/packages/tokens/schemas/components/swatch.json b/packages/tokens/schemas/components/swatch.json index a89660da..d2789855 100644 --- a/packages/tokens/schemas/components/swatch.json +++ b/packages/tokens/schemas/components/swatch.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/swatch.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/swatch.json", "title": "Swatch", "description": "A swatch shows a small sample of a fill — such as a color, gradient, texture, or material — that is intended to be applied to an object.", "meta": { diff --git a/packages/tokens/schemas/components/switch.json b/packages/tokens/schemas/components/switch.json index d2472f90..6068d726 100644 --- a/packages/tokens/schemas/components/switch.json +++ b/packages/tokens/schemas/components/switch.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/switch.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/switch.json", "title": "Switch", "description": "Switches allow users to turn an individual option on or off. They are usually used to activate or deactivate a specific setting.", "meta": { diff --git a/packages/tokens/schemas/components/tab-bar-ios.json b/packages/tokens/schemas/components/tab-bar-ios.json index 98844de8..bb964b1c 100644 --- a/packages/tokens/schemas/components/tab-bar-ios.json +++ b/packages/tokens/schemas/components/tab-bar-ios.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tab-bar-ios.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tab-bar-ios.json", "title": "Tab bar (iOS)", "description": "Tab bar is a top-level navigation control for iOS apps.", "meta": { diff --git a/packages/tokens/schemas/components/tabs.json b/packages/tokens/schemas/components/tabs.json index b277e828..10eeeb59 100644 --- a/packages/tokens/schemas/components/tabs.json +++ b/packages/tokens/schemas/components/tabs.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tabs.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tabs.json", "title": "Tabs", "description": "Tabs organize content into multiple sections and allow users to navigate between them. The content under the set of tabs should be related and form a coherent unit.", "meta": { diff --git a/packages/tokens/schemas/components/tag.json b/packages/tokens/schemas/components/tag.json index 69d1ebeb..9304796d 100644 --- a/packages/tokens/schemas/components/tag.json +++ b/packages/tokens/schemas/components/tag.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tag.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tag.json", "title": "Tag", "description": "Tags allow users to categorize content. They can represent keywords or people, and are grouped to describe an item or a search request.", "meta": { diff --git a/packages/tokens/schemas/components/text-area.json b/packages/tokens/schemas/components/text-area.json index 0a245a66..b1713ada 100644 --- a/packages/tokens/schemas/components/text-area.json +++ b/packages/tokens/schemas/components/text-area.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/text-area.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/text-area.json", "title": "Text area", "description": "A text area lets a user input a longer amount of text than a standard text field. It can include all of the standard validation options supported by the text field component.", "meta": { diff --git a/packages/tokens/schemas/components/text-field.json b/packages/tokens/schemas/components/text-field.json index 6c670d6a..54b94952 100644 --- a/packages/tokens/schemas/components/text-field.json +++ b/packages/tokens/schemas/components/text-field.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/text-field.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/text-field.json", "title": "Text field", "description": "Text fields allow users to input custom text entries with a keyboard. Various options can be shown with the field to communicate the input requirements.", "meta": { diff --git a/packages/tokens/schemas/components/toast.json b/packages/tokens/schemas/components/toast.json index df61b581..62da55dd 100644 --- a/packages/tokens/schemas/components/toast.json +++ b/packages/tokens/schemas/components/toast.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/toast.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/toast.json", "title": "Toast", "description": "Toasts display brief, temporary notifications. They're meant to be noticed without disrupting a user's experience or requiring an action to be taken.", "meta": { diff --git a/packages/tokens/schemas/components/tooltip.json b/packages/tokens/schemas/components/tooltip.json index c178d1db..f89e17df 100644 --- a/packages/tokens/schemas/components/tooltip.json +++ b/packages/tokens/schemas/components/tooltip.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tooltip.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tooltip.json", "title": "Tooltip", "description": "Tooltips show contextual help or information about specific components when a user hovers or focuses on them.", "meta": { diff --git a/packages/tokens/schemas/components/tray.json b/packages/tokens/schemas/components/tray.json index 0f79a045..afc1f830 100644 --- a/packages/tokens/schemas/components/tray.json +++ b/packages/tokens/schemas/components/tray.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tray.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tray.json", "title": "Tray", "description": "Trays are containers that display transient content such as menus, options, additional actions, and more. They only exist on mobile experiences and are used for exposing types of content that may be too overwhelming for popovers.", "meta": { diff --git a/packages/tokens/schemas/components/tree-view.json b/packages/tokens/schemas/components/tree-view.json index 1a7e33e5..455f1395 100644 --- a/packages/tokens/schemas/components/tree-view.json +++ b/packages/tokens/schemas/components/tree-view.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tree-view.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tree-view.json", "title": "Tree view", "description": "A tree view provides users with a way to navigate nested hierarchical information.", "meta": { diff --git a/packages/tokens/schemas/token-types/alias.json b/packages/tokens/schemas/token-types/alias.json new file mode 100644 index 00000000..7989b893 --- /dev/null +++ b/packages/tokens/schemas/token-types/alias.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "title": "Alias", + "description": "A token that references another token.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "value": { + "type": "string", + "pattern": "^\\{(\\w|-)*\\}$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/color-set.json b/packages/tokens/schemas/token-types/color-set.json new file mode 100644 index 00000000..67169def --- /dev/null +++ b/packages/tokens/schemas/token-types/color-set.json @@ -0,0 +1,78 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "title": "Color set", + "description": "A set that contains color values that change based on color theme.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" + }, + "sets": { + "type": "object", + "anyOf": [ + { + "properties": { + "light": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + }, + "dark": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + }, + "darkest": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + }, + "wireframe": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + } + }, + "required": ["light", "dark", "darkest", "wireframe"] + }, + { + "properties": { + "light": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "dark": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "darkest": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "wireframe": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + } + }, + "required": ["light", "dark", "darkest", "wireframe"] + }, + { + "properties": { + "light": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + }, + "dark": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + }, + "darkest": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + }, + "wireframe": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + } + }, + "required": ["light", "dark", "darkest", "wireframe"] + } + ] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + }, + "required": ["sets"] +} diff --git a/packages/tokens/schemas/token-types/color.json b/packages/tokens/schemas/token-types/color.json new file mode 100644 index 00000000..24db23bd --- /dev/null +++ b/packages/tokens/schemas/token-types/color.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "title": "Color", + "description": "Color token schema.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + }, + "value": { + "type": "string", + "pattern": "^rgba\\((([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]),\\s?){3}(0|1|0?\\.\\d+)\\)|rgb\\(([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]){1,3}(,\\s?\\d{1,3}%?){2}\\)$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/dimension.json b/packages/tokens/schemas/token-types/dimension.json new file mode 100644 index 00000000..0aac5359 --- /dev/null +++ b/packages/tokens/schemas/token-types/dimension.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "title": "Dimension", + "description": "Pixel or relative dimension.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json" + }, + "value": { + "type": "string", + "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em|%))|0|\\d+dp$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/font-family.json b/packages/tokens/schemas/token-types/font-family.json new file mode 100644 index 00000000..321f61ec --- /dev/null +++ b/packages/tokens/schemas/token-types/font-family.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", + "title": "Font family", + "description": "A font family token defines a font family that can be used in a component.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json" + }, + "value": { + "type": "string", + "pattern": "^(?:\"?\\w+\"? ?,? ?)*\"?\\w+\"?$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/font-size.json b/packages/tokens/schemas/token-types/font-size.json new file mode 100644 index 00000000..e0132631 --- /dev/null +++ b/packages/tokens/schemas/token-types/font-size.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "title": "Dimension", + "description": "Pixel, rem, and em font sizes dimension.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json" + }, + "value": { + "type": "string", + "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em))$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/font-style.json b/packages/tokens/schemas/token-types/font-style.json new file mode 100644 index 00000000..81ed3be4 --- /dev/null +++ b/packages/tokens/schemas/token-types/font-style.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", + "title": "Font style", + "description": "Sets whether a font should be styled with a normal, italic, or oblique face from its font-family", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json" + }, + "value": { + "type": "string", + "enum": ["italic", "normal"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/font-weight.json b/packages/tokens/schemas/token-types/font-weight.json new file mode 100644 index 00000000..067d8505 --- /dev/null +++ b/packages/tokens/schemas/token-types/font-weight.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", + "title": "Font weight", + "description": "Defines sets the weight (or boldness) of the font", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json" + }, + "value": { + "type": "string", + "enum": ["light", "regular", "medium", "bold", "extra-bold", "black"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/multiplier.json b/packages/tokens/schemas/token-types/multiplier.json new file mode 100644 index 00000000..0b4f2271 --- /dev/null +++ b/packages/tokens/schemas/token-types/multiplier.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "title": "Multiplier", + "description": "A float used to multiply a value by a given amount. Also used as a line-height multiplier.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" + }, + "value": { + "type": "string", + "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/opacity.json b/packages/tokens/schemas/token-types/opacity.json new file mode 100644 index 00000000..4344fc7f --- /dev/null +++ b/packages/tokens/schemas/token-types/opacity.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "title": "Opacity", + "description": "A percentage measurement of the opacity.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + }, + "value": { + "type": "string", + "pattern": "^(?:\\d+(?:\\.\\d)+%)|(?:1|0)(?:\\.0)?|0?\\.\\d*$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/scale-set.json b/packages/tokens/schemas/token-types/scale-set.json new file mode 100644 index 00000000..fd0fd174 --- /dev/null +++ b/packages/tokens/schemas/token-types/scale-set.json @@ -0,0 +1,54 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "title": "Scale set", + "description": "A set that contains dimension values that change based on platform scale.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json" + }, + "sets": { + "type": "object", + "properties": { + "mobile": { + "anyOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + } + ] + }, + "desktop": { + "anyOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + } + ] + } + }, + "required": ["mobile", "desktop"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + }, + "required": ["sets"] +} diff --git a/packages/tokens/schemas/token-types/set.json b/packages/tokens/schemas/token-types/set.json new file mode 100644 index 00000000..12b036d3 --- /dev/null +++ b/packages/tokens/schemas/token-types/set.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json", + "title": "sets", + "description": "A generic token set.", + "type": "object", + "properties": { + "sets": { + "type": "object" + }, + "component": { + "type": "string" + }, + "deprecated": { + "type": "boolean" + }, + "deprecated_comment": { + "type": "string" + } + }, + "required": ["sets"] +} diff --git a/packages/tokens/schemas/token-types/system-set.json b/packages/tokens/schemas/token-types/system-set.json new file mode 100644 index 00000000..b9ae7a9f --- /dev/null +++ b/packages/tokens/schemas/token-types/system-set.json @@ -0,0 +1,71 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/system-set.json", + "title": "System set", + "description": "A set that contains tokens that change based on system.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/system-set.json" + }, + "sets": { + "type": "object", + "anyOf": [ + { + "properties": { + "spectrum": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + }, + "express": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + }, + "required": ["spectrum", "express"] + }, + { + "properties": { + "spectrum": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "express": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + } + }, + "required": ["spectrum", "express"] + }, + { + "properties": { + "spectrum": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" + }, + "express": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" + } + }, + "required": ["spectrum", "express"] + }, + { + "properties": { + "spectrum": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json" + }, + "express": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json" + } + }, + "required": ["spectrum", "express"] + } + ] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + }, + "required": ["sets"] +} diff --git a/packages/tokens/schemas/token-types/text-transform.json b/packages/tokens/schemas/token-types/text-transform.json new file mode 100644 index 00000000..ffb4466d --- /dev/null +++ b/packages/tokens/schemas/token-types/text-transform.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", + "title": "Text transform", + "description": "A token that specifies how to capitalize an element's text.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json" + }, + "value": { + "type": "string", + "enum": ["uppercase", "lowercase", "capitalize", "none"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/packages/tokens/schemas/token-types/token.json b/packages/tokens/schemas/token-types/token.json new file mode 100644 index 00000000..4dba66bc --- /dev/null +++ b/packages/tokens/schemas/token-types/token.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json", + "title": "Token", + "description": "A general token.", + "type": "object", + "properties": { + "value": { + "type": "string" + }, + "component": { + "type": "string" + }, + "deprecated": { + "type": "boolean" + }, + "deprecated_comment": { + "type": "string" + }, + "uuid": { + "type": "string", + "pattern": "^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$", + "format": "uuid" + } + }, + "required": ["value", "uuid"] +} diff --git a/packages/tokens/test/componentSchemaValidator.test.js b/packages/tokens/test/componentSchemaValidator.test.js new file mode 100644 index 00000000..b84a054d --- /dev/null +++ b/packages/tokens/test/componentSchemaValidator.test.js @@ -0,0 +1,74 @@ +/* +Copyright 2023 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. +*/ + +import test from "ava"; +import Ajv from "ajv/dist/2020.js"; +import addFormats from "ajv-formats"; +import { glob } from "glob"; +import { readFile } from "fs/promises"; + +const readJSON = async (filePath) => + JSON.parse(await readFile(filePath, "utf8")); +const componentSchema = await readJSON("schemas/component.json"); + +const fileNames = await glob("schemas/components/*.json"); +const files = await Promise.all( + fileNames.map(async (fileName) => { + return { fileName, json: await readJSON(fileName) }; + }), +); + +const ajv = new Ajv(); +addFormats(ajv); +ajv.addMetaSchema(componentSchema); +const schemaFiles = await glob("schemas/types/*.json"); +for (const schemaFile of schemaFiles) { + const schema = await readJSON(schemaFile); + ajv.addSchema(schema); +} + +for (const keyword of Object.keys(componentSchema.properties)) { + ajv.addKeyword({ keyword, metaSchema: componentSchema.properties[keyword] }); +} + +test("component schema should be valid", async (t) => { + const valid = ajv.validateSchema(componentSchema); + t.true(valid); +}); + +test("Every component schema should validate against the definition", (t) => { + let valid = true; + for (const file of files) { + if (!ajv.validateSchema(file.json)) { + valid = false; + console.log(`${file.fileName} failed validation`); + console.log(ajv.errors); + } + } + t.true(valid); +}); + +test("component examples should validate against the definition", (t) => { + let valid = true; + for (const file of files) { + const validate = ajv.compile(file.json); + if (!Object.hasOwn(file.json, "examples")) file.json.examples = []; + for (const example of file.json.examples) { + if (!validate(example)) { + valid = false; + console.log(`${file.fileName} failed validation`); + console.log(validate.errors); + } + } + } + t.true(valid); +}); diff --git a/packages/tokens/test/schemaValidators/alias.test.js b/packages/tokens/test/schemaValidators/alias.test.js new file mode 100644 index 00000000..fb88d903 --- /dev/null +++ b/packages/tokens/test/schemaValidators/alias.test.js @@ -0,0 +1,41 @@ +/* +Copyright 2023 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. +*/ + +import test from "ava"; +import Ajv from "ajv/dist/2020.js"; +import addFormats from "ajv-formats"; +import { readFile } from "fs/promises"; + +const readJSON = async (filePath) => + JSON.parse(await readFile(filePath, "utf8")); + +const ajv = new Ajv(); +addFormats(ajv); + +ajv.addSchema(await readJSON("schemas/token-types/token.json")); +const validate = await ajv.compile( + await readJSON("schemas/token-types/alias.json"), +); + +test("Every token schema should validate against the definition", (t) => { + const alias = { + component: "swatch", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-900}", + uuid: "7da5157d-7f25-405b-8de0-f3669565fb48", + }; + if (!validate(alias)) { + console.log(validate.errors); + } + t.pass(); +}); diff --git a/packages/tokens/test/tokenSchemaValidator.test.js b/packages/tokens/test/tokenSchemaValidator.test.js new file mode 100644 index 00000000..3b6def57 --- /dev/null +++ b/packages/tokens/test/tokenSchemaValidator.test.js @@ -0,0 +1,97 @@ +/* +Copyright 2023 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. +*/ + +import test from "ava"; +import Ajv from "ajv/dist/2020.js"; +import addFormats from "ajv-formats"; +import { glob } from "glob"; +import { readFile } from "fs/promises"; + +const readJSON = async (filePath) => + JSON.parse(await readFile(filePath, "utf8")); + +const ajv = new Ajv(); +addFormats(ajv); + +test.before(async (t) => { + const schemaFileNames = await glob("schemas/token-types/*.json"); + const schemaIds = await Promise.all( + schemaFileNames.map(async (fileName) => { + const json = await readJSON(fileName); + try { + ajv.addSchema(json, json["$id"]); + } catch (error) { + console.log(error); + console.log(`${fileName} error with $id ${json["$id"]}`); + } + return json["$id"]; + }), + ); + t.context.schemaIds = schemaIds; + + const tokenFilesNames = await glob("src/*.json"); + t.context.tokenFiles = await Promise.all( + tokenFilesNames.map(async (tokenFile) => { + return { fileName: tokenFile, data: await readJSON(tokenFile) }; + }), + ); +}); + +test("Schema should compile without errors", async (t) => { + try { + const validate = await ajv.compile({ + $schema: "https://json-schema.org/draft/2020-12/schema", + type: "object", + patternProperties: { + "^(?:(?:[a-z]|\\d)+-?)*(?:[a-z]|\\d)+$": { + anyOf: t.context.schemaIds.map((schemaId) => ({ $ref: schemaId })), + }, + }, + }); + } catch (error) { + console.log(error); + } + t.pass(); +}); + +test("Every token should have a $schema property", (t) => { + t.context.tokenFiles.forEach((tokenFileObj) => { + Object.keys(tokenFileObj.data).forEach((tokenName) => { + t.true( + Object.hasOwn(tokenFileObj.data[tokenName], "$schema"), + `${tokenName} in ${tokenFileObj.fileName} does not have a $schema property.`, + ); + }); + }); +}); + +test("Every token schema should validate against the definition", (t) => { + const errors = []; + t.context.tokenFiles.forEach((tokenFileObj) => { + Object.keys(tokenFileObj.data).forEach((tokenName) => { + if ( + !ajv.validate( + tokenFileObj.data[tokenName]["$schema"], + tokenFileObj.data[tokenName], + ) + ) { + t.log(`${tokenName} in ${tokenFileObj.fileName} failed validation.`); + errors.push({ + tokenName, + fileName: tokenFileObj.fileName, + errors: ajv.errors, + }); + } + }); + }); + t.deepEqual(errors, []); +}); From dc396aed31d2fe6abc464018a06aed876fd17424 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Dec 2023 15:34:21 -0700 Subject: [PATCH 040/295] feat(tokens): fixing schema of s2 tokens --- .../tokens/schemas/token-types/color-set.json | 15 +- packages/tokens/src/color-aliases.json | 62 ++++++ packages/tokens/src/color-component.json | 13 +- packages/tokens/src/color-palette.json | 198 ++++++++++++++++++ packages/tokens/src/icons.json | 4 + packages/tokens/src/layout-component.json | 40 +++- 6 files changed, 304 insertions(+), 28 deletions(-) diff --git a/packages/tokens/schemas/token-types/color-set.json b/packages/tokens/schemas/token-types/color-set.json index 67169def..636d5867 100644 --- a/packages/tokens/schemas/token-types/color-set.json +++ b/packages/tokens/schemas/token-types/color-set.json @@ -24,14 +24,11 @@ "dark": { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" }, - "darkest": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" - }, "wireframe": { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" } }, - "required": ["light", "dark", "darkest", "wireframe"] + "required": ["light", "dark", "wireframe"] }, { "properties": { @@ -41,14 +38,11 @@ "dark": { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" }, - "darkest": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" - }, "wireframe": { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" } }, - "required": ["light", "dark", "darkest", "wireframe"] + "required": ["light", "dark", "wireframe"] }, { "properties": { @@ -58,14 +52,11 @@ "dark": { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" }, - "darkest": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" - }, "wireframe": { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" } }, - "required": ["light", "dark", "darkest", "wireframe"] + "required": ["light", "dark", "wireframe"] } ] }, diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 6c6b84d6..7ebb12e6 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -20,16 +20,20 @@ "uuid": "af66daa6-9e52-4e68-a605-86d1de4ee971" }, "overlay-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.4", "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" }, "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.6", "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.4", "uuid": "93b904da-5d1f-4fd9-aa26-5aabe19df108" } @@ -49,6 +53,7 @@ "uuid": "e54491a8-d3ca-4d67-bacb-74ac192a387f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.15)", "uuid": "1deef94a-efba-4670-a1be-78ee021bdfe8" } @@ -73,6 +78,7 @@ "uuid": "cf1299aa-86c7-4523-b6ae-6de597ac3712" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-200}", "uuid": "6945b976-83b4-4aec-a687-cb461bc9fe70" } @@ -92,6 +98,7 @@ "uuid": "da228344-5b83-4e08-96d2-089068138ba0" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-100}", "uuid": "3ccfa493-5375-492a-93b0-7418655c3b56" } @@ -111,6 +118,7 @@ "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-50}", "uuid": "6556a64d-5944-4d65-a6cc-9c6121044ac7" } @@ -170,6 +178,7 @@ "uuid": "bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-600}", "uuid": "7a4f50a8-4e1b-49b4-b94a-6282c63bd5ea" } @@ -189,6 +198,7 @@ "uuid": "2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-700}", "uuid": "0e32d8e6-2f91-4d56-a717-8bfc17c0a2c6" } @@ -208,6 +218,7 @@ "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-800}", "uuid": "a4cbab05-1225-45a3-b612-194df4ab85ae" } @@ -227,6 +238,7 @@ "uuid": "a1e08db6-3a72-4b8e-9475-b54a7b9be506" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-700}", "uuid": "ea153fd0-f7f2-41ab-8f65-8181b26a939b" } @@ -251,6 +263,7 @@ "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{accent-color-900}", "uuid": "ebd98dbc-0949-4fca-8fe1-4cd7d610e7a5" } @@ -270,6 +283,7 @@ "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{accent-color-1000}", "uuid": "17ce0649-1b72-4e06-96a3-5137c8688233" } @@ -289,6 +303,7 @@ "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{accent-color-1100}", "uuid": "8d496041-f129-4794-9d8b-e64bb685b0c1" } @@ -308,6 +323,7 @@ "uuid": "af809118-7a97-409c-925f-8d7636a791c8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{accent-color-1000}", "uuid": "98781a4d-1bcc-4ede-8d40-37c76e445b3d" } @@ -332,6 +348,7 @@ "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{informative-color-900}", "uuid": "d3fda217-e0cb-4dd8-8d13-a22bcc648f4d" } @@ -351,6 +368,7 @@ "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{informative-color-1000}", "uuid": "5d0b457c-b59e-4cd6-b8c5-fa934e9a56ae" } @@ -370,6 +388,7 @@ "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{informative-color-1100}", "uuid": "e210cabe-f803-4a46-8da7-e35e003140d6" } @@ -389,6 +408,7 @@ "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{informative-color-1000}", "uuid": "1be73e4a-0817-435d-910c-0b0fc1825cbb" } @@ -408,6 +428,7 @@ "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{negative-color-900}", "uuid": "4720ac8b-47ae-443a-b393-89f08a1b52c6" } @@ -427,6 +448,7 @@ "uuid": "648da867-549e-47c3-9312-e9cfda288705" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{negative-color-1000}", "uuid": "8c39a7fc-c904-4cf7-8ccc-be459d1a9c0e" } @@ -446,6 +468,7 @@ "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{negative-color-1100}", "uuid": "da8b206c-6b7c-4994-be3b-6e99e813ad30" } @@ -465,6 +488,7 @@ "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{negative-color-1000}", "uuid": "3791aad5-91cc-4aed-af41-8033afe33bf6" } @@ -484,6 +508,7 @@ "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{positive-color-900}", "uuid": "87a32594-ddb7-48f8-a322-6dc0b761dc05" } @@ -503,6 +528,7 @@ "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{positive-color-1000}", "uuid": "e6572844-3118-460c-824f-b11b82e27180" } @@ -522,6 +548,7 @@ "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{positive-color-1100}", "uuid": "18af3356-ca03-4a36-bd15-b59bf11ee776" } @@ -541,6 +568,7 @@ "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{positive-color-1000}", "uuid": "2ca6e211-63f7-4c0e-b089-03905788c7f1" } @@ -590,6 +618,7 @@ "uuid": "fa68c3bf-88b5-4653-a42d-7de5ce7cec3d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-600}", "uuid": "6a74ab0a-e481-4d38-9db7-ea8ef885940b" } @@ -609,6 +638,7 @@ "uuid": "ce074ee2-a2a2-4da3-a99e-603524193d46" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{red-1100}", "uuid": "4b943658-87e5-4026-87de-0265d1f48a49" } @@ -628,6 +658,7 @@ "uuid": "3e9a6c2a-bd09-4d28-a95c-920109c1852f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{orange-1100}", "uuid": "55baa188-9e75-4e31-b2db-729dd47ed1dd" } @@ -647,6 +678,7 @@ "uuid": "61c5e375-bff3-479f-8c32-2d2a5edb906c" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{yellow-1100}", "uuid": "08e44ba2-3627-4ce0-b8f5-eea6ce277517" } @@ -666,6 +698,7 @@ "uuid": "5df9a029-dc91-4078-a198-574486948834" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{chartreuse-1100}", "uuid": "ebb64096-1155-4376-a13c-4a5db968253a" } @@ -685,6 +718,7 @@ "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{celery-1100}", "uuid": "3e44abd8-ea12-4c0a-9007-4a6edaa3b962" } @@ -704,6 +738,7 @@ "uuid": "49170573-9c22-42e1-a1ce-cd3d3972ddb7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{green-1100}", "uuid": "d9b7a966-e6c6-43a9-b2bd-6b72ff31aed7" } @@ -723,6 +758,7 @@ "uuid": "9a727140-328d-430f-9b10-8965eebe77d1" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{seafoam-1100}", "uuid": "4152095a-615b-4562-b183-78f765f6b3b0" } @@ -742,6 +778,7 @@ "uuid": "543af64f-9c28-4e88-8597-3259cd7ebf1f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{cyan-1100}", "uuid": "64bd4cb9-d698-4fb0-8b56-c0c519245549" } @@ -761,6 +798,7 @@ "uuid": "83591a94-83e1-4557-8f50-cc1fe9793b76" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{blue-1100}", "uuid": "dd76a630-e1fd-4831-94db-8622af24f4da" } @@ -780,6 +818,7 @@ "uuid": "b7f5a677-4e89-40e1-8324-7619a628ce8b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{indigo-1100}", "uuid": "71e2c0b9-4513-4679-9b97-ef1c345ec343" } @@ -799,6 +838,7 @@ "uuid": "e577d521-0271-4226-a094-624b35a05826" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{purple-1100}", "uuid": "cde24ea8-c181-42cb-9f71-0675628c5338" } @@ -818,6 +858,7 @@ "uuid": "7b4d71d3-ad78-4e02-a48e-fa79f40854a2" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{fuchsia-1100}", "uuid": "5eb86ed6-384e-4e72-a615-8bab097bbec8" } @@ -837,6 +878,7 @@ "uuid": "5867d764-d909-4490-b947-533e89997d0a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{magenta-1100}", "uuid": "299e780b-ddb9-444b-b416-2f33c9929be0" } @@ -981,6 +1023,7 @@ "uuid": "35ef6675-7e66-4ef5-8c8d-e8e70939b224" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-500}", "uuid": "96d8bbe9-5fc6-4260-8cb3-5888836c4708" } @@ -1000,6 +1043,7 @@ "uuid": "8ccd197f-fc8e-4d31-866c-2b96049eea89" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{accent-color-900}", "uuid": "a65c3f83-e46a-4d31-a6f0-de3b87479ea3" } @@ -1019,6 +1063,7 @@ "uuid": "fd64c9ca-6ad7-415c-b0b8-2579399e33a5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{informative-color-900}", "uuid": "405f9ef3-b882-4c72-9f5e-47739a8ae9d6" } @@ -1038,6 +1083,7 @@ "uuid": "70cb0316-5b7a-416c-bf93-7d8885c4fce6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{negative-color-900}", "uuid": "ae218610-35ca-478d-8277-f032b1f85737" } @@ -1057,6 +1103,7 @@ "uuid": "2759c912-6385-40e4-9ed9-ff2e11815b4d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{notice-color-900}", "uuid": "0cbb9365-59d0-4514-a352-b5379733c360" } @@ -1076,6 +1123,7 @@ "uuid": "25e8289f-6c82-4485-8920-a187f790cd47" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{positive-color-900}", "uuid": "cb447264-e862-4880-b9a3-f23028c836ac" } @@ -1095,6 +1143,7 @@ "uuid": "0f7a39c2-3ee7-4ff0-873f-334c81054b77" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{gray-500}", "uuid": "25d6638d-5597-4307-9a90-5ea276ce68c7" } @@ -1114,6 +1163,7 @@ "uuid": "870f90ab-7f3e-41b6-9c11-59e9c4ff82c6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{red-900}", "uuid": "5fa19855-1c32-4fa7-9363-8edea0bad4e2" } @@ -1133,6 +1183,7 @@ "uuid": "e7bf9977-2edf-48bc-8099-ad95e57b55b1" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{orange-900}", "uuid": "535ebae4-5308-4132-9ba7-2ead58c7af2d" } @@ -1152,6 +1203,7 @@ "uuid": "4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{yellow-900}", "uuid": "24e58c48-8597-40f1-96e0-90ae08910665" } @@ -1171,6 +1223,7 @@ "uuid": "a46d8e05-4f56-4b46-a279-0164abfa42e8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{chartreuse-900}", "uuid": "cea3da59-71a3-4ac6-b475-877ea2444839" } @@ -1190,6 +1243,7 @@ "uuid": "37c1311b-29ed-44ab-b656-a7538726ad77" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{celery-900}", "uuid": "88890424-a280-473b-a529-027e7ac828ac" } @@ -1209,6 +1263,7 @@ "uuid": "1219770d-543d-4216-9e87-c158f8a74df6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{green-900}", "uuid": "b2ca6377-9a7b-467f-8352-bda31fd4abbf" } @@ -1228,6 +1283,7 @@ "uuid": "736e4768-7944-40ec-a412-4cd36299e03d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{seafoam-900}", "uuid": "7f641817-9a7d-4625-b534-3b7e38bb5eae" } @@ -1247,6 +1303,7 @@ "uuid": "091a2073-baa0-4cc6-b943-9dddc285ad62" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{cyan-900}", "uuid": "cf213ea9-796e-4263-8866-b16f66b95e97" } @@ -1266,6 +1323,7 @@ "uuid": "63fe16ed-70fa-4eaf-918c-f642ff69ce05" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{blue-900}", "uuid": "4d8f8afe-c348-459d-9006-bc60bd53df84" } @@ -1285,6 +1343,7 @@ "uuid": "584ccbd4-3243-4041-b665-e2342d2b26e8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{indigo-900}", "uuid": "7c047042-0227-420d-b78f-193d4534b218" } @@ -1304,6 +1363,7 @@ "uuid": "0ee2957b-c401-4106-8ff3-9de9fa544a03" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{purple-900}", "uuid": "4b7780b2-d488-4446-88f8-cab0fd27bcd5" } @@ -1323,6 +1383,7 @@ "uuid": "38e60263-cb08-4090-a653-5acbd1664ae0" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{fuchsia-900}", "uuid": "66316379-927a-4e47-a5dd-84eb0c82eba8" } @@ -1342,6 +1403,7 @@ "uuid": "178e4bc6-6986-4e77-aab0-78dbe66f8e6f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "{magenta-900}", "uuid": "4de213eb-5f57-45a2-bea7-5f1b402b81ff" } diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 1117ef01..42c4e388 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -62,6 +62,7 @@ "uuid": "f783b8cb-d31f-46c2-b550-990639752510" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" } @@ -177,14 +178,9 @@ }, "color-handle-outer-border-color": { "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "spectrum": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" }, "color-handle-outer-border-opacity": { "component": "color-handle", @@ -194,6 +190,7 @@ }, "color-handle-drop-shadow-color": { "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "deprecated": true, "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", "value": "{drop-shadow-color}", diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 476cf8b4..576ef9dc 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -151,6 +151,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "a8c6363c-5297-41e3-ad76-1b6d0d3a3cc9" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(255, 255, 255)", + "uuid": "0906f3b2-74a9-4012-9e26-4d8f68f0eba9" } } }, @@ -168,6 +173,7 @@ "uuid": "0913be1e-b648-4b80-9976-fd8e5e53f4fc" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", "uuid": "16ee1a81-e7d0-46ff-af81-5eca376ce203" } @@ -187,6 +193,7 @@ "uuid": "1666d544-ad1b-445a-9a57-d2277fb752eb" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(253, 253, 254)", "uuid": "4b6e738d-ac71-4d34-83eb-cd45e511b144" } @@ -206,6 +213,7 @@ "uuid": "abd011c4-87a5-4b1f-82e2-e94d118f417f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(244, 246, 252)", "uuid": "3605974e-8f93-4907-81b3-fb6ab55d03f8" } @@ -225,6 +233,7 @@ "uuid": "0a676e7a-8a89-4607-a918-3abcfb0234a2" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(230, 236, 248)", "uuid": "eaad36fe-2827-4404-8876-060de75c2b34" } @@ -244,6 +253,7 @@ "uuid": "cc8c4299-c40d-4e93-80b2-c052ee8aaf40" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(210, 220, 243)", "uuid": "57d4b287-c9d9-4c56-894b-2df496d9a3b4" } @@ -263,6 +273,7 @@ "uuid": "c34dd99f-e576-4c98-a89d-86dd47514c55" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(183, 200, 235)", "uuid": "4634f126-2240-4de9-b244-ab2b833d70ef" } @@ -282,6 +293,7 @@ "uuid": "05808575-f14b-49d1-aefb-e3667ec0f5a4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(152, 176, 226)", "uuid": "bc09529e-716c-4541-a75a-081ed9fdd860" } @@ -301,6 +313,7 @@ "uuid": "8880b8f1-7850-49ef-a7ab-fd4e16cb37a6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(113, 144, 210)", "uuid": "3ab25385-aece-42c4-af86-01ea97ed2455" } @@ -320,6 +333,7 @@ "uuid": "3cc563c6-386e-4b08-850d-68d4a292e559" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(78, 112, 187)", "uuid": "b5201efc-0a69-4a87-8b9b-e869bcf03457" } @@ -339,6 +353,7 @@ "uuid": "d39fc368-ec71-40cd-85e9-afb07862f2b7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(73, 110, 194)", "uuid": "22e79b14-2a60-4721-8e9b-800fa9e7a128" } @@ -358,6 +373,7 @@ "uuid": "90d25d68-afb1-4b2a-9dba-3fe22d44976f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(72, 110, 194)", "uuid": "93fb6cac-b190-4a5a-951f-f5dc4c0d5978" } @@ -392,6 +408,7 @@ "uuid": "7d56ac58-fd58-41b3-9bbd-448ae0a7dd85" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "05ffb7a9-8bd9-46cd-bfb0-66217d52ceb1" } @@ -411,6 +428,7 @@ "uuid": "7b7d1fd8-cc1e-4053-b320-e481b8f64c46" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "1f9bd0a5-d1ed-4d24-b8bf-273f5f22a5f4" } @@ -430,6 +448,7 @@ "uuid": "d88d1685-29dc-486b-a0b9-9c90f60b8cde" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "94ed3997-5b56-41e8-9746-1d7515244c6e" } @@ -449,6 +468,7 @@ "uuid": "29d339bb-ef80-40f8-a69b-afa778b60805" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "23852b5e-2d80-4c89-946c-1c8c2fe37b39" } @@ -468,6 +488,7 @@ "uuid": "a61ed901-7f77-4667-9d19-fff6bab20623" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "ca7117db-c105-446f-85e5-72f1191b9cfd" } @@ -487,6 +508,7 @@ "uuid": "7e770996-780a-4494-91ea-08c1ae6cfa80" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "560dddaa-d4ae-4d84-8750-30eb72f9e33c" } @@ -506,6 +528,7 @@ "uuid": "5cc66280-e13a-459d-8529-c3f531aa5e4e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "0a50f1d3-8ae9-4955-9b1e-3d18121a3302" } @@ -525,6 +548,7 @@ "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "84bc6532-7cb0-47ea-8951-b16bc2a7aab9" } @@ -544,6 +568,7 @@ "uuid": "82b09b04-6a70-4a95-9eb5-a321a66a6465" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "895407bb-8fda-4857-92a9-bf0cc06f2c3f" } @@ -563,6 +588,7 @@ "uuid": "147ed079-b4f0-4cd7-89cd-7ec93750d688" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "a50fef9e-d01f-490c-9baa-8c9672f1ac96" } @@ -582,6 +608,7 @@ "uuid": "2a5d2e32-930d-4c50-b1fd-6781a1dc1db5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "85683533-e660-4037-ad0a-3d5e7714a757" } @@ -601,6 +628,7 @@ "uuid": "ce7da4ba-77ed-4bdd-a154-90f389af6c2a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "ccde5f80-26bb-4de8-9982-0f7fd3a97e7d" } @@ -620,6 +648,7 @@ "uuid": "2bc63c0d-691c-4cc4-95b6-b4e530a44978" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "4dbbc998-deeb-4268-9a6a-c49a57ff0bcc" } @@ -639,6 +668,7 @@ "uuid": "eb86d777-ec23-47e4-adc6-1203709dc00d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "0284c8ef-fd73-4c33-8f31-bc9a83a5a84f" } @@ -688,6 +718,7 @@ "uuid": "04f6044b-d0fa-4705-858c-2dc5721ec30f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "b9752d64-5683-4ddc-ae30-164c475a5d90" } @@ -707,6 +738,7 @@ "uuid": "b18ca77b-898e-4e09-88e2-8901de3e9172" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "1d78cfc4-2c54-450e-9c5a-e3d3a40bcf32" } @@ -726,6 +758,7 @@ "uuid": "fcfcf026-be31-4a05-b833-6757cacb8b05" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "c020ab70-b666-478b-aaf2-8e06c033f307" } @@ -745,6 +778,7 @@ "uuid": "8f9fa135-5aca-4e42-b247-fdfbf74bc07b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "4ca331f0-9278-4ad7-9328-766e8a5f83e6" } @@ -764,6 +798,7 @@ "uuid": "ec50a21c-88aa-41a8-b607-c8b1c407ac4f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "92784233-e6b0-4de0-8069-f3c037472dec" } @@ -783,6 +818,7 @@ "uuid": "ff0fa040-17d6-4570-84b5-7a88c5bb9f45" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "3fe966a7-eac1-4e06-9652-271182ff332d" } @@ -802,6 +838,7 @@ "uuid": "cb2486de-b2be-45e5-b459-6e371b29d357" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "fd598b48-a775-4c72-92e5-55f357c33537" } @@ -821,6 +858,7 @@ "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "abc67d6b-bd80-4e94-a91b-1f52216a5013" } @@ -840,6 +878,7 @@ "uuid": "ccb79099-59f4-4bf2-b149-0de72f556a45" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "f9fbdd87-77f6-4b99-b5f5-357604b57a48" } @@ -859,6 +898,7 @@ "uuid": "95621c5a-1768-4707-a2ce-bd15c61c89f4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "d3c2852d-4d9f-4493-af1a-cba5269baf22" } @@ -878,6 +918,7 @@ "uuid": "53617d38-1075-4b47-87c7-4695b385a2d7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "fb1cf925-d51e-4b6a-9cd1-ee711193a03a" } @@ -897,6 +938,7 @@ "uuid": "e7820c1c-ff58-431d-b521-b81ee3281db0" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "2caf3838-8be9-41d9-9cb9-fa2e6a2f8373" } @@ -916,6 +958,7 @@ "uuid": "7691bca6-3749-4cb7-a950-a94fe3d2910f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "5e630b5e-ff35-4463-8db5-79519a54d64f" } @@ -935,6 +978,7 @@ "uuid": "aaafa24c-cb3c-48cd-9cb7-e164be140ab5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "e70a8b5a-06ec-4771-9c16-9e74ae15c9bc" } @@ -984,6 +1028,7 @@ "uuid": "974ab8ec-6691-4696-b38c-77e16fb3df88" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "e4fff178-2055-4ec8-83e8-636a4ea8bb8c" } @@ -1003,6 +1048,7 @@ "uuid": "587d4ce3-4275-4d2a-916c-2b1bf78c38ea" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "47e53be7-b33b-48e3-abdf-fe48d59f8819" } @@ -1022,6 +1068,7 @@ "uuid": "74f40bbb-5afd-4c88-89d3-e69de9e2b604" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "c455298b-cc23-4504-b731-27be6433fbcd" } @@ -1041,6 +1088,7 @@ "uuid": "b912089a-b6c9-49ef-8a4b-0a1f6fbbe963" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "2c08292c-e6cc-4dcb-9046-8a2af09d1e43" } @@ -1060,6 +1108,7 @@ "uuid": "8a56b352-d7d4-45d4-b403-448557656dab" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "e6c70e40-f9e7-4975-af39-9458a8325c6f" } @@ -1079,6 +1128,7 @@ "uuid": "27b198b5-bf02-476a-a440-84c9a5bd2ce3" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "8a201cca-353e-4538-a6b5-efbc2fc86186" } @@ -1098,6 +1148,7 @@ "uuid": "f9e84513-57d6-4786-b8db-c86055cebfc6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "58992b4e-69ab-4919-922a-dd9277cb770e" } @@ -1117,6 +1168,7 @@ "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "8f42ee1b-59a5-4759-bef3-614835b348b2" } @@ -1136,6 +1188,7 @@ "uuid": "0fbe4f46-02a8-444d-ace5-c245c6f15112" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "69637678-cb68-46f1-9353-1c7d0f86e51e" } @@ -1155,6 +1208,7 @@ "uuid": "92e06ff6-8347-4320-9a98-3054ba458d0e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "bc744bfa-dd64-4660-b67c-105f07e66644" } @@ -1174,6 +1228,7 @@ "uuid": "a571e2cd-2aff-4344-b608-45a48162cb61" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "7aea0d8d-0fb0-47c1-ae6a-97510159359b" } @@ -1193,6 +1248,7 @@ "uuid": "8e3fe8e0-2b14-4331-869f-de2680ea60ac" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "269da724-5ec7-4ceb-991d-1e83495cfaed" } @@ -1212,6 +1268,7 @@ "uuid": "06afaefe-7e0a-42e2-99b5-e62674e1185d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "c1389efc-8e68-4e2d-94b1-17e193264be7" } @@ -1231,6 +1288,7 @@ "uuid": "9f2f551f-b606-48ce-9493-888587d3ccb6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "0d6ed0c9-b185-4656-9985-04904a39f5e6" } @@ -1280,6 +1338,7 @@ "uuid": "7bef094a-1523-4392-a0ca-59c48409f17a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "be46f4fb-64d6-4e04-abd1-1f87c634d272" } @@ -1299,6 +1358,7 @@ "uuid": "f4fdc925-63b3-4670-9f2b-a057c27c834a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "2e4d1e66-b660-4e99-8f01-ff9964aa19d8" } @@ -1318,6 +1378,7 @@ "uuid": "238147c6-0302-4d43-b3a3-42df832c7857" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "6547eb52-a3a5-4004-8125-df92fed7a062" } @@ -1337,6 +1398,7 @@ "uuid": "62ab6892-66ea-4b55-8c1a-fcc191d29717" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "2c6515da-f97b-4961-93cf-5b6c668fc0fc" } @@ -1356,6 +1418,7 @@ "uuid": "efa1fdd8-4478-411a-892c-0ecf23939489" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "8e450204-2aa5-4cb2-959b-8fc28f7f55bf" } @@ -1375,6 +1438,7 @@ "uuid": "8ae3c5ec-aabe-47a0-b822-ba0907e67ed4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "dfdf38c7-1e23-44a8-8a62-a5f6c3a341bf" } @@ -1394,6 +1458,7 @@ "uuid": "ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "69c7c213-9a1c-4cd2-ac90-2142aa955e00" } @@ -1413,6 +1478,7 @@ "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "9ebe0ca0-5580-4083-899a-ba4a4638254d" } @@ -1432,6 +1498,7 @@ "uuid": "a12f6cac-7fdc-4fd4-8120-ad957823ff6b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "a9e4cb0b-80af-417f-b8d5-b1a7aefa15e5" } @@ -1451,6 +1518,7 @@ "uuid": "4cf4a500-37a2-4dd8-a243-14f6c012b53c" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "7e7a2c49-bf61-4402-b85b-bf4df9ca8ff0" } @@ -1470,6 +1538,7 @@ "uuid": "4eee9daf-e19d-4e0b-b12d-4fdcc4852956" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "b54bc7bb-2347-4265-ba88-8af7fa420bdf" } @@ -1489,6 +1558,7 @@ "uuid": "69059dfa-e2e1-4f8d-b06b-058a8724e071" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "2e92e2de-12fa-45d3-be1d-5d875311bf1e" } @@ -1508,6 +1578,7 @@ "uuid": "b2a1039c-cbfe-44bf-a0fe-822c5f576f52" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "21c27c6d-f054-48b4-abb8-5b0907e238e2" } @@ -1527,6 +1598,7 @@ "uuid": "dfd355e7-82fd-4fdb-96bd-b584d7268ee9" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "e0d95ec7-193d-40d1-9bd9-e68ff27c0275" } @@ -1576,6 +1648,7 @@ "uuid": "bdc6a473-3109-44c6-9e2f-198d3224d75f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "cc59e104-9997-4ed2-a29e-0af0b1a04b67" } @@ -1595,6 +1668,7 @@ "uuid": "b18f4550-5bbe-496c-b4a5-13df8fd0c7d7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "838a5de8-2ec7-4814-8ba9-eaa4b0ad8e55" } @@ -1614,6 +1688,7 @@ "uuid": "b98dec90-df71-4593-946d-91df7918caac" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "bbb32db5-4835-4520-8bb1-ef2c8916c604" } @@ -1633,6 +1708,7 @@ "uuid": "6a974b7d-ccd2-4778-baae-8caf419a529c" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "eb857d3b-1956-4870-98cb-eaaffffaed85" } @@ -1652,6 +1728,7 @@ "uuid": "46d8fd3b-0e51-4cdd-a33c-de184b82dcc5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "7bffe928-4940-41b1-a9d4-3cbee27cb472" } @@ -1671,6 +1748,7 @@ "uuid": "965174d2-e743-41df-a8e2-570b2ae2f447" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "788108ff-5238-4a75-8936-092df93a3fd0" } @@ -1690,6 +1768,7 @@ "uuid": "a615bb51-0249-4201-b1c9-1c6269b82ec2" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "0386fb0b-3653-4015-a3a1-cbf047435f0f" } @@ -1709,6 +1788,7 @@ "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "c8046b7e-506c-47b7-8105-4d7e805f6b92" } @@ -1728,6 +1808,7 @@ "uuid": "1637c50e-88e4-4273-8a75-6e8a233a690c" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "5f1f16c2-d562-4dd8-9b96-9d19b9a88093" } @@ -1747,6 +1828,7 @@ "uuid": "7dbedc59-e21c-4953-a7af-5e91d170604a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "9a6983b0-a2ba-4633-a618-f3b4ac8f05c6" } @@ -1766,6 +1848,7 @@ "uuid": "90417b40-97dd-47b3-9dbc-4ac45f8e4a5f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "8e44257e-ec8e-4459-863e-0bbbab65f6e0" } @@ -1785,6 +1868,7 @@ "uuid": "e4b04d5d-e99d-41c5-8b24-540d653ef3ff" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "9af36936-6d05-4ba4-8beb-9b65bafb9277" } @@ -1804,6 +1888,7 @@ "uuid": "615841b9-08b2-4e21-981a-b8f5247e9e89" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "acb36528-7ad1-497c-baf7-c53171ce4112" } @@ -1823,6 +1908,7 @@ "uuid": "a75188c9-02e3-4337-8056-9a6f8f39001f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "485b7081-a921-42ee-b781-8a99bfeb84fa" } @@ -1872,6 +1958,7 @@ "uuid": "43feed9a-9a2a-44e0-9506-9bc5eb8eab1d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "a52ac86a-8627-483b-b747-6e8aa5fa7249" } @@ -1891,6 +1978,7 @@ "uuid": "741a30fb-62a9-4c76-a78e-cc2590af9c7d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "a83229ca-de1f-4fdb-a72b-b8a3498a31bb" } @@ -1910,6 +1998,7 @@ "uuid": "5eda4487-8f82-48ed-8b22-aa38601bbf88" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "5b271002-0fe2-4407-be21-7c09646a2303" } @@ -1929,6 +2018,7 @@ "uuid": "646d80c1-7073-4e13-bbfe-4bd0c2226079" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "813b3e86-659b-48ee-b88d-122c13fa96e8" } @@ -1948,6 +2038,7 @@ "uuid": "7d4c282b-78ce-4b2c-ab39-26bf02366e4d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "13e77335-22c0-470a-a5e5-da6363f622e0" } @@ -1967,6 +2058,7 @@ "uuid": "260d8921-3810-4a5d-a20f-cd00170cf951" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "a52a4fbf-dc30-4c09-b1d8-b25bcead712c" } @@ -1986,6 +2078,7 @@ "uuid": "7e7e6abb-a2e9-4308-ac8e-e6866ec17c64" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "3e9a8018-a0bf-4562-867d-555c75c08d9f" } @@ -2005,6 +2098,7 @@ "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "7a5096e0-6845-4ae5-bab4-d958c7e3dadb" } @@ -2024,6 +2118,7 @@ "uuid": "706f3a95-ab27-497f-aab7-f4ed806eef30" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "10c7c9b0-0d15-43ae-bf6f-84384783a9aa" } @@ -2043,6 +2138,7 @@ "uuid": "021a55b8-26ae-4767-82fb-06b20c58762b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "085d2bcb-85b1-4b55-842b-9559c457a1a0" } @@ -2062,6 +2158,7 @@ "uuid": "e091babe-6e02-4393-a67e-63222ab860b4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "5c9ac732-7e1a-448c-b338-18d3b265d5d1" } @@ -2081,6 +2178,7 @@ "uuid": "9913e84a-4070-476f-a570-a16781a924cf" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "865fc403-cab2-4e38-a181-e5e10523e04d" } @@ -2100,6 +2198,7 @@ "uuid": "d2d8dc91-da75-4c56-a0d8-e6e9802434ad" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "cc88021a-ce1a-4f69-9208-d1b897a1d71b" } @@ -2119,6 +2218,7 @@ "uuid": "c5c3c68c-8293-4ebb-a8d1-9f4af902906e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "0fd51556-72b0-48ea-86f2-435bf64de316" } @@ -2168,6 +2268,7 @@ "uuid": "e5a14d4a-47c5-4a53-84c5-589a0749d906" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "f0702380-ed81-4f16-844c-b4c3b797161c" } @@ -2187,6 +2288,7 @@ "uuid": "e8f294f5-cb17-4fdc-b370-ca2e3f95d342" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "b5d964d5-e68d-44c6-880f-2e23d2bae7ec" } @@ -2206,6 +2308,7 @@ "uuid": "cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "1aaecce9-f58c-44a5-9bb9-f62172ebcd21" } @@ -2225,6 +2328,7 @@ "uuid": "c5e88879-9773-446c-883e-96531bcb8fad" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "8143aced-4012-4dc3-a132-2b5701e09a52" } @@ -2244,6 +2348,7 @@ "uuid": "27649ccc-69a8-48d6-9d52-6d6e2e28ae17" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "9418d6a8-69a1-49a4-ac3d-d81c81a633be" } @@ -2263,6 +2368,7 @@ "uuid": "a0513e49-8483-40f8-8b8f-41fdc222f13d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "57d2a064-3028-4225-82c4-e200e4abc6a3" } @@ -2282,6 +2388,7 @@ "uuid": "9c24175e-34a5-46c8-b646-f70c08292776" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "fa823d25-6075-455b-a6f4-18de77a01f06" } @@ -2301,6 +2408,7 @@ "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "12755af6-ac1f-441a-80fb-07c3d61dc6c9" } @@ -2320,6 +2428,7 @@ "uuid": "5afee2ee-a5d5-4dcf-a917-11dfdd0c3691" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "81174c05-0b05-4030-a8b7-e2fc13533954" } @@ -2339,6 +2448,7 @@ "uuid": "3d6732a1-a1f9-4e18-927b-93cebaae3895" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "a1c41ddd-5c54-4dce-bea3-51768998639c" } @@ -2358,6 +2468,7 @@ "uuid": "a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "7f426d3d-5ff9-4ee2-b0e1-07282fe389df" } @@ -2377,6 +2488,7 @@ "uuid": "07fa1b72-bf84-4fd5-9565-28373fae6a1f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "515298b6-f629-4c08-9e0f-18a5ba8fe20f" } @@ -2396,6 +2508,7 @@ "uuid": "c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "ce02582f-b327-4367-9f66-92dcc67fd072" } @@ -2415,6 +2528,7 @@ "uuid": "df5458e5-891b-4a88-a96c-748a812978a7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "51b8502d-e045-4b40-93e1-e2b49f6bf90c" } @@ -2464,6 +2578,7 @@ "uuid": "080b56a3-6f95-422a-9f4b-d850966c4984" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "3c862893-b1e9-45df-99da-33906686d3c1" } @@ -2483,6 +2598,7 @@ "uuid": "2876bdd7-af97-4cd6-89cc-bdb9c2110946" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "4115d94a-b52e-4cc8-8067-cd9184030ffe" } @@ -2502,6 +2618,7 @@ "uuid": "d90b7496-0f54-41ce-96eb-c973457661ae" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "56c4f393-086d-41d9-87d0-babaea86a2a4" } @@ -2521,6 +2638,7 @@ "uuid": "ec603c2c-b2b2-4769-a889-ba7c91a458eb" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "21467045-093e-461e-86ac-dc65b657bf50" } @@ -2540,6 +2658,7 @@ "uuid": "c24b866c-5ac0-49de-857b-48c655fa9990" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "50117040-ca43-4b90-832d-7e4c2d83c31c" } @@ -2559,6 +2678,7 @@ "uuid": "73b58f7e-008b-44ae-8969-19d981d444d6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "0a450ad0-dd5e-414c-9b76-dac4ca20a1b8" } @@ -2578,6 +2698,7 @@ "uuid": "0b8528e6-ceea-47a5-9727-24e97d7bc138" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "c26d7e9d-fef9-4aa9-991b-bbac307e3c7a" } @@ -2597,6 +2718,7 @@ "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "7a88f0bf-59cb-4af3-9542-f7648fecd50e" } @@ -2616,6 +2738,7 @@ "uuid": "dca23a18-2b19-48bf-9894-2f0948f6c05e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "8e444b02-f977-4948-b862-63275642ad58" } @@ -2635,6 +2758,7 @@ "uuid": "c416b5c5-0506-419f-88ca-f722f12a9d86" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "72873817-3cf5-4a14-aa93-1f86b4c6f7f2" } @@ -2654,6 +2778,7 @@ "uuid": "4a853bfc-f1b0-4e39-8cd8-da0350c99cd5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "fb3f4cf4-e032-4cc1-94b1-d122f0d695ac" } @@ -2673,6 +2798,7 @@ "uuid": "8e4c65b7-d819-4ffd-9398-71e9d294ba63" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "8a7fb1d7-90ca-41d1-a04c-84bd1d70d9ec" } @@ -2692,6 +2818,7 @@ "uuid": "ef35ace8-870d-42e0-8ce6-2df61415431f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "3e88a833-9ef2-4f37-86a1-041e76850e1e" } @@ -2711,6 +2838,7 @@ "uuid": "9499384b-336c-4a41-af05-645a92ae40d4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "badc0d78-4232-44f0-8911-e9e2f0eab94f" } @@ -2760,6 +2888,7 @@ "uuid": "24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "28fe7c7b-b43c-4650-9155-5b0f5ec27a09" } @@ -2779,6 +2908,7 @@ "uuid": "3445cf4b-2460-4692-acf2-71844d687da4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "b6b314ea-f9ba-4f49-a115-f4177ecb7bbc" } @@ -2798,6 +2928,7 @@ "uuid": "e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "f7d51b4b-6c95-4271-a51e-4ad5a1660591" } @@ -2817,6 +2948,7 @@ "uuid": "94a5bd53-d69a-4063-b630-1976230d4f2d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "6c2a20c7-e453-4401-a0b4-8e0d1d7edd7e" } @@ -2836,6 +2968,7 @@ "uuid": "909baeef-fd2f-4550-89ea-fb7ac9ea2db5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "39f96e8f-c9c8-4158-8da9-6825cd084fc3" } @@ -2855,6 +2988,7 @@ "uuid": "d753ef33-bfc0-424b-a2ac-ea87ecbee590" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "6f67dfce-62d0-4147-aac6-33873a325cd3" } @@ -2874,6 +3008,7 @@ "uuid": "3cb348d4-14a9-43da-84c4-068cf46c8c6f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "08173787-f50d-48a7-badc-141a9e7b7981" } @@ -2893,6 +3028,7 @@ "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "a006424a-ad2b-4091-a38d-b4af80ddc03e" } @@ -2912,6 +3048,7 @@ "uuid": "9c183829-4858-4908-b1ac-d89f40f2e903" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "03de1fef-9ae1-457d-917b-6f22fb545d00" } @@ -2931,6 +3068,7 @@ "uuid": "04f3d463-9118-43d5-973d-8bf94417912d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "8dd5e110-aa2f-47b2-aa21-30bc4241db86" } @@ -2950,6 +3088,7 @@ "uuid": "62a7ebff-a49b-4e7a-981f-692a506b4146" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "4698ba84-dab0-4b6b-a2b1-e289261aa7b4" } @@ -2969,6 +3108,7 @@ "uuid": "36a2af99-eef4-476b-a3b8-58eade0931b7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "8e12e7fe-546a-4e8c-92eb-56673446b1bb" } @@ -2988,6 +3128,7 @@ "uuid": "5f3df12b-1330-4482-ad34-c623bd36253c" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "958d5c96-6b57-47c2-a9a5-f589c054aa13" } @@ -3007,6 +3148,7 @@ "uuid": "fe63b8a3-ebb9-45fe-99c2-e246b53e06a6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "8a2d9c8d-a95a-48ac-b6eb-0ca1d5e69bd7" } @@ -3056,6 +3198,7 @@ "uuid": "e60cb247-c265-4009-9f0a-bcbbbb801dd4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "37af1036-6ba7-4eac-b1a5-9442ff55036f" } @@ -3075,6 +3218,7 @@ "uuid": "56c709dd-b41e-478a-8098-21014e3f9ec8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "401d532f-8374-4e5a-99c5-51c4ec9bc344" } @@ -3094,6 +3238,7 @@ "uuid": "716f244e-67c5-4566-b824-ed7f2192b585" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "fb607a6f-2d62-4163-a6a3-068b80a084da" } @@ -3113,6 +3258,7 @@ "uuid": "c256e06e-07bc-4dcd-9239-48841916c93b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "5cd6358b-bdc0-488e-a5fe-089a769b6bfb" } @@ -3132,6 +3278,7 @@ "uuid": "1ea0564b-6e88-456e-a796-4620d57b8771" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "a9e657da-8f33-425a-b2ab-dca9d1337bf3" } @@ -3151,6 +3298,7 @@ "uuid": "df590853-ce16-4ddf-bbe9-a912695eae17" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "233a1b84-3ab6-4899-9b41-d9177356c175" } @@ -3170,6 +3318,7 @@ "uuid": "0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "feeeaa05-5c75-4a06-b5be-ed8bf3ecd773" } @@ -3189,6 +3338,7 @@ "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "63e9a41c-ee85-43c1-b550-3ca8ce7c0986" } @@ -3208,6 +3358,7 @@ "uuid": "5cb7ff5e-ec53-4df8-b59d-a1419190a6cf" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "39f6823f-ca35-413c-ad64-31529710cf3c" } @@ -3227,6 +3378,7 @@ "uuid": "0bf6170c-50d7-4600-96fe-2d1af93f173a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "ef5ddbb5-3e37-4806-b863-9369294dc07a" } @@ -3246,6 +3398,7 @@ "uuid": "c85ea1d9-e28d-46c5-abd0-c053858770e0" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "f4c7c283-b412-4acc-b2f5-0339f946ff3d" } @@ -3265,6 +3418,7 @@ "uuid": "91f9622a-03b4-47b0-b380-5f6d64c13b5d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "91d7c77f-6cb0-4f1d-92ea-03965a296cc6" } @@ -3284,6 +3438,7 @@ "uuid": "c0bfd081-7859-4ed5-aa4c-c1f547dab8f3" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "a274d960-197e-4045-99d3-9919cfa90e6e" } @@ -3303,6 +3458,7 @@ "uuid": "080f9ea4-1d87-4691-adb7-3875a7708555" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "46fa9ff8-5758-41c3-b0aa-fefd075eb739" } @@ -3352,6 +3508,7 @@ "uuid": "ffc5aa7a-c339-4583-a586-3e8b1329d16d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "8898f93b-9e3f-4143-bb78-fd0afd4c4ee0" } @@ -3371,6 +3528,7 @@ "uuid": "2d67627b-372c-46af-b015-6c95bd027664" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "0980d65e-bf37-40c7-a59c-5a0c80795211" } @@ -3390,6 +3548,7 @@ "uuid": "be628028-f41d-4ace-abf3-f7f38ecb2e01" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "2f450b24-782a-428f-80ff-9d762e22e44c" } @@ -3409,6 +3568,7 @@ "uuid": "474fed30-921a-4795-8999-2310521c64c5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "7faf15d0-6890-4cde-919e-1b720d5bfc0a" } @@ -3428,6 +3588,7 @@ "uuid": "b912e8ba-ed77-4179-9b80-7448f9e37193" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "2473ee91-ecb3-414d-ac05-8b040aee3283" } @@ -3447,6 +3608,7 @@ "uuid": "05638159-aaf7-4f3e-849e-a46e80cd9ee6" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "78f628a8-2d9f-4532-8502-bf389ec8ae7d" } @@ -3466,6 +3628,7 @@ "uuid": "fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "8cdcca2d-71d7-4a08-b7a0-072e954980fe" } @@ -3485,6 +3648,7 @@ "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "32ee4548-9a32-476b-a245-f0af6c701fdb" } @@ -3504,6 +3668,7 @@ "uuid": "12d86845-fd54-4d30-aac8-bb9451560ba5" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "1f898f83-cd72-4bf1-bd66-ee1486a0f70d" } @@ -3523,6 +3688,7 @@ "uuid": "e527a3bd-3543-4b40-8a9c-eb465695bdb9" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "2287f92f-6851-4f5f-b48c-3a43067a7a08" } @@ -3542,6 +3708,7 @@ "uuid": "18265c0a-e466-4575-a364-3dfda9e71bd4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "ed68aade-7d0a-4029-bf17-9a3b88f08ceb" } @@ -3561,6 +3728,7 @@ "uuid": "ae071768-dcdd-4e30-8f72-d066abac97af" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "aa502b60-e84f-4a35-910f-de28016d44fc" } @@ -3580,6 +3748,7 @@ "uuid": "fbaaff02-da93-4f45-830a-5fc449a58f0b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "eeb7a71b-1a59-4629-a1fd-4fe9bae6d3db" } @@ -3599,6 +3768,7 @@ "uuid": "9ae063c9-5817-45b4-9f57-4b2196c845b9" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "10c0a8e7-8496-4421-bfa0-cc41af6271d7" } @@ -3648,6 +3818,7 @@ "uuid": "3a434405-c4b0-40ef-b383-7cb9a9b60cab" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "c826bbb3-badb-48a1-becf-86f5f395eef7" } @@ -3667,6 +3838,7 @@ "uuid": "779ec441-475d-41de-b207-3e139c7c3168" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "eed8370d-a367-4333-ba69-56843a7657ba" } @@ -3686,6 +3858,7 @@ "uuid": "5fa7110f-0c33-4139-8277-eff40921939e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "7b52a8c6-67b3-4d8c-b506-aa5eeababdfb" } @@ -3705,6 +3878,7 @@ "uuid": "a81bfdd6-4b80-4f1a-922d-2f6e04c27e01" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "670788fe-2614-4673-bda2-681622680109" } @@ -3724,6 +3898,7 @@ "uuid": "7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "906889fa-ad69-4129-978c-23ea12d2b362" } @@ -3743,6 +3918,7 @@ "uuid": "0fb76488-9965-4cf9-878f-ceed7fc2be43" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "0b09ae9a-7aa8-4b63-b6c4-4317b03dc3ff" } @@ -3762,6 +3938,7 @@ "uuid": "5f971453-aa30-4c1f-8cbc-be45ff042fcd" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "02b7bf12-ff14-4829-aa9b-52c3033b0652" } @@ -3781,6 +3958,7 @@ "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "a6344998-b1e8-4651-a4c9-b1b2aa22d48b" } @@ -3800,6 +3978,7 @@ "uuid": "3c6d42c9-4cba-4373-a61c-c8617c509f92" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "2a29020c-1524-4b9b-a249-25b9927d4a54" } @@ -3819,6 +3998,7 @@ "uuid": "a13d5f15-e4cc-4f7c-928f-aaccbf0d590e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "7606b799-458c-466e-96c6-a0a7e949a83c" } @@ -3838,6 +4018,7 @@ "uuid": "0a4eb3af-d067-4d9f-af91-66c676e49e26" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "aa82e21e-e5a2-4bcd-a63d-a2d76c467ac7" } @@ -3857,6 +4038,7 @@ "uuid": "0d93ff9f-63e8-4caf-9e7b-714e56d968d4" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "bdb3a49e-331e-44b9-96e2-4f1dccdae565" } @@ -3876,6 +4058,7 @@ "uuid": "abd44b32-b837-4e11-95c7-4ba1c34db44b" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "c53a7f46-12aa-48c9-afdf-20e7a26bbb09" } @@ -3895,6 +4078,7 @@ "uuid": "7c819391-d74c-4326-ae0d-fe3534eb44e3" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "ee6b1d77-41ce-4c87-9d95-098f5fc66da9" } @@ -3944,6 +4128,7 @@ "uuid": "9149371a-1978-4136-a89c-8895edd35e7d" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 245, 251)", "uuid": "3f70bddc-f8e3-41a1-a68e-9500ac9a2474" } @@ -3963,6 +4148,7 @@ "uuid": "f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 241, 250)", "uuid": "074993b8-2652-448c-a6ca-b18a39176ed9" } @@ -3982,6 +4168,7 @@ "uuid": "673ab9b4-e296-4472-b0b5-15adf9f1f762" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(233, 238, 248)", "uuid": "04b09fbb-08cb-4fe3-a287-d7de2bf39312" } @@ -4001,6 +4188,7 @@ "uuid": "60560de2-28e6-44b4-bcff-f357fe13a4a7" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(226, 232, 247)", "uuid": "41d578d1-c853-4360-95e9-b94ad61e7786" } @@ -4020,6 +4208,7 @@ "uuid": "830123a6-0e42-4c4f-9b20-2f4204d37af8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(216, 225, 244)", "uuid": "0734c859-3e4c-4974-98e2-700c49c69bcd" } @@ -4039,6 +4228,7 @@ "uuid": "e6b14a1d-e26e-41c4-b386-7fb3f95b8c93" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(203, 215, 241)", "uuid": "e70126f5-e8d6-47e2-9737-0dbb17655b1f" } @@ -4058,6 +4248,7 @@ "uuid": "11055a6b-7e81-4b59-9feb-8b0b6352be07" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 205, 237)", "uuid": "e5ffefaa-72d6-444d-8f9f-3fb08a9f2480" } @@ -4077,6 +4268,7 @@ "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(173, 192, 233)", "uuid": "6dca10b8-2ed2-463c-82f5-fad66a833675" } @@ -4096,6 +4288,7 @@ "uuid": "fa5e523e-7ee3-46d0-971f-4ee95c7222b8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 177, 227)", "uuid": "991792f1-03ed-494b-ada7-1beb965e39c9" } @@ -4115,6 +4308,7 @@ "uuid": "bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(133, 161, 219)", "uuid": "8a8e447b-6b31-4758-b59e-51acad7c9210" } @@ -4134,6 +4328,7 @@ "uuid": "548a74eb-4401-44f4-85b4-921287d84ac9" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 145, 211)", "uuid": "9784741b-612e-4986-952b-a102c04e2afd" } @@ -4153,6 +4348,7 @@ "uuid": "9c634688-1ad5-438b-bd44-a92c64ef9934" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 130, 201)", "uuid": "3c632a35-bf86-4182-9475-84854a20f15a" } @@ -4172,6 +4368,7 @@ "uuid": "6c441ca7-0294-462f-ac18-7b28ff20d7ff" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(82, 117, 192)", "uuid": "030c6431-3ea5-429b-a492-1a01dd396d44" } @@ -4191,6 +4388,7 @@ "uuid": "15f36ded-01af-4c5d-8b11-45523e7d908e" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(74, 109, 184)", "uuid": "b6dd1b22-5f8f-46d8-924e-4ce02ad5a99f" } diff --git a/packages/tokens/src/icons.json b/packages/tokens/src/icons.json index bc365ebb..3c889fc3 100644 --- a/packages/tokens/src/icons.json +++ b/packages/tokens/src/icons.json @@ -26,6 +26,7 @@ "uuid": "1bac9a3f-4bc8-4a4d-8dfd-53c542b1d1d8" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-900}", "uuid": "20880dfd-57dc-486d-b0dd-c44002f340e3" } @@ -46,6 +47,7 @@ "uuid": "260ff567-2bdb-48cc-9576-f4f7629d3a8f" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-900}", "uuid": "d6852796-baaa-4f95-9ce7-cc2fd5a829f1" } @@ -66,6 +68,7 @@ "uuid": "a60f2744-ad15-4cf7-b9dc-89ca307ed444" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-900}", "uuid": "d524a471-2dce-4497-a650-30c2d6641eec" } @@ -86,6 +89,7 @@ "uuid": "5ebf8291-23f8-4806-865d-4ebab38ff03c" }, "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-400}", "uuid": "4a1eeded-e467-46be-a787-78555b2fe353" } diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 9962c0a2..d3e6b13c 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1473,6 +1473,7 @@ }, "meter-default-width": { "component": "meter", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{meter-width}", "deprecated": true, "deprecated_comment": "Token renamed, use `meter-width`", @@ -1851,13 +1852,16 @@ }, "slider-control-height-small": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "cf748652-099a-4022-ae68-0e5dcb8eff9b", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "19adc707-4fc6-40f0-a972-340d6c935908", "deprecated": true @@ -1866,13 +1870,16 @@ }, "slider-control-height-medium": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "dd3b649d-12f8-427b-95a6-a4964d92d3b0", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "7306fc00-67fd-4ccd-aec3-7a14e092da5e", "deprecated": true @@ -1881,13 +1888,16 @@ }, "slider-control-height-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", "uuid": "320abda8-9fe8-4f78-87d6-3f1be921e880", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", "uuid": "0926d8f3-bdd6-4dde-89d0-6d5d7ab9f094", "deprecated": true @@ -1896,13 +1906,16 @@ }, "slider-control-height-extra-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "fd74d5a5-b966-4d26-abca-58c7a21f8136", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", "uuid": "c5d47ebf-c83f-43c3-b2f2-f4d51c40960b", "deprecated": true @@ -2045,13 +2058,16 @@ }, "slider-bottom-to-handle-small": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "bf2e4550-f97e-4bd2-91e8-b0ddb5a8abe2", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "3b96ab4f-6628-4ebd-aba8-2837fce04709", "deprecated": true @@ -2060,13 +2076,16 @@ }, "slider-bottom-to-handle-medium": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "238ebdc2-e51c-459d-8cc7-abfeafed6451", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", "uuid": "5030babb-0017-4784-84ad-d3aaacf6fa05", "deprecated": true @@ -2075,13 +2094,16 @@ }, "slider-bottom-to-handle-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", "uuid": "be9aed61-c7a1-4dce-80a7-07c9ecef1fd9", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "3915ff73-11dd-4389-8d81-2f540ab060f4", "deprecated": true @@ -2090,13 +2112,16 @@ }, "slider-bottom-to-handle-extra-large": { "component": "slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "155b6273-1661-4ef5-85c0-a1688ce1ee72", "deprecated": true }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "e04d9975-4a54-416b-b5fa-87f3ae930204", "deprecated": true @@ -2239,17 +2264,13 @@ }, "picker-border-width": { "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "spectrum": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-100}", - "uuid": "69c28762-f456-4641-b6ce-7cb295e3a27d" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{border-width-100}", + "uuid": "69c28762-f456-4641-b6ce-7cb295e3a27d" }, "picker-end-edge-to-disclousure-icon-quiet": { "component": "picker", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{picker-end-edge-to-disclosure-icon-quiet}", "deprecated": true, "deprecated_comment": "Use `picker-end-edge-to-disclosure-icon-quiet` instead", @@ -3125,6 +3146,7 @@ }, "alert-banner-to-top-workflow-icon": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{alert-banner-top-to-workflow-icon}", "deprecated": true, "deprecated_comment": "Introduced as an error. Use alert-banner-top-to-workflow-icon instead", @@ -3148,6 +3170,7 @@ }, "alert-banner-to-top-text": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{alert-banner-top-to-text}", "deprecated": true, "deprecated_comment": "Introduced as an error. Use alert-banner-top-to-text instead", @@ -3171,6 +3194,7 @@ }, "alert-banner-to-bottom-text": { "component": "alert-banner", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{alert-banner-bottom-to-text}", "deprecated": true, "deprecated_comment": "Introduced as an error. Use alert-banner-bottom-to-text instead", From 1c0f208548a332cff5ec9d2748bc7bf6dd27f78e Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Dec 2023 17:35:33 -0700 Subject: [PATCH 041/295] fix: added wireframe values for all new colors including placeholders --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/release.yml | 2 +- .moon/toolchain.yml | 2 +- package.json | 16 +- packages/tokens/src/color-aliases.json | 119 +- packages/tokens/src/color-palette.json | 535 ++++++++ pnpm-lock.yaml | 1583 ++++++++++++------------ 7 files changed, 1388 insertions(+), 871 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 60c8a3b7..7a9626d4 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.11.0 + version: 8.12.1 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run site:export diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6bd1d4fb..c3b234f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.11.0 + version: 8.12.1 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run :build --query "projectSource~packages/*" diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 713524ae..f6faa6ad 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "8.11.0" + version: "8.12.1" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index 2cbdb726..5eaaa94e 100644 --- a/package.json +++ b/package.json @@ -22,17 +22,17 @@ }, "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { - "@changesets/cli": "^2.26.2", - "@commitlint/cli": "^17.6.6", - "@commitlint/config-conventional": "^17.6.6", - "@moonrepo/cli": "^1.17.3", - "ava": "^5.3.1", + "@changesets/cli": "^2.27.1", + "@commitlint/cli": "^18.4.3", + "@commitlint/config-conventional": "^18.4.3", + "@moonrepo/cli": "^1.18.1", + "ava": "^6.0.1", "husky": "^8.0.3", - "lint-staged": "^13.2.3", - "prettier": "^3.0.0" + "lint-staged": "^15.2.0", + "prettier": "^3.1.1" }, "engines": { "node": "18.13.0" }, - "packageManager": "pnpm@8.11.0" + "packageManager": "pnpm@8.12.1" } diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 7ebb12e6..0f6c91f8 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -78,7 +78,7 @@ "uuid": "cf1299aa-86c7-4523-b6ae-6de597ac3712" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "6945b976-83b4-4aec-a687-cb461bc9fe70" } @@ -98,7 +98,7 @@ "uuid": "da228344-5b83-4e08-96d2-089068138ba0" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "3ccfa493-5375-492a-93b0-7418655c3b56" } @@ -118,7 +118,7 @@ "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-50}", "uuid": "6556a64d-5944-4d65-a6cc-9c6121044ac7" } @@ -178,7 +178,7 @@ "uuid": "bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-600}", "uuid": "7a4f50a8-4e1b-49b4-b94a-6282c63bd5ea" } @@ -198,7 +198,7 @@ "uuid": "2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-700}", "uuid": "0e32d8e6-2f91-4d56-a717-8bfc17c0a2c6" } @@ -218,7 +218,7 @@ "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "a4cbab05-1225-45a3-b612-194df4ab85ae" } @@ -238,7 +238,7 @@ "uuid": "a1e08db6-3a72-4b8e-9475-b54a7b9be506" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-700}", "uuid": "ea153fd0-f7f2-41ab-8f65-8181b26a939b" } @@ -263,7 +263,7 @@ "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-900}", "uuid": "ebd98dbc-0949-4fca-8fe1-4cd7d610e7a5" } @@ -283,7 +283,7 @@ "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "17ce0649-1b72-4e06-96a3-5137c8688233" } @@ -303,7 +303,7 @@ "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1100}", "uuid": "8d496041-f129-4794-9d8b-e64bb685b0c1" } @@ -323,7 +323,7 @@ "uuid": "af809118-7a97-409c-925f-8d7636a791c8" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-1000}", "uuid": "98781a4d-1bcc-4ede-8d40-37c76e445b3d" } @@ -348,7 +348,7 @@ "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-900}", "uuid": "d3fda217-e0cb-4dd8-8d13-a22bcc648f4d" } @@ -368,7 +368,7 @@ "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-1000}", "uuid": "5d0b457c-b59e-4cd6-b8c5-fa934e9a56ae" } @@ -388,7 +388,7 @@ "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-1100}", "uuid": "e210cabe-f803-4a46-8da7-e35e003140d6" } @@ -408,7 +408,7 @@ "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-1000}", "uuid": "1be73e4a-0817-435d-910c-0b0fc1825cbb" } @@ -428,7 +428,7 @@ "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-900}", "uuid": "4720ac8b-47ae-443a-b393-89f08a1b52c6" } @@ -448,7 +448,7 @@ "uuid": "648da867-549e-47c3-9312-e9cfda288705" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "8c39a7fc-c904-4cf7-8ccc-be459d1a9c0e" } @@ -468,7 +468,7 @@ "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1100}", "uuid": "da8b206c-6b7c-4994-be3b-6e99e813ad30" } @@ -488,7 +488,7 @@ "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-1000}", "uuid": "3791aad5-91cc-4aed-af41-8033afe33bf6" } @@ -508,7 +508,7 @@ "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-900}", "uuid": "87a32594-ddb7-48f8-a322-6dc0b761dc05" } @@ -528,7 +528,7 @@ "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-1000}", "uuid": "e6572844-3118-460c-824f-b11b82e27180" } @@ -548,7 +548,7 @@ "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-1100}", "uuid": "18af3356-ca03-4a36-bd15-b59bf11ee776" } @@ -568,7 +568,7 @@ "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-1000}", "uuid": "2ca6e211-63f7-4c0e-b089-03905788c7f1" } @@ -586,6 +586,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{notice-color-600}", "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{notice-color-1100}", + "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" } } }, @@ -618,7 +623,7 @@ "uuid": "fa68c3bf-88b5-4653-a42d-7de5ce7cec3d" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-600}", "uuid": "6a74ab0a-e481-4d38-9db7-ea8ef885940b" } @@ -638,7 +643,7 @@ "uuid": "ce074ee2-a2a2-4da3-a99e-603524193d46" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-1100}", "uuid": "4b943658-87e5-4026-87de-0265d1f48a49" } @@ -658,7 +663,7 @@ "uuid": "3e9a6c2a-bd09-4d28-a95c-920109c1852f" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-1100}", "uuid": "55baa188-9e75-4e31-b2db-729dd47ed1dd" } @@ -678,7 +683,7 @@ "uuid": "61c5e375-bff3-479f-8c32-2d2a5edb906c" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-1100}", "uuid": "08e44ba2-3627-4ce0-b8f5-eea6ce277517" } @@ -698,7 +703,7 @@ "uuid": "5df9a029-dc91-4078-a198-574486948834" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{chartreuse-1100}", "uuid": "ebb64096-1155-4376-a13c-4a5db968253a" } @@ -718,7 +723,7 @@ "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{celery-1100}", "uuid": "3e44abd8-ea12-4c0a-9007-4a6edaa3b962" } @@ -738,7 +743,7 @@ "uuid": "49170573-9c22-42e1-a1ce-cd3d3972ddb7" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1100}", "uuid": "d9b7a966-e6c6-43a9-b2bd-6b72ff31aed7" } @@ -758,7 +763,7 @@ "uuid": "9a727140-328d-430f-9b10-8965eebe77d1" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-1100}", "uuid": "4152095a-615b-4562-b183-78f765f6b3b0" } @@ -778,7 +783,7 @@ "uuid": "543af64f-9c28-4e88-8597-3259cd7ebf1f" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-1100}", "uuid": "64bd4cb9-d698-4fb0-8b56-c0c519245549" } @@ -798,7 +803,7 @@ "uuid": "83591a94-83e1-4557-8f50-cc1fe9793b76" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-1100}", "uuid": "dd76a630-e1fd-4831-94db-8622af24f4da" } @@ -818,7 +823,7 @@ "uuid": "b7f5a677-4e89-40e1-8324-7619a628ce8b" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{indigo-1100}", "uuid": "71e2c0b9-4513-4679-9b97-ef1c345ec343" } @@ -838,7 +843,7 @@ "uuid": "e577d521-0271-4226-a094-624b35a05826" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{purple-1100}", "uuid": "cde24ea8-c181-42cb-9f71-0675628c5338" } @@ -858,7 +863,7 @@ "uuid": "7b4d71d3-ad78-4e02-a48e-fa79f40854a2" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{fuchsia-1100}", "uuid": "5eb86ed6-384e-4e72-a615-8bab097bbec8" } @@ -878,7 +883,7 @@ "uuid": "5867d764-d909-4490-b947-533e89997d0a" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{magenta-1100}", "uuid": "299e780b-ddb9-444b-b416-2f33c9929be0" } @@ -1023,7 +1028,7 @@ "uuid": "35ef6675-7e66-4ef5-8c8d-e8e70939b224" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-500}", "uuid": "96d8bbe9-5fc6-4260-8cb3-5888836c4708" } @@ -1043,7 +1048,7 @@ "uuid": "8ccd197f-fc8e-4d31-866c-2b96049eea89" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{accent-color-900}", "uuid": "a65c3f83-e46a-4d31-a6f0-de3b87479ea3" } @@ -1063,7 +1068,7 @@ "uuid": "fd64c9ca-6ad7-415c-b0b8-2579399e33a5" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-color-900}", "uuid": "405f9ef3-b882-4c72-9f5e-47739a8ae9d6" } @@ -1083,7 +1088,7 @@ "uuid": "70cb0316-5b7a-416c-bf93-7d8885c4fce6" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-900}", "uuid": "ae218610-35ca-478d-8277-f032b1f85737" } @@ -1103,7 +1108,7 @@ "uuid": "2759c912-6385-40e4-9ed9-ff2e11815b4d" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{notice-color-900}", "uuid": "0cbb9365-59d0-4514-a352-b5379733c360" } @@ -1123,7 +1128,7 @@ "uuid": "25e8289f-6c82-4485-8920-a187f790cd47" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{positive-color-900}", "uuid": "cb447264-e862-4880-b9a3-f23028c836ac" } @@ -1143,7 +1148,7 @@ "uuid": "0f7a39c2-3ee7-4ff0-873f-334c81054b77" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-500}", "uuid": "25d6638d-5597-4307-9a90-5ea276ce68c7" } @@ -1163,7 +1168,7 @@ "uuid": "870f90ab-7f3e-41b6-9c11-59e9c4ff82c6" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-900}", "uuid": "5fa19855-1c32-4fa7-9363-8edea0bad4e2" } @@ -1183,7 +1188,7 @@ "uuid": "e7bf9977-2edf-48bc-8099-ad95e57b55b1" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{orange-900}", "uuid": "535ebae4-5308-4132-9ba7-2ead58c7af2d" } @@ -1203,7 +1208,7 @@ "uuid": "4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{yellow-900}", "uuid": "24e58c48-8597-40f1-96e0-90ae08910665" } @@ -1223,7 +1228,7 @@ "uuid": "a46d8e05-4f56-4b46-a279-0164abfa42e8" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{chartreuse-900}", "uuid": "cea3da59-71a3-4ac6-b475-877ea2444839" } @@ -1243,7 +1248,7 @@ "uuid": "37c1311b-29ed-44ab-b656-a7538726ad77" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{celery-900}", "uuid": "88890424-a280-473b-a529-027e7ac828ac" } @@ -1263,7 +1268,7 @@ "uuid": "1219770d-543d-4216-9e87-c158f8a74df6" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-900}", "uuid": "b2ca6377-9a7b-467f-8352-bda31fd4abbf" } @@ -1283,7 +1288,7 @@ "uuid": "736e4768-7944-40ec-a412-4cd36299e03d" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-900}", "uuid": "7f641817-9a7d-4625-b534-3b7e38bb5eae" } @@ -1303,7 +1308,7 @@ "uuid": "091a2073-baa0-4cc6-b943-9dddc285ad62" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-900}", "uuid": "cf213ea9-796e-4263-8866-b16f66b95e97" } @@ -1323,7 +1328,7 @@ "uuid": "63fe16ed-70fa-4eaf-918c-f642ff69ce05" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-900}", "uuid": "4d8f8afe-c348-459d-9006-bc60bd53df84" } @@ -1343,7 +1348,7 @@ "uuid": "584ccbd4-3243-4041-b665-e2342d2b26e8" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{indigo-900}", "uuid": "7c047042-0227-420d-b78f-193d4534b218" } @@ -1363,7 +1368,7 @@ "uuid": "0ee2957b-c401-4106-8ff3-9de9fa544a03" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{purple-900}", "uuid": "4b7780b2-d488-4446-88f8-cab0fd27bcd5" } @@ -1383,7 +1388,7 @@ "uuid": "38e60263-cb08-4090-a653-5acbd1664ae0" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{fuchsia-900}", "uuid": "66316379-927a-4e47-a5dd-84eb0c82eba8" } @@ -1403,7 +1408,7 @@ "uuid": "178e4bc6-6986-4e77-aab0-78dbe66f8e6f" }, "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{magenta-900}", "uuid": "4de213eb-5f57-45a2-bea7-5f1b402b81ff" } diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 576ef9dc..3e74a8a9 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -391,6 +391,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 0, 0)", "uuid": "457fbeb8-56cd-4f3c-9950-f5e01f83f07c" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "e804baf9-ae2c-4574-96d9-10cd5253fe47" } } }, @@ -686,6 +691,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(14, 24, 67)", "uuid": "a24a53d4-d3c3-4d84-b6eb-048326659524" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "07862296-803e-42fc-8ba1-ff8c25e76f66" } } }, @@ -701,6 +711,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(7, 11, 30)", "uuid": "29610c54-a311-470d-ad77-c28c000730e3" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "9d380e6c-f6e9-433d-a8d8-f2432181736c" } } }, @@ -996,6 +1011,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(59, 11, 4)", "uuid": "45ef3c1f-fb24-4a0e-98c3-69c6027eb709" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "421ec0d6-4d71-4c2d-8a39-19e3700451f0" } } }, @@ -1011,6 +1031,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(29, 5, 2)", "uuid": "3d8a70af-6e0b-449f-98e3-515498bf00ca" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "50807cbc-ade6-4f6d-8711-f569a52adaf8" } } }, @@ -1306,6 +1331,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 18, 0)", "uuid": "8aa75bbd-fd78-463d-a321-8672e5a537d6" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "ea973b33-e10f-44b6-a621-92c752edb8af" } } }, @@ -1321,6 +1351,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(25, 8, 0)", "uuid": "e99566f3-7b29-4c75-a4bd-ce17c0d84c3f" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "c93608b1-700d-496c-90c4-298870776956" } } }, @@ -1616,6 +1651,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(40, 25, 0)", "uuid": "d8eebb60-7b0c-496e-ae04-1f1fc61f3013" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "8be0ad1a-0cdf-409d-953f-0a203282e1d9" } } }, @@ -1631,6 +1671,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(18, 11, 0)", "uuid": "ada313e4-768c-4fd0-b93c-b6f6d2a50f68" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "15f47c52-fa9c-4982-ad9c-684024a9a667" } } }, @@ -1926,6 +1971,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(25, 30, 0)", "uuid": "63f13dcb-6d61-4ff0-9999-33e16d30e5d6" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "75e5c281-4c83-4ffe-a1de-aedfa65be894" } } }, @@ -1941,6 +1991,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(11, 14, 0)", "uuid": "01b68e1d-06d7-44a3-91e6-08e17353008c" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "a8d9965e-14d9-4015-9a6f-421400c6d011" } } }, @@ -2236,6 +2291,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 33, 0)", "uuid": "ca5c139e-1784-4139-89a3-281a83dbeb99" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "fe522078-7e21-447e-bd4f-e5f2ea6845d9" } } }, @@ -2251,6 +2311,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(4, 15, 0)", "uuid": "56e0d793-ce33-4da3-8e67-d7df10b2cd89" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "99fb92f6-7186-4432-99ec-d5fa5b35c5be" } } }, @@ -2546,6 +2611,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 33, 25)", "uuid": "f853b643-e7bf-4af6-81f4-bc6de9007f3c" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "490cf084-b56e-4464-8e38-1bb15458213e" } } }, @@ -2561,6 +2631,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 15, 12)", "uuid": "2b4c3a1a-8ea4-4149-862d-801b559e4f65" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "96e3e83b-1878-460e-9bc2-aa25a36ff887" } } }, @@ -2856,6 +2931,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 33, 29)", "uuid": "4cbacecc-89c9-482d-b3f5-7d8f85f0a3f1" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "fd0d5cda-892b-4628-a125-353dcd123987" } } }, @@ -2871,6 +2951,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 15, 14)", "uuid": "ebbfe9f4-5c24-46b2-983a-98570ed5ec78" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "6685e580-982d-4f86-800a-19797f1675af" } } }, @@ -3166,6 +3251,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 31, 43)", "uuid": "4d029c4c-4658-4207-b43c-d69b138b25a3" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "6aa5f844-ba8d-40a3-86ec-109e9430ace5" } } }, @@ -3181,6 +3271,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 14, 20)", "uuid": "e6cd6257-d8de-428e-8ebf-c1c812031e5e" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "9bf84aeb-6822-40c9-b027-8db8a49fd54b" } } }, @@ -3476,6 +3571,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(31, 0, 98)", "uuid": "2653368d-d90b-4a5a-97f3-8380fe2e7551" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "72c07c8d-19f8-44de-8e73-98997502cf86" } } }, @@ -3491,6 +3591,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(17, 0, 54)", "uuid": "6a0ad8e2-b574-4148-b151-e0607c4d5317" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "2f76990f-4bfd-4b4d-b063-aa374ea9df83" } } }, @@ -3786,6 +3891,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(44, 0, 84)", "uuid": "f43e7a56-8663-41a9-b688-5b6471e3fcff" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "05c1a879-e716-4f67-97ab-7f524b713815" } } }, @@ -3801,6 +3911,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(23, 0, 45)", "uuid": "8adc4493-0971-4b9c-bff7-c5ce8100fc43" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "1d742643-035d-4966-aba9-2be2bbfb793e" } } }, @@ -4096,6 +4211,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(54, 0, 66)", "uuid": "afdfcd22-19fd-4306-a069-c8f9cd0d4f2d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "a8afc139-5eeb-4b56-9acd-62433f802563" } } }, @@ -4111,6 +4231,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(29, 0, 35)", "uuid": "38117e2a-efd1-4edd-8284-6fb0bc7482cc" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "cd37d695-d1b0-4322-92f7-9bc0a347aa90" } } }, @@ -4406,6 +4531,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(64, 0, 22)", "uuid": "70dd220b-46cd-4975-ad8b-5ca31f7c33dc" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "950ba124-e6b5-47b6-b1b8-31960f7cc380" } } }, @@ -4421,6 +4551,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(35, 0, 12)", "uuid": "fd25d1ee-438b-49a3-93d8-1d59b2a06f72" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "2fc90f48-a54e-4aae-9b9f-aa3c4d7e55de" } } }, @@ -4436,6 +4571,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 246, 252)", "uuid": "89d9aa85-aef2-47fa-8939-e6774f5fa2de" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(242, 245, 251)", + "uuid": "4c01ddf8-d689-4433-826c-75b33bc2214d" } } }, @@ -4451,6 +4591,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 232, 247)", "uuid": "d80ed3c8-4db1-48e7-bd16-1d34580a3108" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(237, 241, 250)", + "uuid": "d4e972fb-fbd5-4b37-bd20-9487ed47d243" } } }, @@ -4466,6 +4611,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 211, 240)", "uuid": "3041a3b2-4275-41fb-94ff-607108d94df3" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(233, 238, 248)", + "uuid": "83e9b8e8-ff2a-49fc-9ac8-349c694c1aec" } } }, @@ -4481,6 +4631,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 181, 230)", "uuid": "c86af74f-6fe2-41a1-a934-2589f56fd041" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(226, 232, 247)", + "uuid": "ba838eaa-0dc0-4bbd-be25-300e8bd89272" } } }, @@ -4496,6 +4651,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 148, 219)", "uuid": "e526f977-736d-473b-b851-475fd08f5276" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(216, 225, 244)", + "uuid": "356a4b99-8ffc-4d11-b56e-a88c5e70194d" } } }, @@ -4511,6 +4671,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 103, 204)", "uuid": "d383f12e-48f4-446c-abb4-595a50fd29a2" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(203, 215, 241)", + "uuid": "527b5dcd-0896-4dbc-82f9-866297227eb0" } } }, @@ -4526,6 +4691,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(242, 76, 184)", "uuid": "91406d69-6d53-4231-be9e-e90d8ad0cc51" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(190, 205, 237)", + "uuid": "873c22cd-488b-45d4-a79d-0473fc4f3c7f" } } }, @@ -4541,6 +4711,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(228, 52, 163)", "uuid": "af67d2bf-e92e-42f2-93d6-2f0b45fba0ac" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(173, 192, 233)", + "uuid": "b50fbb92-1897-469d-a867-d9f6e5070c2e" } } }, @@ -4556,6 +4731,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(206, 42, 146)", "uuid": "a53ae96d-64bc-4baa-b51f-4490242047df" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(154, 177, 227)", + "uuid": "85c314fe-cdfe-4542-856f-f58acfad1aee" } } }, @@ -4571,6 +4751,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(176, 31, 123)", "uuid": "8d8448ee-5b8d-4953-a2f8-ba34a3c7f796" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(133, 161, 219)", + "uuid": "deac6200-0e75-47d5-9073-3aaa390f1cd1" } } }, @@ -4586,6 +4771,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(152, 22, 104)", "uuid": "889ea4ff-1362-474e-ab12-15eb08bec89b" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(114, 145, 211)", + "uuid": "b9911ab3-fa6b-42e7-9247-c341b68ee151" } } }, @@ -4601,6 +4791,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 12, 85)", "uuid": "ac7fa4bb-da89-44ef-95d0-5d15fd8df976" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(96, 130, 201)", + "uuid": "4c73d77d-95e3-4311-b644-2b55ad4552cf" } } }, @@ -4616,6 +4811,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(105, 3, 68)", "uuid": "a10ffb76-fc1a-4f2f-ac43-dace44726820" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(82, 117, 192)", + "uuid": "efa5d789-8e54-493d-9787-8e5dce4180a0" } } }, @@ -4631,6 +4831,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(83, 0, 53)", "uuid": "8c14e640-5df8-4753-8a47-295c1aee63c5" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(74, 109, 184)", + "uuid": "4d10b352-648d-404a-a863-3fd3308b2696" } } }, @@ -4646,6 +4851,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(62, 0, 39)", "uuid": "886065e2-949f-4f4c-9aa9-0a843c3d8cf2" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "13813529-7eb8-4171-a40b-a719c430299b" } } }, @@ -4661,6 +4871,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(33, 0, 21)", "uuid": "0612a373-58a7-4393-b789-7dcf8e388b2c" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "44800628-6a86-49de-b44f-256ca36c4127" } } }, @@ -4676,6 +4891,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(238, 251, 251)", "uuid": "8e69d558-2c95-496f-8244-56c1abecef5f" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(242, 245, 251)", + "uuid": "094b2708-cb1f-4936-96ee-503cf113ab7a" } } }, @@ -4691,6 +4911,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(209, 245, 245)", "uuid": "2dd6c94d-b55e-491e-91a9-bf9b4e3ceb54" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(237, 241, 250)", + "uuid": "e5a0aca5-4d22-4d1a-9732-6e0e2c98e72d" } } }, @@ -4706,6 +4931,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(169, 236, 237)", "uuid": "7eda1d2a-4c4a-495c-8b2f-c663be8c22f8" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(233, 238, 248)", + "uuid": "c4877ffd-985b-4260-b1c3-3ac37392315a" } } }, @@ -4721,6 +4951,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(111, 221, 228)", "uuid": "7a80623f-07eb-426a-9a64-ced6e3d09df1" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(226, 232, 247)", + "uuid": "f136369b-3ac7-4041-871e-90c90f3da3a9" } } }, @@ -4736,6 +4971,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(39, 202, 216)", "uuid": "1fae7edd-0b41-4ae6-a436-c1e5ecda3e3a" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(216, 225, 244)", + "uuid": "4320a8e7-3509-45c6-b133-02bf0e779a42" } } }, @@ -4751,6 +4991,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(15, 177, 192)", "uuid": "be19fd97-84da-40ed-82a2-1afa75b6f405" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(203, 215, 241)", + "uuid": "1ce42e96-435f-4895-896d-268dcdf16b21" } } }, @@ -4766,6 +5011,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 158, 171)", "uuid": "0a313605-1db7-4801-afac-28aeb30aa005" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(190, 205, 237)", + "uuid": "9ffcdab9-e422-4ece-b292-6b8ce227bef8" } } }, @@ -4781,6 +5031,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(10, 141, 153)", "uuid": "cb62cb21-ce76-4f47-a88d-14682eb6e06d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(173, 192, 233)", + "uuid": "a6548e62-22e6-4089-b098-0a8bb60676ec" } } }, @@ -4796,6 +5051,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(8, 126, 137)", "uuid": "b1e2b910-c19d-4b83-9f49-f9e858ab58b9" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(154, 177, 227)", + "uuid": "2084f7e5-221c-4a4e-96e0-fa0ff2fa40f1" } } }, @@ -4811,6 +5071,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(5, 107, 116)", "uuid": "f46bb42a-00fe-44ae-8421-16fbdbe1a9e3" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(133, 161, 219)", + "uuid": "7c82b1ca-e445-45a0-b7b2-5ed3030e92e7" } } }, @@ -4826,6 +5091,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(3, 90, 98)", "uuid": "7c957f48-f033-4814-a4e0-127e67169771" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(114, 145, 211)", + "uuid": "e3e88d56-d236-41f7-8eaa-3804576b6161" } } }, @@ -4841,6 +5111,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(1, 74, 81)", "uuid": "d85163b6-fbaf-4c49-b61b-f0b7b9529ff7" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(96, 130, 201)", + "uuid": "1ca86f12-0424-40b5-a606-912e2fcc5cc1" } } }, @@ -4856,6 +5131,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 59, 65)", "uuid": "c9ab3575-f393-45db-a92b-07eccd4696bb" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(82, 117, 192)", + "uuid": "07b5d5b0-8952-4901-a0e5-227fa3e1aacf" } } }, @@ -4871,6 +5151,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 44, 49)", "uuid": "6ee374d9-95c4-4e5d-8f4d-fa1912cf6514" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(74, 109, 184)", + "uuid": "81180029-eec8-4d26-9fe0-3966aa372151" } } }, @@ -4886,6 +5171,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 32, 35)", "uuid": "d3e919d4-3777-4dca-93f9-0e04ab00d0dd" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "1162302d-4bcf-478a-a95e-660785220434" } } }, @@ -4901,6 +5191,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 15, 17)", "uuid": "6af4ec29-d7c5-4562-be2c-a838aa919aed" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "21be860b-80bb-40a1-9aaf-20a97b2ddc77" } } }, @@ -4916,6 +5211,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(252, 247, 242)", "uuid": "aa01448b-bf3b-4da2-b483-127a3ed708f7" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(242, 245, 251)", + "uuid": "3d64c998-df63-4695-a1d1-00d78ed2097b" } } }, @@ -4931,6 +5231,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(247, 238, 225)", "uuid": "1b19a7b6-469e-4f5a-b30b-f3f465021d25" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(237, 241, 250)", + "uuid": "5d0e6309-481d-40f9-81b9-7d0bee9cf794" } } }, @@ -4946,6 +5251,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(239, 221, 195)", "uuid": "9f0a77f8-aab8-4942-8119-332b09441939" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(233, 238, 248)", + "uuid": "e710f0e9-90a7-4ed9-8d2b-6a8c9ed778db" } } }, @@ -4961,6 +5271,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(229, 200, 157)", "uuid": "e33616c5-157c-42aa-a349-90d05f50beba" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(226, 232, 247)", + "uuid": "7a9223ac-0dee-4dd5-8b11-b04815683c6b" } } }, @@ -4976,6 +5291,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(214, 177, 123)", "uuid": "5346904d-2c85-4dd5-815c-ea2708a4d380" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(216, 225, 244)", + "uuid": "bca8a6a6-557e-4930-b765-0dcc9867c42a" } } }, @@ -4991,6 +5311,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(190, 155, 104)", "uuid": "970fd8ac-c68b-4789-84a6-1397b2514e2f" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(203, 215, 241)", + "uuid": "ef14139b-0550-4a5a-b2f5-eb787bcf406d" } } }, @@ -5006,6 +5331,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(171, 138, 90)", "uuid": "621aa30e-95de-4b69-814f-821dfe12b78d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(190, 205, 237)", + "uuid": "45f999be-146e-4b0f-97de-ef1f7e82d675" } } }, @@ -5021,6 +5351,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(154, 123, 77)", "uuid": "b15bdc92-c03f-4ad4-a385-110d635e66af" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(173, 192, 233)", + "uuid": "2c0181c8-ef5c-46c8-bc3e-703d08f3692b" } } }, @@ -5036,6 +5371,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(139, 109, 66)", "uuid": "b0445ddb-ec22-4dde-81a1-21ea14ed195a" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(154, 177, 227)", + "uuid": "6756882c-f521-49fc-b7c9-3dc8f4d39d5a" } } }, @@ -5051,6 +5391,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(119, 91, 50)", "uuid": "0dd635ef-0b0a-4914-8900-999ab7ce436e" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(133, 161, 219)", + "uuid": "a2a5c52d-7381-47b8-9b67-5d3c86e8ff21" } } }, @@ -5066,6 +5411,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(103, 76, 35)", "uuid": "d14770ac-d032-4408-b5de-637de47bf151" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(114, 145, 211)", + "uuid": "1c1c2c57-890d-4638-b219-5b5e1953ba57" } } }, @@ -5081,6 +5431,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(88, 61, 21)", "uuid": "1a2cfeec-1d02-4225-a2a1-ecad878a0372" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(96, 130, 201)", + "uuid": "df9afc4f-bb87-4dae-b2b6-f7d27a590593" } } }, @@ -5096,6 +5451,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(70, 49, 17)", "uuid": "88621915-f832-4401-b42f-4026cbf6720c" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(82, 117, 192)", + "uuid": "1e9a6104-d427-4197-8e01-25673c917143" } } }, @@ -5111,6 +5471,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 37, 13)", "uuid": "fa6e22f6-adb1-4123-b685-dd6050b0a248" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(74, 109, 184)", + "uuid": "2ceb2cda-a535-44eb-ae23-b922edcb8bb8" } } }, @@ -5126,6 +5491,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(38, 26, 9)", "uuid": "ddac3cfe-8338-4df5-94c5-baf4e04e6c46" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "19c96dc5-7a37-4381-a7e8-ac1c442afda6" } } }, @@ -5141,6 +5511,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(16, 12, 4)", "uuid": "e2753343-f81b-4677-899c-6dfbcc9378fe" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "cb18b0b7-7ad5-419f-863c-fdbb05c624c3" } } }, @@ -5156,6 +5531,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(247, 247, 247)", "uuid": "e190b39c-3e1f-4ad7-bc70-0b98c1770f61" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(242, 245, 251)", + "uuid": "7e0c8012-9ec4-40c3-a572-dd551627e54f" } } }, @@ -5171,6 +5551,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(239, 239, 239)", "uuid": "f0bae14e-1c9a-4a03-9dbf-dcd3213463c1" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(237, 241, 250)", + "uuid": "240ade94-eb1b-4ddd-b667-7c05af2b196a" } } }, @@ -5186,6 +5571,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(223, 223, 223)", "uuid": "41989dfb-ef46-493d-8b50-d9422b221ee8" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(233, 238, 248)", + "uuid": "da36dc54-21c0-412f-baa1-ae3a2810b926" } } }, @@ -5201,6 +5591,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(204, 204, 204)", "uuid": "4bdcf062-a1b6-4615-ad8e-747082107f44" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(226, 232, 247)", + "uuid": "a52e646b-54c7-419b-850e-1da7abc74dd3" } } }, @@ -5216,6 +5611,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(183, 183, 183)", "uuid": "1bd72e90-6ec1-4a55-beb2-04ad5afd03d5" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(216, 225, 244)", + "uuid": "696e8452-cd1b-4ab8-b9d6-eb2b76bdf020" } } }, @@ -5231,6 +5631,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(160, 160, 160)", "uuid": "1354b7a3-d0b5-4f48-8631-6b4afd7efe4f" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(203, 215, 241)", + "uuid": "b0f8e027-ba0e-4460-8d45-b0ada27327d9" } } }, @@ -5246,6 +5651,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(143, 143, 143)", "uuid": "8c7b40e3-239d-4b57-a846-eb5d9f96615d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(190, 205, 237)", + "uuid": "907d96cc-375b-49a7-abe0-afb229c98474" } } }, @@ -5261,6 +5671,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 128, 128)", "uuid": "bbfb55a6-5bca-424d-8a27-e1e54fff7309" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(173, 192, 233)", + "uuid": "8ed554bc-be40-4ebb-9a83-c85c73c0cb3d" } } }, @@ -5276,6 +5691,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(114, 114, 114)", "uuid": "39cdbda8-3c8c-4977-a90e-3883647d93a6" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(154, 177, 227)", + "uuid": "3f1bbfff-8a14-4984-a725-211aba36fa98" } } }, @@ -5291,6 +5711,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(96, 96, 96)", "uuid": "943f1415-fc31-4724-8434-9e9cdb51d2b4" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(133, 161, 219)", + "uuid": "28a8b564-c9fb-41ab-b989-47516f9c0135" } } }, @@ -5306,6 +5731,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(81, 81, 81)", "uuid": "28748667-93d7-4752-8c75-419af48b4d1d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(114, 145, 211)", + "uuid": "69a3ff9a-dec9-4a96-b54f-f9ca12568e59" } } }, @@ -5321,6 +5751,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(66, 66, 66)", "uuid": "f1033f5b-aa7f-4351-9100-43ce546f6a8d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(96, 130, 201)", + "uuid": "18013461-754d-434e-8b05-269dd307d45a" } } }, @@ -5336,6 +5771,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 52, 52)", "uuid": "77bcd85e-90f8-47b8-a9a3-ec59cd7ffe14" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(82, 117, 192)", + "uuid": "8119e422-4eb8-44fc-bf69-b1f76963afca" } } }, @@ -5351,6 +5791,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(39, 39, 39)", "uuid": "369bdb1d-bd52-41b4-8512-159cb20c5d64" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(74, 109, 184)", + "uuid": "9313f4d5-1105-4cb0-81f4-a8a5109594a0" } } }, @@ -5366,6 +5811,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(28, 28, 28)", "uuid": "b9b53281-a4f9-4073-8552-d3d4cec25271" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "dba91bae-1dae-4687-be68-d831a5bd42ba" } } }, @@ -5381,6 +5831,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(12, 12, 12)", "uuid": "fc85bffe-09d4-4fb6-bb7b-5f1053139b97" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "cd1b844a-29bf-4643-a246-4f124544e25d" } } }, @@ -5396,6 +5851,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(253, 247, 243)", "uuid": "27d84774-6d32-4499-8ba9-9d05c8fca55d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(242, 245, 251)", + "uuid": "3c3b2fb7-053d-47ca-86a6-4d1ee07b6f3f" } } }, @@ -5411,6 +5871,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(249, 236, 229)", "uuid": "a8d1aa1d-f9be-448e-8209-afc6097f38ed" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(237, 241, 250)", + "uuid": "07d13e6d-0df2-4eee-8550-ef033f954e9e" } } }, @@ -5426,6 +5891,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(244, 218, 203)", "uuid": "56c7eeb3-990f-48e3-b024-56d36b0378f5" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(233, 238, 248)", + "uuid": "74d44818-bbbd-44a3-b9f0-7131fb036498" } } }, @@ -5441,6 +5911,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(237, 196, 172)", "uuid": "d4760c87-d0e2-4c5c-84f3-81e0c4c8fbb3" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(226, 232, 247)", + "uuid": "2a7d78f3-ad8d-4301-96e8-f2a4ed378c00" } } }, @@ -5456,6 +5931,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(229, 170, 136)", "uuid": "39effb8c-2bba-4018-b6df-2465f2f7e0a0" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(216, 225, 244)", + "uuid": "c607ecc8-35ed-4d47-a683-54d57b816fbd" } } }, @@ -5471,6 +5951,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(212, 145, 108)", "uuid": "7d4de908-322f-4326-b623-a868b454b031" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(203, 215, 241)", + "uuid": "d46ae80e-04ba-418f-8368-1d8c0633c0d1" } } }, @@ -5486,6 +5971,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(198, 126, 88)", "uuid": "0601d1ba-9a38-4fc9-ac89-ef332e906f3d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(190, 205, 237)", + "uuid": "71085b67-c49c-4b1e-b708-6b38c16b9d37" } } }, @@ -5501,6 +5991,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(184, 109, 70)", "uuid": "560d578a-4128-40d5-979f-80d3057294a0" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(173, 192, 233)", + "uuid": "e78bd82d-f4c0-4617-92bb-08a69153bacd" } } }, @@ -5516,6 +6011,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(170, 94, 56)", "uuid": "50199dcc-deae-42ba-99e7-cb98346789eb" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(154, 177, 227)", + "uuid": "cdaaa5e1-7ca5-43a8-bdb4-3ef8fedbb30d" } } }, @@ -5531,6 +6031,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(147, 77, 43)", "uuid": "b6943b69-7cec-4707-a556-aa350d9d8b89" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(133, 161, 219)", + "uuid": "696315e6-4d82-49a0-8781-853beb0d1f5b" } } }, @@ -5546,6 +6051,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(128, 62, 32)", "uuid": "62edca31-5c84-4353-9707-f3648c8e1936" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(114, 145, 211)", + "uuid": "41f0e438-0ca6-4240-84e7-dedfcff1aa21" } } }, @@ -5561,6 +6071,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(110, 48, 21)", "uuid": "e8b6ac17-268d-4ebc-99bc-480d15554356" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(96, 130, 201)", + "uuid": "87e41d92-4099-4248-963c-394d43e33657" } } }, @@ -5576,6 +6091,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(92, 35, 11)", "uuid": "4330fb2e-d402-43bc-b7a0-502c7f6d99ea" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(82, 117, 192)", + "uuid": "2c86bff2-dddd-4fea-b6da-99873fa74da3" } } }, @@ -5591,6 +6111,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(72, 25, 6)", "uuid": "6fe88344-7920-46a6-bbe4-be3cfa20298e" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(74, 109, 184)", + "uuid": "2ec58374-b4c1-4e03-8f3f-57c747a7ed47" } } }, @@ -5606,6 +6131,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(52, 18, 4)", "uuid": "fe6e5407-3f9b-4dd0-9589-7029c19f35b5" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "1adb9cd6-2ba1-4501-ab9d-f377ae07d399" } } }, @@ -5621,6 +6151,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(24, 8, 2)", "uuid": "e3727e22-c955-4116-b5a7-2877df6ef2fe" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(0, 255, 0)", + "uuid": "321a9931-be34-4ce9-8180-8e7fd87e30f4" } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d9e7a730..dc082b84 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,29 +8,29 @@ importers: .: devDependencies: "@changesets/cli": - specifier: ^2.26.2 - version: 2.26.2 + specifier: ^2.27.1 + version: 2.27.1 "@commitlint/cli": - specifier: ^17.6.6 - version: 17.6.6 + specifier: ^18.4.3 + version: 18.4.3(typescript@5.3.3) "@commitlint/config-conventional": - specifier: ^17.6.6 - version: 17.6.6 + specifier: ^18.4.3 + version: 18.4.3 "@moonrepo/cli": - specifier: ^1.17.3 - version: 1.17.3 + specifier: ^1.18.1 + version: 1.18.1 ava: - specifier: ^5.3.1 - version: 5.3.1 + specifier: ^6.0.1 + version: 6.0.1 husky: specifier: ^8.0.3 version: 8.0.3 lint-staged: - specifier: ^13.2.3 - version: 13.2.3 + specifier: ^15.2.0 + version: 15.2.0 prettier: - specifier: ^3.0.0 - version: 3.0.0 + specifier: ^3.1.1 + version: 3.1.1 docs/site: dependencies: @@ -121,7 +121,7 @@ importers: version: 20.4.2 typescript: specifier: ^5.1.6 - version: 5.1.6 + version: 5.3.3 vite: specifier: ^4.4.4 version: 4.4.4(@types/node@20.4.2) @@ -165,7 +165,7 @@ importers: version: 7.2.0 prettier: specifier: ^3.0.0 - version: 3.0.0 + version: 3.1.1 packages: /@babel/code-frame@7.22.5: @@ -208,17 +208,17 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@changesets/apply-release-plan@6.1.4: + /@changesets/apply-release-plan@7.0.0: resolution: { - integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==, + integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==, } dependencies: "@babel/runtime": 7.22.6 - "@changesets/config": 2.3.1 - "@changesets/get-version-range-type": 0.3.2 - "@changesets/git": 2.0.0 - "@changesets/types": 5.2.1 + "@changesets/config": 3.0.0 + "@changesets/get-version-range-type": 0.4.0 + "@changesets/git": 3.0.0 + "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 @@ -229,60 +229,59 @@ packages: semver: 7.5.4 dev: true - /@changesets/assemble-release-plan@5.2.4: + /@changesets/assemble-release-plan@6.0.0: resolution: { - integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==, + integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==, } dependencies: "@babel/runtime": 7.22.6 - "@changesets/errors": 0.1.4 - "@changesets/get-dependents-graph": 1.3.6 - "@changesets/types": 5.2.1 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.0.0 + "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 semver: 7.5.4 dev: true - /@changesets/changelog-git@0.1.14: + /@changesets/changelog-git@0.2.0: resolution: { - integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==, + integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==, } dependencies: - "@changesets/types": 5.2.1 + "@changesets/types": 6.0.0 dev: true - /@changesets/cli@2.26.2: + /@changesets/cli@2.27.1: resolution: { - integrity: sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig==, + integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==, } hasBin: true dependencies: "@babel/runtime": 7.22.6 - "@changesets/apply-release-plan": 6.1.4 - "@changesets/assemble-release-plan": 5.2.4 - "@changesets/changelog-git": 0.1.14 - "@changesets/config": 2.3.1 - "@changesets/errors": 0.1.4 - "@changesets/get-dependents-graph": 1.3.6 - "@changesets/get-release-plan": 3.0.17 - "@changesets/git": 2.0.0 - "@changesets/logger": 0.0.5 - "@changesets/pre": 1.0.14 - "@changesets/read": 0.5.9 - "@changesets/types": 5.2.1 - "@changesets/write": 0.2.3 + "@changesets/apply-release-plan": 7.0.0 + "@changesets/assemble-release-plan": 6.0.0 + "@changesets/changelog-git": 0.2.0 + "@changesets/config": 3.0.0 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.0.0 + "@changesets/get-release-plan": 4.0.0 + "@changesets/git": 3.0.0 + "@changesets/logger": 0.1.0 + "@changesets/pre": 2.0.0 + "@changesets/read": 0.6.0 + "@changesets/types": 6.0.0 + "@changesets/write": 0.3.0 "@manypkg/get-packages": 1.1.3 - "@types/is-ci": 3.0.0 "@types/semver": 7.5.0 ansi-colors: 4.1.3 chalk: 2.4.2 + ci-info: 3.8.0 enquirer: 2.3.6 external-editor: 3.1.0 fs-extra: 7.0.1 human-id: 1.0.2 - is-ci: 3.0.1 meow: 6.1.1 outdent: 0.5.0 p-limit: 2.3.0 @@ -294,123 +293,123 @@ packages: tty-table: 4.2.1 dev: true - /@changesets/config@2.3.1: + /@changesets/config@3.0.0: resolution: { - integrity: sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==, + integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==, } dependencies: - "@changesets/errors": 0.1.4 - "@changesets/get-dependents-graph": 1.3.6 - "@changesets/logger": 0.0.5 - "@changesets/types": 5.2.1 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.0.0 + "@changesets/logger": 0.1.0 + "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 dev: true - /@changesets/errors@0.1.4: + /@changesets/errors@0.2.0: resolution: { - integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==, + integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, } dependencies: extendable-error: 0.1.7 dev: true - /@changesets/get-dependents-graph@1.3.6: + /@changesets/get-dependents-graph@2.0.0: resolution: { - integrity: sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==, + integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==, } dependencies: - "@changesets/types": 5.2.1 + "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.5.4 dev: true - /@changesets/get-release-plan@3.0.17: + /@changesets/get-release-plan@4.0.0: resolution: { - integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==, + integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==, } dependencies: "@babel/runtime": 7.22.6 - "@changesets/assemble-release-plan": 5.2.4 - "@changesets/config": 2.3.1 - "@changesets/pre": 1.0.14 - "@changesets/read": 0.5.9 - "@changesets/types": 5.2.1 + "@changesets/assemble-release-plan": 6.0.0 + "@changesets/config": 3.0.0 + "@changesets/pre": 2.0.0 + "@changesets/read": 0.6.0 + "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 dev: true - /@changesets/get-version-range-type@0.3.2: + /@changesets/get-version-range-type@0.4.0: resolution: { - integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==, + integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, } dev: true - /@changesets/git@2.0.0: + /@changesets/git@3.0.0: resolution: { - integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==, + integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, } dependencies: "@babel/runtime": 7.22.6 - "@changesets/errors": 0.1.4 - "@changesets/types": 5.2.1 + "@changesets/errors": 0.2.0 + "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.5 spawndamnit: 2.0.0 dev: true - /@changesets/logger@0.0.5: + /@changesets/logger@0.1.0: resolution: { - integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==, + integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==, } dependencies: chalk: 2.4.2 dev: true - /@changesets/parse@0.3.16: + /@changesets/parse@0.4.0: resolution: { - integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==, + integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==, } dependencies: - "@changesets/types": 5.2.1 + "@changesets/types": 6.0.0 js-yaml: 3.14.1 dev: true - /@changesets/pre@1.0.14: + /@changesets/pre@2.0.0: resolution: { - integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==, + integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, } dependencies: "@babel/runtime": 7.22.6 - "@changesets/errors": 0.1.4 - "@changesets/types": 5.2.1 + "@changesets/errors": 0.2.0 + "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 dev: true - /@changesets/read@0.5.9: + /@changesets/read@0.6.0: resolution: { - integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==, + integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, } dependencies: "@babel/runtime": 7.22.6 - "@changesets/git": 2.0.0 - "@changesets/logger": 0.0.5 - "@changesets/parse": 0.3.16 - "@changesets/types": 5.2.1 + "@changesets/git": 3.0.0 + "@changesets/logger": 0.1.0 + "@changesets/parse": 0.4.0 + "@changesets/types": 6.0.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 @@ -423,78 +422,77 @@ packages: } dev: true - /@changesets/types@5.2.1: + /@changesets/types@6.0.0: resolution: { - integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==, + integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==, } dev: true - /@changesets/write@0.2.3: + /@changesets/write@0.3.0: resolution: { - integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==, + integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==, } dependencies: "@babel/runtime": 7.22.6 - "@changesets/types": 5.2.1 + "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 dev: true - /@commitlint/cli@17.6.6: + /@commitlint/cli@18.4.3(typescript@5.3.3): resolution: { - integrity: sha512-sTKpr2i/Fjs9OmhU+beBxjPavpnLSqZaO6CzwKVq2Tc4UYVTMFgpKOslDhUBVlfAUBfjVO8ParxC/MXkIOevEA==, + integrity: sha512-zop98yfB3A6NveYAZ3P1Mb6bIXuCeWgnUfVNkH4yhIMQpQfzFwseadazOuSn0OOfTt0lWuFauehpm9GcqM5lww==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } hasBin: true dependencies: - "@commitlint/format": 17.4.4 - "@commitlint/lint": 17.6.6 - "@commitlint/load": 17.5.0 - "@commitlint/read": 17.5.1 - "@commitlint/types": 17.4.4 + "@commitlint/format": 18.4.3 + "@commitlint/lint": 18.4.3 + "@commitlint/load": 18.4.3(typescript@5.3.3) + "@commitlint/read": 18.4.3 + "@commitlint/types": 18.4.3 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 resolve-global: 1.0.0 yargs: 17.7.2 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" + - typescript dev: true - /@commitlint/config-conventional@17.6.6: + /@commitlint/config-conventional@18.4.3: resolution: { - integrity: sha512-phqPz3BDhfj49FUYuuZIuDiw+7T6gNAEy7Yew1IBHqSohVUCWOK2FXMSAExzS2/9X+ET93g0Uz83KjiHDOOFag==, + integrity: sha512-729eRRaNta7JZF07qf6SAGSghoDEp9mH7yHU0m7ff0q89W97wDrWCyZ3yoV3mcQJwbhlmVmZPTkPcm7qiAu8WA==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - conventional-changelog-conventionalcommits: 5.0.0 + conventional-changelog-conventionalcommits: 7.0.2 dev: true - /@commitlint/config-validator@17.4.4: + /@commitlint/config-validator@18.4.3: resolution: { - integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==, + integrity: sha512-FPZZmTJBARPCyef9ohRC9EANiQEKSWIdatx5OlgeHKu878dWwpyeFauVkhzuBRJFcCA4Uvz/FDtlDKs008IHcA==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/types": 17.4.4 + "@commitlint/types": 18.4.3 ajv: 8.12.0 dev: true - /@commitlint/ensure@17.4.4: + /@commitlint/ensure@18.4.3: resolution: { - integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==, + integrity: sha512-MI4fwD9TWDVn4plF5+7JUyLLbkOdzIRBmVeNlk4dcGlkrVA+/l5GLcpN66q9LkFsFv6G2X31y89ApA3hqnqIFg==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/types": 17.4.4 + "@commitlint/types": 18.4.3 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -502,176 +500,163 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule@17.4.0: + /@commitlint/execute-rule@18.4.3: resolution: { - integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==, + integrity: sha512-t7FM4c+BdX9WWZCPrrbV5+0SWLgT3kCq7e7/GhHCreYifg3V8qyvO127HF796vyFql75n4TFF+5v1asOOWkV1Q==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dev: true - /@commitlint/format@17.4.4: + /@commitlint/format@18.4.3: resolution: { - integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==, + integrity: sha512-8b+ItXYHxAhRAXFfYki5PpbuMMOmXYuzLxib65z2XTqki59YDQJGpJ/wB1kEE5MQDgSTQWtKUrA8n9zS/1uIDQ==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/types": 17.4.4 + "@commitlint/types": 18.4.3 chalk: 4.1.2 dev: true - /@commitlint/is-ignored@17.6.6: + /@commitlint/is-ignored@18.4.3: resolution: { - integrity: sha512-4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg==, + integrity: sha512-ZseOY9UfuAI32h9w342Km4AIaTieeFskm2ZKdrG7r31+c6zGBzuny9KQhwI9puc0J3GkUquEgKJblCl7pMnjwg==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/types": 17.4.4 - semver: 7.5.2 + "@commitlint/types": 18.4.3 + semver: 7.5.4 dev: true - /@commitlint/lint@17.6.6: + /@commitlint/lint@18.4.3: resolution: { - integrity: sha512-5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg==, + integrity: sha512-18u3MRgEXNbnYkMOWoncvq6QB8/90m9TbERKgdPqVvS+zQ/MsuRhdvHYCIXGXZxUb0YI4DV2PC4bPneBV/fYuA==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/is-ignored": 17.6.6 - "@commitlint/parse": 17.6.5 - "@commitlint/rules": 17.6.5 - "@commitlint/types": 17.4.4 + "@commitlint/is-ignored": 18.4.3 + "@commitlint/parse": 18.4.3 + "@commitlint/rules": 18.4.3 + "@commitlint/types": 18.4.3 dev: true - /@commitlint/load@17.5.0: + /@commitlint/load@18.4.3(typescript@5.3.3): resolution: { - integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==, + integrity: sha512-v6j2WhvRQJrcJaj5D+EyES2WKTxPpxENmNpNG3Ww8MZGik3jWRXtph0QTzia5ZJyPh2ib5aC/6BIDymkUUM58Q==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 17.4.4 - "@commitlint/execute-rule": 17.4.0 - "@commitlint/resolve-extends": 17.4.4 - "@commitlint/types": 17.4.4 - "@types/node": 20.4.2 + "@commitlint/config-validator": 18.4.3 + "@commitlint/execute-rule": 18.4.3 + "@commitlint/resolve-extends": 18.4.3 + "@commitlint/types": 18.4.3 + "@types/node": 18.19.3 chalk: 4.1.2 - cosmiconfig: 8.2.0 - cosmiconfig-typescript-loader: 4.3.0(@types/node@20.4.2)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6) + cosmiconfig: 8.3.6(typescript@5.3.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@5.3.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1(@types/node@20.4.2)(typescript@5.1.6) - typescript: 5.1.6 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" + - typescript dev: true - /@commitlint/message@17.4.2: + /@commitlint/message@18.4.3: resolution: { - integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==, + integrity: sha512-ddJ7AztWUIoEMAXoewx45lKEYEOeOlBVWjk8hDMUGpprkuvWULpaXczqdjwVtjrKT3JhhN+gMs8pm5G3vB2how==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dev: true - /@commitlint/parse@17.6.5: + /@commitlint/parse@18.4.3: resolution: { - integrity: sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw==, + integrity: sha512-eoH7CXM9L+/Me96KVcfJ27EIIbA5P9sqw3DqjJhRYuhaULIsPHFs5S5GBDCqT0vKZQDx0DgxhMpW6AQbnKrFtA==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/types": 17.4.4 - conventional-changelog-angular: 5.0.13 - conventional-commits-parser: 3.2.4 + "@commitlint/types": 18.4.3 + conventional-changelog-angular: 7.0.0 + conventional-commits-parser: 5.0.0 dev: true - /@commitlint/read@17.5.1: + /@commitlint/read@18.4.3: resolution: { - integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==, + integrity: sha512-H4HGxaYA6OBCimZAtghL+B+SWu8ep4X7BwgmedmqWZRHxRLcX2q0bWBtUm5FsMbluxbOfrJwOs/Z0ah4roP/GQ==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/top-level": 17.4.0 - "@commitlint/types": 17.4.4 + "@commitlint/top-level": 18.4.3 + "@commitlint/types": 18.4.3 fs-extra: 11.1.1 git-raw-commits: 2.0.11 minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@17.4.4: + /@commitlint/resolve-extends@18.4.3: resolution: { - integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==, + integrity: sha512-30sk04LZWf8+SDgJrbJCjM90gTg2LxsD9cykCFeFu+JFHvBFq5ugzp2eO/DJGylAdVaqxej3c7eTSE64hR/lnw==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 17.4.4 - "@commitlint/types": 17.4.4 + "@commitlint/config-validator": 18.4.3 + "@commitlint/types": 18.4.3 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules@17.6.5: + /@commitlint/rules@18.4.3: resolution: { - integrity: sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A==, + integrity: sha512-8KIeukDf45BiY+Lul1T0imSNXF0sMrlLG6JpLLKolkmYVQ6PxxoNOriwyZ3UTFFpaVbPy0rcITaV7U9JCAfDTA==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: - "@commitlint/ensure": 17.4.4 - "@commitlint/message": 17.4.2 - "@commitlint/to-lines": 17.4.0 - "@commitlint/types": 17.4.4 + "@commitlint/ensure": 18.4.3 + "@commitlint/message": 18.4.3 + "@commitlint/to-lines": 18.4.3 + "@commitlint/types": 18.4.3 execa: 5.1.1 dev: true - /@commitlint/to-lines@17.4.0: + /@commitlint/to-lines@18.4.3: resolution: { - integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==, + integrity: sha512-fy1TAleik4Zfru1RJ8ZU6cOSvgSVhUellxd3WZV1D5RwHZETt1sZdcA4mQN2y3VcIZsUNKkW0Mq8CM9/L9harQ==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dev: true - /@commitlint/top-level@17.4.0: + /@commitlint/top-level@18.4.3: resolution: { - integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==, + integrity: sha512-E6fJPBLPFL5R8+XUNSYkj4HekIOuGMyJo3mIx2PkYc3clel+pcWQ7TConqXxNWW4x1ugigiIY2RGot55qUq1hw==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: find-up: 5.0.0 dev: true - /@commitlint/types@17.4.4: + /@commitlint/types@18.4.3: resolution: { - integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==, + integrity: sha512-cvzx+vtY/I2hVBZHCLrpoh+sA0hfuzHwDc+BAFPimYLjJkpHnghQM+z8W/KyLGkygJh3BtI3xXXq+dKjnSWEmA==, } - engines: { node: ">=v14" } + engines: { node: ">=v18" } dependencies: chalk: 4.1.2 dev: true - /@cspotcode/source-map-support@0.8.1: - resolution: - { - integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, - } - engines: { node: ">=12" } - dependencies: - "@jridgewell/trace-mapping": 0.3.9 - dev: true - /@esbuild/android-arm64@0.18.12: resolution: { @@ -975,31 +960,6 @@ packages: wrap-ansi: 8.1.0 wrap-ansi-cjs: /wrap-ansi@7.0.0 - /@jridgewell/resolve-uri@3.1.1: - resolution: - { - integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, - } - engines: { node: ">=6.0.0" } - dev: true - - /@jridgewell/sourcemap-codec@1.4.15: - resolution: - { - integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, - } - dev: true - - /@jridgewell/trace-mapping@0.3.9: - resolution: - { - integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, - } - dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 - dev: true - /@lit-labs/observers@2.0.0: resolution: { @@ -1051,29 +1011,50 @@ packages: read-yaml-file: 1.1.0 dev: true - /@moonrepo/cli@1.17.3: + /@mapbox/node-pre-gyp@1.0.11: + resolution: + { + integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==, + } + hasBin: true + dependencies: + detect-libc: 2.0.2 + https-proxy-agent: 5.0.1 + make-dir: 3.1.0 + node-fetch: 2.7.0 + nopt: 5.0.0 + npmlog: 5.0.1 + rimraf: 3.0.2 + semver: 7.5.4 + tar: 6.1.15 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + + /@moonrepo/cli@1.18.1: resolution: { - integrity: sha512-PuW/R9PeA71OsSZGhadhqTsn3E4tmbTDM3Q7t1GUTeQEjwdDt5WlM/deJ7dxX7D+ItgdMvaUiLhEMMbL8MkOLw==, + integrity: sha512-Ueqd/TJ4cx29hoLyg5yMy91buet1jN7Mr9RzsfPxDEX5DX7La73CJ5KcovUHUGep3ezySgjYSrJ7YSQoKuJSdw==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.17.3 - "@moonrepo/core-linux-arm64-musl": 1.17.3 - "@moonrepo/core-linux-x64-gnu": 1.17.3 - "@moonrepo/core-linux-x64-musl": 1.17.3 - "@moonrepo/core-macos-arm64": 1.17.3 - "@moonrepo/core-macos-x64": 1.17.3 - "@moonrepo/core-windows-x64-msvc": 1.17.3 + "@moonrepo/core-linux-arm64-gnu": 1.18.1 + "@moonrepo/core-linux-arm64-musl": 1.18.1 + "@moonrepo/core-linux-x64-gnu": 1.18.1 + "@moonrepo/core-linux-x64-musl": 1.18.1 + "@moonrepo/core-macos-arm64": 1.18.1 + "@moonrepo/core-macos-x64": 1.18.1 + "@moonrepo/core-windows-x64-msvc": 1.18.1 dev: true - /@moonrepo/core-linux-arm64-gnu@1.17.3: + /@moonrepo/core-linux-arm64-gnu@1.18.1: resolution: { - integrity: sha512-8BlwjyGAmJum9d7EGuGsw9/64j+bgzDGADeH+YsldJ277gqmPLz8F6LRPLUr0Ddc0xcd7sbw0fJzAI4u55YfGA==, + integrity: sha512-eHQ46thO5JMvonEdk448Wlp2d6jIy4s1sPeT/bEA2Nupytk1v+u5c++FE361OYqZU2oxx7jlMfJsuGxlE9G+Rg==, } cpu: [arm64] os: [linux] @@ -1081,10 +1062,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.17.3: + /@moonrepo/core-linux-arm64-musl@1.18.1: resolution: { - integrity: sha512-Kr9SqWBrTla3CxAsc/hIwLyJqs72S9WgVgMj/ZDd6c5r3Onipot/l8Esdw26xy6fIlyu387p9JNh1jWfC9OmXA==, + integrity: sha512-tl/fZ7mwiT5Mr3Eq6HuHnleZF2LV71TjML6E0KqpKUdZziPVoiRPn4yOYfyk4vDzYUt57tALFQMogwpPua6a+A==, } cpu: [arm64] os: [linux] @@ -1092,10 +1073,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.17.3: + /@moonrepo/core-linux-x64-gnu@1.18.1: resolution: { - integrity: sha512-YYIKooOSJeZtFJj5BcgW9tWL3IUe4WgoCHPIRbfoUGhuFw+AacUCz9XDa8/6NJpEIF7drblTDX25ztRIAIIXMw==, + integrity: sha512-2NVSdMlzWmd2V+xvs2sZ0Nr1WEeLUIvJ2NVXnD4iHe5U8LLljoco2Cx3rZq448M58tqHdPd2dEA2ShD53+RORQ==, } cpu: [x64] os: [linux] @@ -1103,10 +1084,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.17.3: + /@moonrepo/core-linux-x64-musl@1.18.1: resolution: { - integrity: sha512-Txw74QJOZFug/n8Z1ZmsjGt4T2d0F0wwT7zeT+0rXIuzwMX3lZG7l+zbNn/FdgmVqhCtPj20U36gM6WM4J/bhw==, + integrity: sha512-GjGIwQFhy+SZA8aCEg7aIozmVfvq0QvAdC/5yy+arWIkfXYiA3A/NS8pCyJGiljeGWLi8ARCTCxm5i7SllDb6A==, } cpu: [x64] os: [linux] @@ -1114,10 +1095,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.17.3: + /@moonrepo/core-macos-arm64@1.18.1: resolution: { - integrity: sha512-nYBd8II6UpteaGAlHMLn5UfBOVOQXINUCLl/mRnD34BXFIjxS7sAShmZfUDQSlC6QQx4zf1mIZSW2BQ+3k7R2A==, + integrity: sha512-NDF11czfMzqhm8YGlS/8EoaCyb5/V51dEV4dub8IV29WM1mzCMM8RaCS/eUPvVap0QaGCIBXTZXbAJ/ZmWenXg==, } cpu: [arm64] os: [darwin] @@ -1125,10 +1106,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.17.3: + /@moonrepo/core-macos-x64@1.18.1: resolution: { - integrity: sha512-NG3atjVM1aJfEPSJUZGdpWZ+WNh5b5Iw8hJNOPUjs33tfz8QoN0UxFWohSFDwXgGxurjzyur/lc0xUBKd2n5WQ==, + integrity: sha512-gVauLjkLG8BqcjGQk33kYTmJhAhWXTz0c46mYXN96x7Qz401cpbtsROUW1hyVCqOpXJ1giHVUVxzUUZM68J44g==, } cpu: [x64] os: [darwin] @@ -1136,10 +1117,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.17.3: + /@moonrepo/core-windows-x64-msvc@1.18.1: resolution: { - integrity: sha512-Wz8Lp661RNpgMCYyqATyJxkgaPLw/oMJ+Jip7c55aLOrE8o+HsNU4QqsOgkxY+6PD+7Dp9634KSrziaTPHHiVA==, + integrity: sha512-CvOW5HgCIBNA2mL5qp49RW2QunVAsFs0+NvSTAN8KDTDlXodINEp74XKEr+LXqX0fDbcQkiWlzacj/Tr8GN3OA==, } cpu: [x64] os: [win32] @@ -1301,6 +1282,25 @@ packages: requiresBuild: true optional: true + /@rollup/pluginutils@4.2.1: + resolution: + { + integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, + } + engines: { node: ">= 8.0.0" } + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@sindresorhus/merge-streams@1.0.0: + resolution: + { + integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==, + } + engines: { node: ">=18" } + dev: true + /@spectrum-css/icon@3.0.49(@spectrum-css/vars@9.0.8): resolution: { @@ -1680,55 +1680,27 @@ packages: tslib: 2.6.0 dev: false - /@tsconfig/node10@1.0.9: - resolution: - { - integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, - } - dev: true - - /@tsconfig/node12@1.0.11: - resolution: - { - integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, - } - dev: true - - /@tsconfig/node14@1.0.3: + /@types/minimist@1.2.2: resolution: { - integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, + integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, } dev: true - /@tsconfig/node16@1.0.4: + /@types/node@12.20.55: resolution: { - integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, + integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } dev: true - /@types/is-ci@3.0.0: + /@types/node@18.19.3: resolution: { - integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==, + integrity: sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==, } dependencies: - ci-info: 3.8.0 - dev: true - - /@types/minimist@1.2.2: - resolution: - { - integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, - } - dev: true - - /@types/node@12.20.55: - resolution: - { - integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, - } + undici-types: 5.26.5 dev: true /@types/node@20.4.2: @@ -1759,6 +1731,30 @@ packages: } dev: false + /@vercel/nft@0.24.4: + resolution: + { + integrity: sha512-KjYAZty7boH5fi5udp6p+lNu6nawgs++pHW+3koErMgbRkkHuToGX/FwjN5clV1FcaM3udfd4zW/sUapkMgpZw==, + } + engines: { node: ">=16" } + hasBin: true + dependencies: + "@mapbox/node-pre-gyp": 1.0.11 + "@rollup/pluginutils": 4.2.1 + acorn: 8.11.2 + async-sema: 3.1.1 + bindings: 1.5.0 + estree-walker: 2.0.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + node-gyp-build: 4.7.1 + resolve-from: 5.0.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /JSONStream@1.3.5: resolution: { @@ -1770,43 +1766,40 @@ packages: through: 2.3.8 dev: true - /acorn-walk@8.2.0: + /abbrev@1.1.1: resolution: { - integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, } - engines: { node: ">=0.4.0" } dev: true - /acorn@8.10.0: + /acorn-walk@8.3.1: resolution: { - integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, + integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==, } engines: { node: ">=0.4.0" } - hasBin: true dev: true - /aggregate-error@3.1.0: + /acorn@8.11.2: resolution: { - integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, + integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==, } - engines: { node: ">=8" } - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 + engines: { node: ">=0.4.0" } + hasBin: true dev: true - /aggregate-error@4.0.1: + /agent-base@6.0.2: resolution: { - integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==, + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, } - engines: { node: ">=12" } + engines: { node: ">= 6.0.0" } dependencies: - clean-stack: 4.2.0 - indent-string: 5.0.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color dev: true /ajv-formats@2.1.1(ajv@8.12.0): @@ -1841,14 +1834,14 @@ packages: engines: { node: ">=6" } dev: true - /ansi-escapes@4.3.2: + /ansi-escapes@6.2.0: resolution: { - integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==, } - engines: { node: ">=8" } + engines: { node: ">=14.16" } dependencies: - type-fest: 0.21.3 + type-fest: 3.13.1 dev: true /ansi-regex@5.0.1: @@ -1891,22 +1884,22 @@ packages: } engines: { node: ">=12" } - /anymatch@3.1.3: + /aproba@2.0.0: resolution: { - integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, + integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==, } - engines: { node: ">= 8" } - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 dev: true - /arg@4.1.3: + /are-we-there-yet@2.0.0: resolution: { - integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, + integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==, } + engines: { node: ">=10" } + dependencies: + delegates: 1.0.0 + readable-stream: 3.6.2 dev: true /argparse@1.0.10: @@ -1995,20 +1988,19 @@ packages: engines: { node: ">=12" } dev: true - /astral-regex@2.0.0: + /async-sema@3.1.1: resolution: { - integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, + integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, } - engines: { node: ">=8" } dev: true - /ava@5.3.1: + /ava@6.0.1: resolution: { - integrity: sha512-Scv9a4gMOXB6+ni4toLuhAm9KYWEjsgBglJl+kMGI5+IVDt120CCDZyB5HNU9DjmLI2t4I0GbnxGLmmRfGTJGg==, + integrity: sha512-9zR0wOwlcJdOWwHOKnpi0GrPRLTlxDFapGalP4rGD0oQRKxDVoucBBWvxVQ/2cPv10Hx1PkDXLJH5iUzhPn0/g==, } - engines: { node: ">=14.19 <15 || >=16.15 <17 || >=18" } + engines: { node: ^18.18 || ^20.8 || ^21 } hasBin: true peerDependencies: "@ava/typescript": "*" @@ -2016,40 +2008,37 @@ packages: "@ava/typescript": optional: true dependencies: - acorn: 8.10.0 - acorn-walk: 8.2.0 + "@vercel/nft": 0.24.4 + acorn: 8.11.2 + acorn-walk: 8.3.1 ansi-styles: 6.2.1 arrgv: 1.0.2 arrify: 3.0.0 - callsites: 4.0.0 - cbor: 8.1.0 + callsites: 4.1.0 + cbor: 9.0.1 chalk: 5.3.0 - chokidar: 3.5.3 chunkd: 2.0.1 - ci-info: 3.8.0 + ci-info: 4.0.0 ci-parallel-vars: 1.0.1 - clean-yaml-object: 0.1.0 - cli-truncate: 3.1.0 + cli-truncate: 4.0.0 code-excerpt: 4.0.0 common-path-prefix: 3.0.0 concordance: 5.0.4 currently-unhandled: 0.4.1 debug: 4.3.4 emittery: 1.0.1 - figures: 5.0.0 - globby: 13.2.2 + figures: 6.0.1 + globby: 14.0.0 ignore-by-default: 2.1.0 indent-string: 5.0.0 - is-error: 2.2.2 is-plain-object: 5.0.0 is-promise: 4.0.0 matcher: 5.0.0 - mem: 9.0.2 + memoize: 10.0.0 ms: 2.1.3 - p-event: 5.0.1 - p-map: 5.5.0 - picomatch: 2.3.1 - pkg-conf: 4.0.0 + p-map: 6.0.0 + package-config: 5.0.0 + picomatch: 3.0.1 plur: 5.1.0 pretty-ms: 8.0.0 resolve-cwd: 3.0.0 @@ -2060,6 +2049,7 @@ packages: write-file-atomic: 5.0.1 yargs: 17.7.2 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -2087,12 +2077,13 @@ packages: is-windows: 1.0.2 dev: true - /binary-extensions@2.2.0: + /bindings@1.5.0: resolution: { - integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, } - engines: { node: ">=8" } + dependencies: + file-uri-to-path: 1.0.0 dev: true /blueimp-md5@2.19.0: @@ -2167,10 +2158,10 @@ packages: engines: { node: ">=6" } dev: true - /callsites@4.0.0: + /callsites@4.1.0: resolution: { - integrity: sha512-y3jRROutgpKdz5vzEhWM34TidDU8vkJppF8dszITeb1PQmSqV3DTxyV8G/lyO/DNvtE1YTedehmw9MPZsCBHxQ==, + integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==, } engines: { node: ">=12.20" } dev: true @@ -2223,12 +2214,12 @@ packages: upper-case-first: 2.0.2 dev: true - /cbor@8.1.0: + /cbor@9.0.1: resolution: { - integrity: sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==, + integrity: sha512-/TQOWyamDxvVIv+DY9cOLNuABkoyz8K/F3QE56539pGVYohx0+MEA1f4lChFTX79dBTBS7R1PF6ovH7G+VtBfQ==, } - engines: { node: ">=12.19" } + engines: { node: ">=16" } dependencies: nofilter: 3.1.0 dev: true @@ -2256,14 +2247,6 @@ packages: supports-color: 7.2.0 dev: true - /chalk@5.2.0: - resolution: - { - integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==, - } - engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } - dev: true - /chalk@5.3.0: resolution: { @@ -2299,24 +2282,6 @@ packages: } dev: true - /chokidar@3.5.3: - resolution: - { - integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, - } - engines: { node: ">= 8.10.0" } - dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.2 - dev: true - /chownr@2.0.0: resolution: { @@ -2340,69 +2305,40 @@ packages: engines: { node: ">=8" } dev: true - /ci-parallel-vars@1.0.1: - resolution: - { - integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==, - } - dev: true - - /clean-stack@2.2.0: + /ci-info@4.0.0: resolution: { - integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, + integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==, } - engines: { node: ">=6" } - dev: true - - /clean-stack@4.2.0: - resolution: - { - integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==, - } - engines: { node: ">=12" } - dependencies: - escape-string-regexp: 5.0.0 - dev: true - - /clean-yaml-object@0.1.0: - resolution: - { - integrity: sha512-3yONmlN9CSAkzNwnRCiJQ7Q2xK5mWuEfL3PuTZcAUzhObbXsfsnMptJzXwz93nc5zn9V9TwCVMmV7w4xsm43dw==, - } - engines: { node: ">=0.10.0" } + engines: { node: ">=8" } dev: true - /cli-cursor@3.1.0: + /ci-parallel-vars@1.0.1: resolution: { - integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, + integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==, } - engines: { node: ">=8" } - dependencies: - restore-cursor: 3.1.0 dev: true - /cli-truncate@2.1.0: + /cli-cursor@4.0.0: resolution: { - integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, + integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==, } - engines: { node: ">=8" } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: - slice-ansi: 3.0.0 - string-width: 4.2.3 + restore-cursor: 4.0.0 dev: true - /cli-truncate@3.1.0: + /cli-truncate@4.0.0: resolution: { - integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==, + integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } dependencies: slice-ansi: 5.0.0 - string-width: 5.1.2 + string-width: 7.0.0 dev: true /client-only@0.0.1: @@ -2484,6 +2420,14 @@ packages: integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, } + /color-support@1.1.3: + resolution: + { + integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==, + } + hasBin: true + dev: true + /colorette@2.0.20: resolution: { @@ -2491,12 +2435,12 @@ packages: } dev: true - /commander@10.0.1: + /commander@11.1.0: resolution: { - integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==, + integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==, } - engines: { node: ">=14" } + engines: { node: ">=16" } dev: true /commander@8.3.0: @@ -2548,6 +2492,13 @@ packages: well-known-symbols: 2.0.0 dev: true + /console-control-strings@1.1.0: + resolution: + { + integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==, + } + dev: true + /constant-case@3.0.4: resolution: { @@ -2559,43 +2510,38 @@ packages: upper-case: 2.0.2 dev: true - /conventional-changelog-angular@5.0.13: + /conventional-changelog-angular@7.0.0: resolution: { - integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==, + integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==, } - engines: { node: ">=10" } + engines: { node: ">=16" } dependencies: compare-func: 2.0.0 - q: 1.5.1 dev: true - /conventional-changelog-conventionalcommits@5.0.0: + /conventional-changelog-conventionalcommits@7.0.2: resolution: { - integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==, + integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==, } - engines: { node: ">=10" } + engines: { node: ">=16" } dependencies: compare-func: 2.0.0 - lodash: 4.17.21 - q: 1.5.1 dev: true - /conventional-commits-parser@3.2.4: + /conventional-commits-parser@5.0.0: resolution: { - integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==, + integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==, } - engines: { node: ">=10" } + engines: { node: ">=16" } hasBin: true dependencies: JSONStream: 1.3.5 - is-text-path: 1.0.1 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 + is-text-path: 2.0.0 + meow: 12.1.1 + split2: 4.2.0 dev: true /convert-to-spaces@2.0.1: @@ -2606,42 +2552,40 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /cosmiconfig-typescript-loader@4.3.0(@types/node@20.4.2)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.1.6): + /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@5.3.3): resolution: { - integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==, + integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, } - engines: { node: ">=12", npm: ">=6" } + engines: { node: ">=v16" } peerDependencies: "@types/node": "*" - cosmiconfig: ">=7" - ts-node: ">=10" - typescript: ">=3" + cosmiconfig: ">=8.2" + typescript: ">=4" dependencies: - "@types/node": 20.4.2 - cosmiconfig: 8.2.0 - ts-node: 10.9.1(@types/node@20.4.2)(typescript@5.1.6) - typescript: 5.1.6 + "@types/node": 18.19.3 + cosmiconfig: 8.3.6(typescript@5.3.3) + jiti: 1.21.0 + typescript: 5.3.3 dev: true - /cosmiconfig@8.2.0: + /cosmiconfig@8.3.6(typescript@5.3.3): resolution: { - integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==, + integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, } engines: { node: ">=14" } + peerDependencies: + typescript: ">=4.9.5" + peerDependenciesMeta: + typescript: + optional: true dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - dev: true - - /create-require@1.1.1: - resolution: - { - integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, - } + typescript: 5.3.3 dev: true /cross-spawn@5.1.0: @@ -2797,28 +2741,27 @@ packages: object-keys: 1.1.1 dev: true - /detect-indent@6.1.0: + /delegates@1.0.0: resolution: { - integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, } - engines: { node: ">=8" } dev: true - /detect-libc@2.0.2: + /detect-indent@6.1.0: resolution: { - integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==, + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, } engines: { node: ">=8" } dev: true - /diff@4.0.2: + /detect-libc@2.0.2: resolution: { - integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, + integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==, } - engines: { node: ">=0.3.1" } + engines: { node: ">=8" } dev: true /dir-glob@3.0.1: @@ -2865,6 +2808,13 @@ packages: engines: { node: ">=14.16" } dev: true + /emoji-regex@10.3.0: + resolution: + { + integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, + } + dev: true + /emoji-regex@8.0.0: resolution: { @@ -3047,6 +2997,13 @@ packages: hasBin: true dev: true + /estree-walker@2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } + dev: true + /esutils@2.0.3: resolution: { @@ -3055,6 +3012,13 @@ packages: engines: { node: ">=0.10.0" } dev: true + /eventemitter3@5.0.1: + resolution: + { + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, + } + dev: true + /execa@5.1.1: resolution: { @@ -3073,21 +3037,21 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa@7.1.1: + /execa@8.0.1: resolution: { - integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==, + integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, } - engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 } + engines: { node: ">=16.17" } dependencies: cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 4.3.1 + get-stream: 8.0.1 + human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 npm-run-path: 5.1.0 onetime: 6.0.0 - signal-exit: 3.0.7 + signal-exit: 4.1.0 strip-final-newline: 3.0.0 dev: true @@ -3123,10 +3087,10 @@ packages: } dev: true - /fast-glob@3.3.0: + /fast-glob@3.3.2: resolution: { - integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==, + integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, } engines: { node: ">=8.6.0" } dependencies: @@ -3146,15 +3110,21 @@ packages: reusify: 1.0.4 dev: true - /figures@5.0.0: + /figures@6.0.1: resolution: { - integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==, + integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==, } - engines: { node: ">=14" } + engines: { node: ">=18" } dependencies: - escape-string-regexp: 5.0.0 - is-unicode-supported: 1.3.0 + is-unicode-supported: 2.0.0 + dev: true + + /file-uri-to-path@1.0.0: + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, + } dev: true /fill-range@7.0.1: @@ -3167,6 +3137,14 @@ packages: to-regex-range: 5.0.1 dev: true + /find-up-simple@1.0.0: + resolution: + { + integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==, + } + engines: { node: ">=18" } + dev: true + /find-up@4.1.0: resolution: { @@ -3189,17 +3167,6 @@ packages: path-exists: 4.0.0 dev: true - /find-up@6.3.0: - resolution: - { - integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 - dev: true - /find-yarn-workspace-root2@1.2.16: resolution: { @@ -3234,7 +3201,7 @@ packages: engines: { node: ">=14" } dependencies: cross-spawn: 7.0.3 - signal-exit: 4.0.2 + signal-exit: 4.1.0 /fs-extra@10.1.0: resolution: @@ -3339,6 +3306,24 @@ packages: } dev: true + /gauge@3.0.2: + resolution: + { + integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==, + } + engines: { node: ">=10" } + dependencies: + aproba: 2.0.0 + color-support: 1.1.3 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wide-align: 1.1.5 + dev: true + /get-caller-file@2.0.5: resolution: { @@ -3347,7 +3332,15 @@ packages: engines: { node: 6.* || 8.* || >= 10.* } dev: true - /get-intrinsic@1.2.1: + /get-east-asian-width@1.2.0: + resolution: + { + integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==, + } + engines: { node: ">=18" } + dev: true + + /get-intrinsic@1.2.1: resolution: { integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, @@ -3367,6 +3360,14 @@ packages: engines: { node: ">=10" } dev: true + /get-stream@8.0.1: + resolution: + { + integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, + } + engines: { node: ">=16" } + dev: true + /get-symbol-description@1.0.0: resolution: { @@ -3467,24 +3468,25 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.0 + fast-glob: 3.3.2 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 dev: true - /globby@13.2.2: + /globby@14.0.0: resolution: { - integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==, + integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } dependencies: - dir-glob: 3.0.1 - fast-glob: 3.3.0 + "@sindresorhus/merge-streams": 1.0.0 + fast-glob: 3.3.2 ignore: 5.2.4 - merge2: 1.4.1 - slash: 4.0.0 + path-type: 5.0.0 + slash: 5.1.0 + unicorn-magic: 0.1.0 dev: true /gopd@1.0.1: @@ -3575,6 +3577,13 @@ packages: has-symbols: 1.0.3 dev: true + /has-unicode@2.0.1: + resolution: + { + integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==, + } + dev: true + /has@1.0.3: resolution: { @@ -3612,6 +3621,19 @@ packages: lru-cache: 6.0.0 dev: true + /https-proxy-agent@5.0.1: + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: { node: ">= 6" } + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + /human-id@1.0.2: resolution: { @@ -3627,12 +3649,12 @@ packages: engines: { node: ">=10.17.0" } dev: true - /human-signals@4.3.1: + /human-signals@5.0.0: resolution: { - integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==, + integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, } - engines: { node: ">=14.18.0" } + engines: { node: ">=16.17.0" } dev: true /husky@8.0.3: @@ -3776,16 +3798,6 @@ packages: has-bigints: 1.0.2 dev: true - /is-binary-path@2.1.0: - resolution: - { - integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, - } - engines: { node: ">=8" } - dependencies: - binary-extensions: 2.2.0 - dev: true - /is-boolean-object@1.1.2: resolution: { @@ -3805,16 +3817,6 @@ packages: engines: { node: ">= 0.4" } dev: true - /is-ci@3.0.1: - resolution: - { - integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, - } - hasBin: true - dependencies: - ci-info: 3.8.0 - dev: true - /is-core-module@2.12.1: resolution: { @@ -3834,13 +3836,6 @@ packages: has-tostringtag: 1.0.0 dev: true - /is-error@2.2.2: - resolution: - { - integrity: sha512-IOQqts/aHWbiisY5DuPJQ0gcbvaLFCa7fBa9xoLfxBZvQ+ZI/Zh9xoI7Gk+G64N0FdK4AbibytHht2tWgpJWLg==, - } - dev: true - /is-extglob@2.1.1: resolution: { @@ -3864,6 +3859,16 @@ packages: engines: { node: ">=12" } dev: true + /is-fullwidth-code-point@5.0.0: + resolution: + { + integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==, + } + engines: { node: ">=18" } + dependencies: + get-east-asian-width: 1.2.0 + dev: true + /is-glob@4.0.3: resolution: { @@ -3997,14 +4002,14 @@ packages: has-symbols: 1.0.3 dev: true - /is-text-path@1.0.1: + /is-text-path@2.0.0: resolution: { - integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==, + integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==, } - engines: { node: ">=0.10.0" } + engines: { node: ">=8" } dependencies: - text-extensions: 1.9.0 + text-extensions: 2.4.0 dev: true /is-typed-array@1.1.10: @@ -4021,12 +4026,12 @@ packages: has-tostringtag: 1.0.0 dev: true - /is-unicode-supported@1.3.0: + /is-unicode-supported@2.0.0: resolution: { - integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==, + integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==, } - engines: { node: ">=12" } + engines: { node: ">=18" } dev: true /is-weakref@1.0.2: @@ -4063,6 +4068,14 @@ packages: optionalDependencies: "@pkgjs/parseargs": 0.11.0 + /jiti@1.21.0: + resolution: + { + integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, + } + hasBin: true + dev: true + /js-string-escape@1.0.1: resolution: { @@ -4179,12 +4192,12 @@ packages: engines: { node: ">=6" } dev: true - /lilconfig@2.1.0: + /lilconfig@3.0.0: resolution: { - integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, + integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==, } - engines: { node: ">=10" } + engines: { node: ">=14" } dev: true /lines-and-columns@1.2.4: @@ -4194,52 +4207,41 @@ packages: } dev: true - /lint-staged@13.2.3: + /lint-staged@15.2.0: resolution: { - integrity: sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==, + integrity: sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==, } - engines: { node: ^14.13.1 || >=16.0.0 } + engines: { node: ">=18.12.0" } hasBin: true dependencies: - chalk: 5.2.0 - cli-truncate: 3.1.0 - commander: 10.0.1 + chalk: 5.3.0 + commander: 11.1.0 debug: 4.3.4 - execa: 7.1.1 - lilconfig: 2.1.0 - listr2: 5.0.8 + execa: 8.0.1 + lilconfig: 3.0.0 + listr2: 8.0.0 micromatch: 4.0.5 - normalize-path: 3.0.0 - object-inspect: 1.12.3 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.3.1 + yaml: 2.3.4 transitivePeerDependencies: - - enquirer - supports-color dev: true - /listr2@5.0.8: + /listr2@8.0.0: resolution: { - integrity: sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==, + integrity: sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==, } - engines: { node: ^14.13.1 || >=16.0.0 } - peerDependencies: - enquirer: ">= 2.3.0 < 3" - peerDependenciesMeta: - enquirer: - optional: true + engines: { node: ">=18.0.0" } dependencies: - cli-truncate: 2.1.0 + cli-truncate: 4.0.0 colorette: 2.0.20 - log-update: 4.0.0 - p-map: 4.0.0 + eventemitter3: 5.0.1 + log-update: 6.0.0 rfdc: 1.3.0 - rxjs: 7.8.1 - through: 2.3.8 - wrap-ansi: 7.0.0 + wrap-ansi: 9.0.0 dev: true /lit-element@3.3.2: @@ -4314,16 +4316,6 @@ packages: p-locate: 5.0.0 dev: true - /locate-path@7.2.0: - resolution: - { - integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dependencies: - p-locate: 6.0.0 - dev: true - /lodash.camelcase@4.3.0: resolution: { @@ -4401,17 +4393,18 @@ packages: } dev: true - /log-update@4.0.0: + /log-update@6.0.0: resolution: { - integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, + integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==, } - engines: { node: ">=10" } + engines: { node: ">=18" } dependencies: - ansi-escapes: 4.3.2 - cli-cursor: 3.1.0 - slice-ansi: 4.0.0 - wrap-ansi: 6.2.0 + ansi-escapes: 6.2.0 + cli-cursor: 4.0.0 + slice-ansi: 7.1.0 + strip-ansi: 7.1.0 + wrap-ansi: 9.0.0 dev: true /loose-envify@1.4.0: @@ -4460,21 +4453,14 @@ packages: yallist: 4.0.0 dev: true - /make-error@1.3.6: + /make-dir@3.1.0: resolution: { - integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, } - dev: true - - /map-age-cleaner@0.1.3: - resolution: - { - integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==, - } - engines: { node: ">=6" } + engines: { node: ">=8" } dependencies: - p-defer: 1.0.0 + semver: 6.3.1 dev: true /map-obj@1.0.1: @@ -4513,15 +4499,22 @@ packages: blueimp-md5: 2.19.0 dev: true - /mem@9.0.2: + /memoize@10.0.0: resolution: { - integrity: sha512-F2t4YIv9XQUBHt6AOJ0y7lSmP1+cY7Fm1DRh9GClTGzKST7UWLMx6ly9WZdLH/G/ppM5RL4MlQfRT71ri9t19A==, + integrity: sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==, } - engines: { node: ">=12.20" } + engines: { node: ">=18" } dependencies: - map-age-cleaner: 0.1.3 - mimic-fn: 4.0.0 + mimic-function: 5.0.0 + dev: true + + /meow@12.1.1: + resolution: + { + integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==, + } + engines: { node: ">=16.10" } dev: true /meow@6.1.1: @@ -4606,6 +4599,14 @@ packages: engines: { node: ">=12" } dev: true + /mimic-function@5.0.0: + resolution: + { + integrity: sha512-RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g==, + } + engines: { node: ">=18" } + dev: true + /min-indent@1.0.1: resolution: { @@ -4782,6 +4783,29 @@ packages: tslib: 2.6.0 dev: true + /node-fetch@2.7.0: + resolution: + { + integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, + } + engines: { node: 4.x || >=6.0.0 } + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + + /node-gyp-build@4.7.1: + resolution: + { + integrity: sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==, + } + hasBin: true + dev: true + /nofilter@3.1.0: resolution: { @@ -4790,6 +4814,17 @@ packages: engines: { node: ">=12.19" } dev: true + /nopt@5.0.0: + resolution: + { + integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==, + } + engines: { node: ">=6" } + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + /normalize-package-data@2.5.0: resolution: { @@ -4815,14 +4850,6 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-path@3.0.0: - resolution: - { - integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, - } - engines: { node: ">=0.10.0" } - dev: true - /npm-run-path@4.0.1: resolution: { @@ -4843,6 +4870,26 @@ packages: path-key: 4.0.0 dev: true + /npmlog@5.0.1: + resolution: + { + integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==, + } + dependencies: + are-we-there-yet: 2.0.0 + console-control-strings: 1.1.0 + gauge: 3.0.2 + set-blocking: 2.0.0 + dev: true + + /object-assign@4.1.1: + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: ">=0.10.0" } + dev: true + /object-inspect@1.12.3: resolution: { @@ -4915,24 +4962,6 @@ packages: } dev: true - /p-defer@1.0.0: - resolution: - { - integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==, - } - engines: { node: ">=4" } - dev: true - - /p-event@5.0.1: - resolution: - { - integrity: sha512-dd589iCQ7m1L0bmC5NLlVYfy3TbBEsMUfWx9PyAgPeIcFZ/E2yaTZ4Rz4MiBmmJShviiftHVXOqfnfzJ6kyMrQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dependencies: - p-timeout: 5.1.0 - dev: true - /p-filter@2.1.0: resolution: { @@ -4963,16 +4992,6 @@ packages: yocto-queue: 0.1.0 dev: true - /p-limit@4.0.0: - resolution: - { - integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dependencies: - yocto-queue: 1.0.0 - dev: true - /p-locate@4.1.0: resolution: { @@ -4993,16 +5012,6 @@ packages: p-limit: 3.1.0 dev: true - /p-locate@6.0.0: - resolution: - { - integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dependencies: - p-limit: 4.0.0 - dev: true - /p-map@2.1.0: resolution: { @@ -5011,40 +5020,31 @@ packages: engines: { node: ">=6" } dev: true - /p-map@4.0.0: + /p-map@6.0.0: resolution: { - integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, + integrity: sha512-T8BatKGY+k5rU+Q/GTYgrEf2r4xRMevAN5mtXc2aPc4rS1j3s+vWTaO2Wag94neXuCAUAs8cxBL9EeB5EA6diw==, } - engines: { node: ">=10" } - dependencies: - aggregate-error: 3.1.0 + engines: { node: ">=16" } dev: true - /p-map@5.5.0: - resolution: - { - integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==, - } - engines: { node: ">=12" } - dependencies: - aggregate-error: 4.0.1 - dev: true - - /p-timeout@5.1.0: + /p-try@2.2.0: resolution: { - integrity: sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==, + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, } - engines: { node: ">=12" } + engines: { node: ">=6" } dev: true - /p-try@2.2.0: + /package-config@5.0.0: resolution: { - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==, } - engines: { node: ">=6" } + engines: { node: ">=18" } + dependencies: + find-up-simple: 1.0.0 + load-json-file: 7.0.1 dev: true /param-case@3.0.4: @@ -5116,14 +5116,6 @@ packages: engines: { node: ">=8" } dev: true - /path-exists@5.0.0: - resolution: - { - integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dev: true - /path-is-absolute@1.0.1: resolution: { @@ -5172,6 +5164,14 @@ packages: engines: { node: ">=8" } dev: true + /path-type@5.0.0: + resolution: + { + integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==, + } + engines: { node: ">=12" } + dev: true + /picocolors@1.0.0: resolution: { @@ -5186,6 +5186,14 @@ packages: engines: { node: ">=8.6" } dev: true + /picomatch@3.0.1: + resolution: + { + integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==, + } + engines: { node: ">=10" } + dev: true + /pidtree@0.6.0: resolution: { @@ -5203,17 +5211,6 @@ packages: engines: { node: ">=6" } dev: true - /pkg-conf@4.0.0: - resolution: - { - integrity: sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dependencies: - find-up: 6.3.0 - load-json-file: 7.0.1 - dev: true - /pkg-dir@4.2.0: resolution: { @@ -5280,10 +5277,10 @@ packages: hasBin: true dev: true - /prettier@3.0.0: + /prettier@3.1.1: resolution: { - integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==, + integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==, } engines: { node: ">=14" } hasBin: true @@ -5312,14 +5309,6 @@ packages: } engines: { node: ">=6" } - /q@1.5.1: - resolution: - { - integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==, - } - engines: { node: ">=0.6.0", teleport: ">=0.2.0" } - dev: true - /queue-microtask@1.2.3: resolution: { @@ -5408,16 +5397,6 @@ packages: util-deprecate: 1.0.2 dev: true - /readdirp@3.6.0: - resolution: - { - integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, - } - engines: { node: ">=8.10.0" } - dependencies: - picomatch: 2.3.1 - dev: true - /redent@3.0.0: resolution: { @@ -5518,12 +5497,12 @@ packages: supports-preserve-symlinks-flag: 1.0.0 dev: true - /restore-cursor@3.1.0: + /restore-cursor@4.0.0: resolution: { - integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, + integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==, } - engines: { node: ">=8" } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: onetime: 5.1.2 signal-exit: 3.0.7 @@ -5585,15 +5564,6 @@ packages: queue-microtask: 1.2.3 dev: true - /rxjs@7.8.1: - resolution: - { - integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, - } - dependencies: - tslib: 2.6.0 - dev: true - /safe-buffer@5.2.1: resolution: { @@ -5636,15 +5606,12 @@ packages: hasBin: true dev: true - /semver@7.5.2: + /semver@6.3.1: resolution: { - integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==, + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, } - engines: { node: ">=10" } hasBin: true - dependencies: - lru-cache: 6.0.0 dev: true /semver@7.5.4: @@ -5738,10 +5705,10 @@ packages: } dev: true - /signal-exit@4.0.2: + /signal-exit@4.1.0: resolution: { - integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==, + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, } engines: { node: ">=14" } @@ -5753,47 +5720,34 @@ packages: engines: { node: ">=8" } dev: true - /slash@4.0.0: - resolution: - { - integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, - } - engines: { node: ">=12" } - dev: true - - /slice-ansi@3.0.0: + /slash@5.1.0: resolution: { - integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, + integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, } - engines: { node: ">=8" } - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 + engines: { node: ">=14.16" } dev: true - /slice-ansi@4.0.0: + /slice-ansi@5.0.0: resolution: { - integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, + integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, } - engines: { node: ">=10" } + engines: { node: ">=12" } dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 dev: true - /slice-ansi@5.0.0: + /slice-ansi@7.1.0: resolution: { - integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, + integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==, } - engines: { node: ">=12" } + engines: { node: ">=18" } dependencies: ansi-styles: 6.2.1 - is-fullwidth-code-point: 4.0.0 + is-fullwidth-code-point: 5.0.0 dev: true /smartwrap@2.0.2: @@ -5882,6 +5836,14 @@ packages: readable-stream: 3.6.2 dev: true + /split2@4.2.0: + resolution: + { + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, + } + engines: { node: ">= 10.x" } + dev: true + /sprintf-js@1.0.3: resolution: { @@ -5946,6 +5908,18 @@ packages: emoji-regex: 9.2.2 strip-ansi: 7.1.0 + /string-width@7.0.0: + resolution: + { + integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==, + } + engines: { node: ">=18" } + dependencies: + emoji-regex: 10.3.0 + get-east-asian-width: 1.2.0 + strip-ansi: 7.1.0 + dev: true + /string.prototype.trim@1.2.7: resolution: { @@ -6161,12 +6135,12 @@ packages: engines: { node: ">=8" } dev: true - /text-extensions@1.9.0: + /text-extensions@2.4.0: resolution: { - integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==, + integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==, } - engines: { node: ">=0.10" } + engines: { node: ">=8" } dev: true /through2@4.0.2: @@ -6239,46 +6213,19 @@ packages: is-number: 7.0.0 dev: true - /trim-newlines@3.0.1: + /tr46@0.0.3: resolution: { - integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, } - engines: { node: ">=8" } dev: true - /ts-node@10.9.1(@types/node@20.4.2)(typescript@5.1.6): + /trim-newlines@3.0.1: resolution: { - integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, } - hasBin: true - peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" - peerDependenciesMeta: - "@swc/core": - optional: true - "@swc/wasm": - optional: true - dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.9 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.4.2 - acorn: 8.10.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 5.1.6 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 + engines: { node: ">=8" } dev: true /tslib@2.6.0: @@ -6320,14 +6267,6 @@ packages: engines: { node: ">=10" } dev: true - /type-fest@0.21.3: - resolution: - { - integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, - } - engines: { node: ">=10" } - dev: true - /type-fest@0.6.0: resolution: { @@ -6344,6 +6283,14 @@ packages: engines: { node: ">=8" } dev: true + /type-fest@3.13.1: + resolution: + { + integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, + } + engines: { node: ">=14.16" } + dev: true + /typed-array-byte-offset@1.0.0: resolution: { @@ -6369,10 +6316,10 @@ packages: is-typed-array: 1.1.10 dev: true - /typescript@5.1.6: + /typescript@5.3.3: resolution: { - integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==, + integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, } engines: { node: ">=14.17" } hasBin: true @@ -6390,6 +6337,21 @@ packages: which-boxed-primitive: 1.0.2 dev: true + /undici-types@5.26.5: + resolution: + { + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + } + dev: true + + /unicorn-magic@0.1.0: + resolution: + { + integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==, + } + engines: { node: ">=18" } + dev: true + /universalify@0.1.2: resolution: { @@ -6439,13 +6401,6 @@ packages: } dev: true - /v8-compile-cache-lib@3.0.1: - resolution: - { - integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, - } - dev: true - /validate-npm-package-license@3.0.4: resolution: { @@ -6515,6 +6470,13 @@ packages: defaults: 1.0.4 dev: true + /webidl-conversions@3.0.1: + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, + } + dev: true + /well-known-symbols@2.0.0: resolution: { @@ -6523,6 +6485,16 @@ packages: engines: { node: ">=6" } dev: true + /whatwg-url@5.0.0: + resolution: + { + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, + } + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + dev: true + /which-boxed-primitive@1.0.2: resolution: { @@ -6589,6 +6561,15 @@ packages: dependencies: isexe: 2.0.0 + /wide-align@1.1.5: + resolution: + { + integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==, + } + dependencies: + string-width: 4.2.3 + dev: true + /wrap-ansi@6.2.0: resolution: { @@ -6623,6 +6604,18 @@ packages: string-width: 5.1.2 strip-ansi: 7.1.0 + /wrap-ansi@9.0.0: + resolution: + { + integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==, + } + engines: { node: ">=18" } + dependencies: + ansi-styles: 6.2.1 + string-width: 7.0.0 + strip-ansi: 7.1.0 + dev: true + /wrappy@1.0.2: resolution: { @@ -6638,7 +6631,7 @@ packages: engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } dependencies: imurmurhash: 0.1.4 - signal-exit: 4.0.2 + signal-exit: 4.1.0 dev: true /y18n@4.0.3: @@ -6670,10 +6663,10 @@ packages: } dev: true - /yaml@2.3.1: + /yaml@2.3.4: resolution: { - integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==, + integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, } engines: { node: ">= 14" } dev: true @@ -6741,14 +6734,6 @@ packages: yargs-parser: 21.1.1 dev: true - /yn@3.1.1: - resolution: - { - integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, - } - engines: { node: ">=6" } - dev: true - /yocto-queue@0.1.0: resolution: { @@ -6757,14 +6742,6 @@ packages: engines: { node: ">=10" } dev: true - /yocto-queue@1.0.0: - resolution: - { - integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, - } - engines: { node: ">=12.20" } - dev: true - /zod@3.21.4: resolution: { From f213c2ecf02aabf51ac034bf212793ffc9bea799 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 4 Jan 2024 10:28:43 -0700 Subject: [PATCH 042/295] feat: updated wireframe values for colors --- .../public/schemas/components/action-bar.json | 2 +- .../schemas/components/action-button.json | 2 +- .../schemas/components/action-group.json | 2 +- .../schemas/components/alert-banner.json | 2 +- .../schemas/components/alert-dialog.json | 2 +- .../public/schemas/components/avatar.json | 2 +- .../site/public/schemas/components/badge.json | 2 +- docs/site/public/schemas/components/body.json | 2 +- .../components/bottom-navigation-android.json | 2 +- .../schemas/components/breadcrumbs.json | 2 +- .../schemas/components/button-group.json | 2 +- .../public/schemas/components/button.json | 2 +- .../schemas/components/checkbox-group.json | 2 +- .../public/schemas/components/checkbox.json | 2 +- .../schemas/components/close-button.json | 2 +- docs/site/public/schemas/components/code.json | 2 +- .../public/schemas/components/color-area.json | 2 +- .../schemas/components/color-loupe.json | 2 +- .../schemas/components/color-slider.json | 2 +- .../schemas/components/color-wheel.json | 2 +- .../public/schemas/components/combo-box.json | 2 +- .../schemas/components/contextual-help.json | 2 +- .../public/schemas/components/detail.json | 2 +- .../public/schemas/components/divider.json | 2 +- .../schemas/components/field-label.json | 2 +- .../public/schemas/components/heading.json | 2 +- .../public/schemas/components/help-text.json | 2 +- .../schemas/components/in-line-alert.json | 2 +- docs/site/public/schemas/components/link.json | 2 +- docs/site/public/schemas/components/menu.json | 2 +- .../site/public/schemas/components/meter.json | 2 +- .../public/schemas/components/picker.json | 2 +- .../public/schemas/components/popover.json | 2 +- .../schemas/components/progress-bar.json | 2 +- .../schemas/components/progress-circle.json | 2 +- .../schemas/components/radio-group.json | 2 +- .../public/schemas/components/rating.json | 2 +- .../schemas/components/scroll-zoom-bar.json | 2 +- .../schemas/components/side-navigation.json | 2 +- .../public/schemas/components/slider.json | 2 +- .../schemas/components/status-light.json | 2 +- .../schemas/components/swatch-group.json | 2 +- .../public/schemas/components/swatch.json | 2 +- .../public/schemas/components/switch.json | 2 +- .../schemas/components/tab-bar-ios.json | 2 +- docs/site/public/schemas/components/tabs.json | 2 +- docs/site/public/schemas/components/tag.json | 2 +- .../public/schemas/components/text-area.json | 2 +- .../public/schemas/components/text-field.json | 2 +- .../site/public/schemas/components/toast.json | 2 +- .../public/schemas/components/tooltip.json | 2 +- docs/site/public/schemas/components/tray.json | 2 +- .../public/schemas/components/tree-view.json | 2 +- .../public/schemas/token-types/alias.json | 25 + .../public/schemas/token-types/color-set.json | 69 +++ .../public/schemas/token-types/color.json | 25 + .../public/schemas/token-types/dimension.json | 25 + .../schemas/token-types/font-family.json | 25 + .../public/schemas/token-types/font-size.json | 25 + .../schemas/token-types/font-style.json | 25 + .../schemas/token-types/font-weight.json | 25 + .../schemas/token-types/multiplier.json | 25 + .../public/schemas/token-types/opacity.json | 25 + .../public/schemas/token-types/scale-set.json | 54 ++ docs/site/public/schemas/token-types/set.json | 22 + .../schemas/token-types/system-set.json | 0 .../schemas/token-types/text-transform.json | 25 + .../public/schemas/token-types/token.json | 27 + packages/tokens/src/color-aliases.json | 2 +- packages/tokens/src/color-palette.json | 578 +++++++++--------- 70 files changed, 765 insertions(+), 343 deletions(-) create mode 100644 docs/site/public/schemas/token-types/alias.json create mode 100644 docs/site/public/schemas/token-types/color-set.json create mode 100644 docs/site/public/schemas/token-types/color.json create mode 100644 docs/site/public/schemas/token-types/dimension.json create mode 100644 docs/site/public/schemas/token-types/font-family.json create mode 100644 docs/site/public/schemas/token-types/font-size.json create mode 100644 docs/site/public/schemas/token-types/font-style.json create mode 100644 docs/site/public/schemas/token-types/font-weight.json create mode 100644 docs/site/public/schemas/token-types/multiplier.json create mode 100644 docs/site/public/schemas/token-types/opacity.json create mode 100644 docs/site/public/schemas/token-types/scale-set.json create mode 100644 docs/site/public/schemas/token-types/set.json rename {packages/tokens => docs/site/public}/schemas/token-types/system-set.json (100%) create mode 100644 docs/site/public/schemas/token-types/text-transform.json create mode 100644 docs/site/public/schemas/token-types/token.json diff --git a/docs/site/public/schemas/components/action-bar.json b/docs/site/public/schemas/components/action-bar.json index 69e6d623..0ace98be 100644 --- a/docs/site/public/schemas/components/action-bar.json +++ b/docs/site/public/schemas/components/action-bar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/action-bar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/action-bar.json", "title": "Action bar", "description": "Action bars are used for single and bulk selection patterns, when a user needs to perform actions on either a single or multiple items at the same time.", "meta": { diff --git a/docs/site/public/schemas/components/action-button.json b/docs/site/public/schemas/components/action-button.json index d311586e..9486045f 100644 --- a/docs/site/public/schemas/components/action-button.json +++ b/docs/site/public/schemas/components/action-button.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/action-button.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/action-button.json", "title": "Action button", "description": "Action buttons allow users to perform an action or mark a selection. They're used for similar, task-based options within a workflow, and are ideal for interfaces where buttons aren't meant to draw a lot of attention.", "meta": { diff --git a/docs/site/public/schemas/components/action-group.json b/docs/site/public/schemas/components/action-group.json index cfd3b125..f2febc8e 100644 --- a/docs/site/public/schemas/components/action-group.json +++ b/docs/site/public/schemas/components/action-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/action-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/action-group.json", "title": "Action group", "description": "An action group is a grouping of action buttons that are related to each other.", "meta": { diff --git a/docs/site/public/schemas/components/alert-banner.json b/docs/site/public/schemas/components/alert-banner.json index a92764a7..3097426f 100644 --- a/docs/site/public/schemas/components/alert-banner.json +++ b/docs/site/public/schemas/components/alert-banner.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/alert-banner.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/alert-banner.json", "title": "Alert banner", "description": "Alert banners show pressing and high-signal messages, such as system alerts. They're meant to be noticed and prompt users to take action.", "meta": { diff --git a/docs/site/public/schemas/components/alert-dialog.json b/docs/site/public/schemas/components/alert-dialog.json index 3462e665..cbf2787d 100644 --- a/docs/site/public/schemas/components/alert-dialog.json +++ b/docs/site/public/schemas/components/alert-dialog.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/alert-dialog.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/alert-dialog.json", "title": "Alert dialog", "description": "Alert dialogs display important information that users need to acknowledge. They appear over the interface and block further interactions until an action is selected.", "meta": { diff --git a/docs/site/public/schemas/components/avatar.json b/docs/site/public/schemas/components/avatar.json index 8d434b76..f61c419a 100644 --- a/docs/site/public/schemas/components/avatar.json +++ b/docs/site/public/schemas/components/avatar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/avatar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/avatar.json", "title": "Avatar", "description": "An avatar is a thumbnail representation of an entity, such as a user or an organization.", "meta": { diff --git a/docs/site/public/schemas/components/badge.json b/docs/site/public/schemas/components/badge.json index f823e633..2e0d3166 100644 --- a/docs/site/public/schemas/components/badge.json +++ b/docs/site/public/schemas/components/badge.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/badge.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/badge.json", "title": "Badge", "description": "Similar to status lights, badges are for showing a small amount of color-categorized metadata. They're ideal for getting a user''s attention.", "meta": { diff --git a/docs/site/public/schemas/components/body.json b/docs/site/public/schemas/components/body.json index 045bf4d5..21af8c57 100644 --- a/docs/site/public/schemas/components/body.json +++ b/docs/site/public/schemas/components/body.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/body.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/body.json", "title": "Body", "description": "Body is a typography component primarily used within Spectrum components and for blocks of text.", "meta": { diff --git a/docs/site/public/schemas/components/bottom-navigation-android.json b/docs/site/public/schemas/components/bottom-navigation-android.json index c50e6004..9ef527c0 100644 --- a/docs/site/public/schemas/components/bottom-navigation-android.json +++ b/docs/site/public/schemas/components/bottom-navigation-android.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/bottom-navigation-android.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/bottom-navigation-android.json", "title": "Bottom navigation (Android)", "description": "Bottom navigation is a top-level navigation control for Android apps.", "meta": { diff --git a/docs/site/public/schemas/components/breadcrumbs.json b/docs/site/public/schemas/components/breadcrumbs.json index 3ef936f8..09e601cf 100644 --- a/docs/site/public/schemas/components/breadcrumbs.json +++ b/docs/site/public/schemas/components/breadcrumbs.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/breadcrumbs.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/breadcrumbs.json", "title": "Breadcrumbs", "description": "Breadcrumbs show hierarchy and navigational context for a user’s location within an app.", "meta": { diff --git a/docs/site/public/schemas/components/button-group.json b/docs/site/public/schemas/components/button-group.json index be844ea4..b873abb1 100644 --- a/docs/site/public/schemas/components/button-group.json +++ b/docs/site/public/schemas/components/button-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/button-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/button-group.json", "title": "Button group", "description": "A button group is a grouping of buttons whose actions are related to each other.", "meta": { diff --git a/docs/site/public/schemas/components/button.json b/docs/site/public/schemas/components/button.json index beb76af2..25650650 100644 --- a/docs/site/public/schemas/components/button.json +++ b/docs/site/public/schemas/components/button.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/button.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/button.json", "title": "Button", "description": "Buttons allow users to perform an action or to navigate to another page. They have multiple styles for various needs, and are ideal for calling attention to where a user needs to do something in order to move forward in a flow.", "meta": { diff --git a/docs/site/public/schemas/components/checkbox-group.json b/docs/site/public/schemas/components/checkbox-group.json index 226f1cac..2cae6741 100644 --- a/docs/site/public/schemas/components/checkbox-group.json +++ b/docs/site/public/schemas/components/checkbox-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/checkbox-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/checkbox-group.json", "title": "Checkbox group", "description": "A checkbox group is a grouping of checkboxes that are related to each other.", "meta": { diff --git a/docs/site/public/schemas/components/checkbox.json b/docs/site/public/schemas/components/checkbox.json index 79eddca7..13fc598b 100644 --- a/docs/site/public/schemas/components/checkbox.json +++ b/docs/site/public/schemas/components/checkbox.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/checkbox.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/checkbox.json", "title": "Checkbox", "description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.", "meta": { diff --git a/docs/site/public/schemas/components/close-button.json b/docs/site/public/schemas/components/close-button.json index 02011239..b2fe7e46 100644 --- a/docs/site/public/schemas/components/close-button.json +++ b/docs/site/public/schemas/components/close-button.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/close-button.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/close-button.json", "title": "Close button", "description": "The close button is used inside of other components, like a toast or an action bar, for closing or dismissing its parent component.", "meta": { diff --git a/docs/site/public/schemas/components/code.json b/docs/site/public/schemas/components/code.json index 33e27528..31582474 100644 --- a/docs/site/public/schemas/components/code.json +++ b/docs/site/public/schemas/components/code.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/code.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/code.json", "title": "Code", "description": "Detail is a typography component used for disclosing extra information or smaller items in hierarchical relationships of text.", "meta": { diff --git a/docs/site/public/schemas/components/color-area.json b/docs/site/public/schemas/components/color-area.json index 39299b29..3da17fcf 100644 --- a/docs/site/public/schemas/components/color-area.json +++ b/docs/site/public/schemas/components/color-area.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-area.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-area.json", "title": "Color area", "description": "A color area allows users to visually select two properties of a color simultaneously. It's commonly used together with a color slider or color wheel.", "meta": { diff --git a/docs/site/public/schemas/components/color-loupe.json b/docs/site/public/schemas/components/color-loupe.json index bba95cf5..7afcd44b 100644 --- a/docs/site/public/schemas/components/color-loupe.json +++ b/docs/site/public/schemas/components/color-loupe.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-loupe.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-loupe.json", "title": "Color loupe", "description": "A color loupe shows the output color that would otherwise be covered by a cursor, stylus, or finger during color selection.", "meta": { diff --git a/docs/site/public/schemas/components/color-slider.json b/docs/site/public/schemas/components/color-slider.json index a571f4e1..51444cfd 100644 --- a/docs/site/public/schemas/components/color-slider.json +++ b/docs/site/public/schemas/components/color-slider.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-slider.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-slider.json", "title": "Color slider", "description": "A color slider lets users visually change an individual channel of a color.", "meta": { diff --git a/docs/site/public/schemas/components/color-wheel.json b/docs/site/public/schemas/components/color-wheel.json index 04f13423..dd488113 100644 --- a/docs/site/public/schemas/components/color-wheel.json +++ b/docs/site/public/schemas/components/color-wheel.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/color-wheel.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/color-wheel.json", "title": "Color wheel", "description": "A color wheel lets users visually change an individual channel of a color on a circular track.", "meta": { diff --git a/docs/site/public/schemas/components/combo-box.json b/docs/site/public/schemas/components/combo-box.json index 77fd1978..1c4021f1 100644 --- a/docs/site/public/schemas/components/combo-box.json +++ b/docs/site/public/schemas/components/combo-box.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/combo-box.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/combo-box.json", "title": "Combo box", "description": "Combo boxes combine a text entry with a picker menu, allowing users to filter longer lists to only the selections matching a query.", "meta": { diff --git a/docs/site/public/schemas/components/contextual-help.json b/docs/site/public/schemas/components/contextual-help.json index da76feee..f40aedb7 100644 --- a/docs/site/public/schemas/components/contextual-help.json +++ b/docs/site/public/schemas/components/contextual-help.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/contextual-help.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/contextual-help.json", "title": "Contextual help", "description": "Contextual help shows a user extra information about the state of either an adjacent component or an entire view. It explains a high-level topic about an experience and can point users to more information elsewhere.", "meta": { diff --git a/docs/site/public/schemas/components/detail.json b/docs/site/public/schemas/components/detail.json index 315cf360..95c75c13 100644 --- a/docs/site/public/schemas/components/detail.json +++ b/docs/site/public/schemas/components/detail.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/detail.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/detail.json", "title": "Detail", "description": "Detail is a typography component used for disclosing extra information or smaller items in hierarchical relationships of text.", "meta": { diff --git a/docs/site/public/schemas/components/divider.json b/docs/site/public/schemas/components/divider.json index c79bea8e..9613e491 100644 --- a/docs/site/public/schemas/components/divider.json +++ b/docs/site/public/schemas/components/divider.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/divider.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/divider.json", "title": "Divider", "description": "Dividers bring clarity to a layout by grouping and dividing content in close proximity. They can also be used to establish rhythm and hierarchy.", "meta": { diff --git a/docs/site/public/schemas/components/field-label.json b/docs/site/public/schemas/components/field-label.json index 901c3fd7..bbdb906a 100644 --- a/docs/site/public/schemas/components/field-label.json +++ b/docs/site/public/schemas/components/field-label.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/field-label.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/field-label.json", "title": "Field label", "description": "Field labels give context to the information that a user needs to input. They're commonly used in forms.", "meta": { diff --git a/docs/site/public/schemas/components/heading.json b/docs/site/public/schemas/components/heading.json index 20a1a053..ba1ec25a 100644 --- a/docs/site/public/schemas/components/heading.json +++ b/docs/site/public/schemas/components/heading.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/heading.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/heading.json", "title": "Heading", "description": "Heading is a typography component used to create various levels of hierarchies between text.", "meta": { diff --git a/docs/site/public/schemas/components/help-text.json b/docs/site/public/schemas/components/help-text.json index 5358f073..ab77bc27 100644 --- a/docs/site/public/schemas/components/help-text.json +++ b/docs/site/public/schemas/components/help-text.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/help-text.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/help-text.json", "title": "Help text", "description": "Help text provides either an informative description or an error message that gives more context about what a user needs to input. It’s commonly used in forms.", "meta": { diff --git a/docs/site/public/schemas/components/in-line-alert.json b/docs/site/public/schemas/components/in-line-alert.json index 586d6d02..45164d4e 100644 --- a/docs/site/public/schemas/components/in-line-alert.json +++ b/docs/site/public/schemas/components/in-line-alert.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/in-line-alert.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/in-line-alert.json", "title": "In-line alert", "description": "In-line alerts display a non-modal message associated with objects in a view. These are often used in form validation, providing a place to aggregate feedback related to multiple fields.", "meta": { diff --git a/docs/site/public/schemas/components/link.json b/docs/site/public/schemas/components/link.json index 2fefdc93..bd45e29d 100644 --- a/docs/site/public/schemas/components/link.json +++ b/docs/site/public/schemas/components/link.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/link.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/link.json", "title": "Link", "description": "Links allow users to navigate to a different location. They can be presented inside a paragraph or as standalone text.", "meta": { diff --git a/docs/site/public/schemas/components/menu.json b/docs/site/public/schemas/components/menu.json index 2de4193e..aa2d02ad 100644 --- a/docs/site/public/schemas/components/menu.json +++ b/docs/site/public/schemas/components/menu.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/menu.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/menu.json", "title": "Menu", "description": "Menus help users take actions, choose from a list of options, configure settings, and more. They can be placed in a transient container, like a popover or tray.", "meta": { diff --git a/docs/site/public/schemas/components/meter.json b/docs/site/public/schemas/components/meter.json index dc5a8e14..d9e8a0e6 100644 --- a/docs/site/public/schemas/components/meter.json +++ b/docs/site/public/schemas/components/meter.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/meter.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/meter.json", "title": "Meter", "description": "Meters are visual representations of a quantity or an achievement. Their progress is determined by user actions, rather than system actions.", "meta": { diff --git a/docs/site/public/schemas/components/picker.json b/docs/site/public/schemas/components/picker.json index 5fe616a6..1e4622f7 100644 --- a/docs/site/public/schemas/components/picker.json +++ b/docs/site/public/schemas/components/picker.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/picker.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/picker.json", "title": "Picker", "description": "Pickers (sometimes known as \"dropdowns\" or \"selects\") allow users to choose from a list of options in a limited space. The list of options can change based on the context.", "meta": { diff --git a/docs/site/public/schemas/components/popover.json b/docs/site/public/schemas/components/popover.json index da47820a..e3184032 100644 --- a/docs/site/public/schemas/components/popover.json +++ b/docs/site/public/schemas/components/popover.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/popover.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/popover.json", "title": "Popover", "description": "Popovers are containers used to display transient content such as menus, options, additional actions, and more. They visually stand out through stroke and drop shadow and float on top of the interface.", "meta": { diff --git a/docs/site/public/schemas/components/progress-bar.json b/docs/site/public/schemas/components/progress-bar.json index eab41371..ef30e832 100644 --- a/docs/site/public/schemas/components/progress-bar.json +++ b/docs/site/public/schemas/components/progress-bar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/progress-bar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/progress-bar.json", "title": "Progress bar", "description": "Progress bars show the progression of a system operation: downloading, uploading, processing, etc., in a visual way. They can represent either determinate or indeterminate progress.", "meta": { diff --git a/docs/site/public/schemas/components/progress-circle.json b/docs/site/public/schemas/components/progress-circle.json index 03f2858b..8aee1ae1 100644 --- a/docs/site/public/schemas/components/progress-circle.json +++ b/docs/site/public/schemas/components/progress-circle.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/progress-circle.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/progress-circle.json", "title": "Progress circle", "description": "Progress circles show the progression of a system operation such as downloading, uploading, processing, etc. in a visual way. They can represent determinate or indeterminate progress.", "meta": { diff --git a/docs/site/public/schemas/components/radio-group.json b/docs/site/public/schemas/components/radio-group.json index cd470c18..4b68c1a7 100644 --- a/docs/site/public/schemas/components/radio-group.json +++ b/docs/site/public/schemas/components/radio-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/radio-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/radio-group.json", "title": "Radio Group", "description": "A radio group is a grouping of radio buttons that are related to each other.", "meta": { diff --git a/docs/site/public/schemas/components/rating.json b/docs/site/public/schemas/components/rating.json index 91eff1ff..2cd95f5f 100644 --- a/docs/site/public/schemas/components/rating.json +++ b/docs/site/public/schemas/components/rating.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/rating.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/rating.json", "title": "Rating", "description": "The rating component lets users apply a rating to an item or experience, such as an image, a forum post, an item for sale in a marketplace, and more.", "meta": { diff --git a/docs/site/public/schemas/components/scroll-zoom-bar.json b/docs/site/public/schemas/components/scroll-zoom-bar.json index bff7add9..a000cd5f 100644 --- a/docs/site/public/schemas/components/scroll-zoom-bar.json +++ b/docs/site/public/schemas/components/scroll-zoom-bar.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/scroll-zoom-bar.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/scroll-zoom-bar.json", "title": "Scroll-zoom bar", "description": "Primarily for usage in timelines, a scroll-zoom bar lets a user scroll or zoom with the same control.", "meta": { diff --git a/docs/site/public/schemas/components/side-navigation.json b/docs/site/public/schemas/components/side-navigation.json index 8f797855..cbff1ae0 100644 --- a/docs/site/public/schemas/components/side-navigation.json +++ b/docs/site/public/schemas/components/side-navigation.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/side-navigation.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/side-navigation.json", "title": "Side navigation", "description": "Side navigation lets users navigate the entire content of a product or a section. These can be used for a single level or a multi-level navigation.", "meta": { diff --git a/docs/site/public/schemas/components/slider.json b/docs/site/public/schemas/components/slider.json index 246d2eae..f7d100fc 100644 --- a/docs/site/public/schemas/components/slider.json +++ b/docs/site/public/schemas/components/slider.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/slider.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/slider.json", "title": "Slider", "description": "Sliders allow users to quickly select a value within a range. They should be used when the upper and lower bounds to the range are invariable.", "meta": { diff --git a/docs/site/public/schemas/components/status-light.json b/docs/site/public/schemas/components/status-light.json index f4b1580b..53e84c50 100644 --- a/docs/site/public/schemas/components/status-light.json +++ b/docs/site/public/schemas/components/status-light.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/status-light.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/status-light.json", "title": "Status light", "description": "Status lights describe the condition of an entity. They can be used to convey semantic meaning, such as statuses and categories.", "meta": { diff --git a/docs/site/public/schemas/components/swatch-group.json b/docs/site/public/schemas/components/swatch-group.json index 9450f5ef..b6559d31 100644 --- a/docs/site/public/schemas/components/swatch-group.json +++ b/docs/site/public/schemas/components/swatch-group.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/swatch-group.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/swatch-group.json", "title": "Swatch group", "description": "A swatch group is a grouping of swatches that are related to each other.", "meta": { diff --git a/docs/site/public/schemas/components/swatch.json b/docs/site/public/schemas/components/swatch.json index a89660da..d2789855 100644 --- a/docs/site/public/schemas/components/swatch.json +++ b/docs/site/public/schemas/components/swatch.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/swatch.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/swatch.json", "title": "Swatch", "description": "A swatch shows a small sample of a fill — such as a color, gradient, texture, or material — that is intended to be applied to an object.", "meta": { diff --git a/docs/site/public/schemas/components/switch.json b/docs/site/public/schemas/components/switch.json index d2472f90..6068d726 100644 --- a/docs/site/public/schemas/components/switch.json +++ b/docs/site/public/schemas/components/switch.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/switch.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/switch.json", "title": "Switch", "description": "Switches allow users to turn an individual option on or off. They are usually used to activate or deactivate a specific setting.", "meta": { diff --git a/docs/site/public/schemas/components/tab-bar-ios.json b/docs/site/public/schemas/components/tab-bar-ios.json index 98844de8..bb964b1c 100644 --- a/docs/site/public/schemas/components/tab-bar-ios.json +++ b/docs/site/public/schemas/components/tab-bar-ios.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tab-bar-ios.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tab-bar-ios.json", "title": "Tab bar (iOS)", "description": "Tab bar is a top-level navigation control for iOS apps.", "meta": { diff --git a/docs/site/public/schemas/components/tabs.json b/docs/site/public/schemas/components/tabs.json index b277e828..10eeeb59 100644 --- a/docs/site/public/schemas/components/tabs.json +++ b/docs/site/public/schemas/components/tabs.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tabs.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tabs.json", "title": "Tabs", "description": "Tabs organize content into multiple sections and allow users to navigate between them. The content under the set of tabs should be related and form a coherent unit.", "meta": { diff --git a/docs/site/public/schemas/components/tag.json b/docs/site/public/schemas/components/tag.json index 69d1ebeb..9304796d 100644 --- a/docs/site/public/schemas/components/tag.json +++ b/docs/site/public/schemas/components/tag.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tag.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tag.json", "title": "Tag", "description": "Tags allow users to categorize content. They can represent keywords or people, and are grouped to describe an item or a search request.", "meta": { diff --git a/docs/site/public/schemas/components/text-area.json b/docs/site/public/schemas/components/text-area.json index 0a245a66..b1713ada 100644 --- a/docs/site/public/schemas/components/text-area.json +++ b/docs/site/public/schemas/components/text-area.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/text-area.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/text-area.json", "title": "Text area", "description": "A text area lets a user input a longer amount of text than a standard text field. It can include all of the standard validation options supported by the text field component.", "meta": { diff --git a/docs/site/public/schemas/components/text-field.json b/docs/site/public/schemas/components/text-field.json index 6c670d6a..54b94952 100644 --- a/docs/site/public/schemas/components/text-field.json +++ b/docs/site/public/schemas/components/text-field.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/text-field.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/text-field.json", "title": "Text field", "description": "Text fields allow users to input custom text entries with a keyboard. Various options can be shown with the field to communicate the input requirements.", "meta": { diff --git a/docs/site/public/schemas/components/toast.json b/docs/site/public/schemas/components/toast.json index df61b581..62da55dd 100644 --- a/docs/site/public/schemas/components/toast.json +++ b/docs/site/public/schemas/components/toast.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/toast.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/toast.json", "title": "Toast", "description": "Toasts display brief, temporary notifications. They're meant to be noticed without disrupting a user's experience or requiring an action to be taken.", "meta": { diff --git a/docs/site/public/schemas/components/tooltip.json b/docs/site/public/schemas/components/tooltip.json index c178d1db..f89e17df 100644 --- a/docs/site/public/schemas/components/tooltip.json +++ b/docs/site/public/schemas/components/tooltip.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tooltip.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tooltip.json", "title": "Tooltip", "description": "Tooltips show contextual help or information about specific components when a user hovers or focuses on them.", "meta": { diff --git a/docs/site/public/schemas/components/tray.json b/docs/site/public/schemas/components/tray.json index 0f79a045..afc1f830 100644 --- a/docs/site/public/schemas/components/tray.json +++ b/docs/site/public/schemas/components/tray.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tray.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tray.json", "title": "Tray", "description": "Trays are containers that display transient content such as menus, options, additional actions, and more. They only exist on mobile experiences and are used for exposing types of content that may be too overwhelming for popovers.", "meta": { diff --git a/docs/site/public/schemas/components/tree-view.json b/docs/site/public/schemas/components/tree-view.json index 1a7e33e5..455f1395 100644 --- a/docs/site/public/schemas/components/tree-view.json +++ b/docs/site/public/schemas/components/tree-view.json @@ -1,6 +1,6 @@ { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/component.json", - "$id": "https://opensource.adobe.com/spectrum-tokens/schema/components/tree-view.json", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/components/tree-view.json", "title": "Tree view", "description": "A tree view provides users with a way to navigate nested hierarchical information.", "meta": { diff --git a/docs/site/public/schemas/token-types/alias.json b/docs/site/public/schemas/token-types/alias.json new file mode 100644 index 00000000..7989b893 --- /dev/null +++ b/docs/site/public/schemas/token-types/alias.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "title": "Alias", + "description": "A token that references another token.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "value": { + "type": "string", + "pattern": "^\\{(\\w|-)*\\}$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/color-set.json b/docs/site/public/schemas/token-types/color-set.json new file mode 100644 index 00000000..636d5867 --- /dev/null +++ b/docs/site/public/schemas/token-types/color-set.json @@ -0,0 +1,69 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "title": "Color set", + "description": "A set that contains color values that change based on color theme.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" + }, + "sets": { + "type": "object", + "anyOf": [ + { + "properties": { + "light": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + }, + "dark": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + }, + "wireframe": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + } + }, + "required": ["light", "dark", "wireframe"] + }, + { + "properties": { + "light": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "dark": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + "wireframe": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + } + }, + "required": ["light", "dark", "wireframe"] + }, + { + "properties": { + "light": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + }, + "dark": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + }, + "wireframe": { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + } + }, + "required": ["light", "dark", "wireframe"] + } + ] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + }, + "required": ["sets"] +} diff --git a/docs/site/public/schemas/token-types/color.json b/docs/site/public/schemas/token-types/color.json new file mode 100644 index 00000000..24db23bd --- /dev/null +++ b/docs/site/public/schemas/token-types/color.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "title": "Color", + "description": "Color token schema.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" + }, + "value": { + "type": "string", + "pattern": "^rgba\\((([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]),\\s?){3}(0|1|0?\\.\\d+)\\)|rgb\\(([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]){1,3}(,\\s?\\d{1,3}%?){2}\\)$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/dimension.json b/docs/site/public/schemas/token-types/dimension.json new file mode 100644 index 00000000..0aac5359 --- /dev/null +++ b/docs/site/public/schemas/token-types/dimension.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "title": "Dimension", + "description": "Pixel or relative dimension.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json" + }, + "value": { + "type": "string", + "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em|%))|0|\\d+dp$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/font-family.json b/docs/site/public/schemas/token-types/font-family.json new file mode 100644 index 00000000..321f61ec --- /dev/null +++ b/docs/site/public/schemas/token-types/font-family.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", + "title": "Font family", + "description": "A font family token defines a font family that can be used in a component.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json" + }, + "value": { + "type": "string", + "pattern": "^(?:\"?\\w+\"? ?,? ?)*\"?\\w+\"?$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/font-size.json b/docs/site/public/schemas/token-types/font-size.json new file mode 100644 index 00000000..e0132631 --- /dev/null +++ b/docs/site/public/schemas/token-types/font-size.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "title": "Dimension", + "description": "Pixel, rem, and em font sizes dimension.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json" + }, + "value": { + "type": "string", + "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em))$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/font-style.json b/docs/site/public/schemas/token-types/font-style.json new file mode 100644 index 00000000..81ed3be4 --- /dev/null +++ b/docs/site/public/schemas/token-types/font-style.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", + "title": "Font style", + "description": "Sets whether a font should be styled with a normal, italic, or oblique face from its font-family", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json" + }, + "value": { + "type": "string", + "enum": ["italic", "normal"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/font-weight.json b/docs/site/public/schemas/token-types/font-weight.json new file mode 100644 index 00000000..067d8505 --- /dev/null +++ b/docs/site/public/schemas/token-types/font-weight.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", + "title": "Font weight", + "description": "Defines sets the weight (or boldness) of the font", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json" + }, + "value": { + "type": "string", + "enum": ["light", "regular", "medium", "bold", "extra-bold", "black"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/multiplier.json b/docs/site/public/schemas/token-types/multiplier.json new file mode 100644 index 00000000..0b4f2271 --- /dev/null +++ b/docs/site/public/schemas/token-types/multiplier.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "title": "Multiplier", + "description": "A float used to multiply a value by a given amount. Also used as a line-height multiplier.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" + }, + "value": { + "type": "string", + "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/opacity.json b/docs/site/public/schemas/token-types/opacity.json new file mode 100644 index 00000000..4344fc7f --- /dev/null +++ b/docs/site/public/schemas/token-types/opacity.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "title": "Opacity", + "description": "A percentage measurement of the opacity.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" + }, + "value": { + "type": "string", + "pattern": "^(?:\\d+(?:\\.\\d)+%)|(?:1|0)(?:\\.0)?|0?\\.\\d*$" + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/scale-set.json b/docs/site/public/schemas/token-types/scale-set.json new file mode 100644 index 00000000..fd0fd174 --- /dev/null +++ b/docs/site/public/schemas/token-types/scale-set.json @@ -0,0 +1,54 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "title": "Scale set", + "description": "A set that contains dimension values that change based on platform scale.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json" + }, + "sets": { + "type": "object", + "properties": { + "mobile": { + "anyOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + } + ] + }, + "desktop": { + "anyOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + } + ] + } + }, + "required": ["mobile", "desktop"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + }, + "required": ["sets"] +} diff --git a/docs/site/public/schemas/token-types/set.json b/docs/site/public/schemas/token-types/set.json new file mode 100644 index 00000000..12b036d3 --- /dev/null +++ b/docs/site/public/schemas/token-types/set.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json", + "title": "sets", + "description": "A generic token set.", + "type": "object", + "properties": { + "sets": { + "type": "object" + }, + "component": { + "type": "string" + }, + "deprecated": { + "type": "boolean" + }, + "deprecated_comment": { + "type": "string" + } + }, + "required": ["sets"] +} diff --git a/packages/tokens/schemas/token-types/system-set.json b/docs/site/public/schemas/token-types/system-set.json similarity index 100% rename from packages/tokens/schemas/token-types/system-set.json rename to docs/site/public/schemas/token-types/system-set.json diff --git a/docs/site/public/schemas/token-types/text-transform.json b/docs/site/public/schemas/token-types/text-transform.json new file mode 100644 index 00000000..ffb4466d --- /dev/null +++ b/docs/site/public/schemas/token-types/text-transform.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", + "title": "Text transform", + "description": "A token that specifies how to capitalize an element's text.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json" + }, + "value": { + "type": "string", + "enum": ["uppercase", "lowercase", "capitalize", "none"] + }, + "component": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/token.json b/docs/site/public/schemas/token-types/token.json new file mode 100644 index 00000000..4dba66bc --- /dev/null +++ b/docs/site/public/schemas/token-types/token.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json", + "title": "Token", + "description": "A general token.", + "type": "object", + "properties": { + "value": { + "type": "string" + }, + "component": { + "type": "string" + }, + "deprecated": { + "type": "boolean" + }, + "deprecated_comment": { + "type": "string" + }, + "uuid": { + "type": "string", + "pattern": "^[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}$", + "format": "uuid" + } + }, + "required": ["value", "uuid"] +} diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 0f6c91f8..dd49c15a 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -590,7 +590,7 @@ "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{notice-color-1100}", - "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" + "uuid": "0fdc01c4-459a-4f74-a8e0-fdbe93f8138f" } } }, diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 3e74a8a9..e4900ad0 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -394,7 +394,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "e804baf9-ae2c-4574-96d9-10cd5253fe47" } } @@ -414,7 +414,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "05ffb7a9-8bd9-46cd-bfb0-66217d52ceb1" } } @@ -434,7 +434,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "1f9bd0a5-d1ed-4d24-b8bf-273f5f22a5f4" } } @@ -454,7 +454,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "94ed3997-5b56-41e8-9746-1d7515244c6e" } } @@ -474,7 +474,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "23852b5e-2d80-4c89-946c-1c8c2fe37b39" } } @@ -494,7 +494,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "ca7117db-c105-446f-85e5-72f1191b9cfd" } } @@ -514,7 +514,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "560dddaa-d4ae-4d84-8750-30eb72f9e33c" } } @@ -534,7 +534,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "0a50f1d3-8ae9-4955-9b1e-3d18121a3302" } } @@ -554,7 +554,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "84bc6532-7cb0-47ea-8951-b16bc2a7aab9" } } @@ -574,7 +574,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "895407bb-8fda-4857-92a9-bf0cc06f2c3f" } } @@ -594,7 +594,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "a50fef9e-d01f-490c-9baa-8c9672f1ac96" } } @@ -614,7 +614,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "85683533-e660-4037-ad0a-3d5e7714a757" } } @@ -634,7 +634,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "ccde5f80-26bb-4de8-9982-0f7fd3a97e7d" } } @@ -654,7 +654,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "4dbbc998-deeb-4268-9a6a-c49a57ff0bcc" } } @@ -674,7 +674,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "0284c8ef-fd73-4c33-8f31-bc9a83a5a84f" } } @@ -694,7 +694,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "07862296-803e-42fc-8ba1-ff8c25e76f66" } } @@ -714,7 +714,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "9d380e6c-f6e9-433d-a8d8-f2432181736c" } } @@ -734,7 +734,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "b9752d64-5683-4ddc-ae30-164c475a5d90" } } @@ -754,7 +754,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "1d78cfc4-2c54-450e-9c5a-e3d3a40bcf32" } } @@ -774,7 +774,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "c020ab70-b666-478b-aaf2-8e06c033f307" } } @@ -794,7 +794,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "4ca331f0-9278-4ad7-9328-766e8a5f83e6" } } @@ -814,7 +814,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "92784233-e6b0-4de0-8069-f3c037472dec" } } @@ -834,7 +834,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "3fe966a7-eac1-4e06-9652-271182ff332d" } } @@ -854,7 +854,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "fd598b48-a775-4c72-92e5-55f357c33537" } } @@ -874,7 +874,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "abc67d6b-bd80-4e94-a91b-1f52216a5013" } } @@ -894,7 +894,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "f9fbdd87-77f6-4b99-b5f5-357604b57a48" } } @@ -914,7 +914,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "d3c2852d-4d9f-4493-af1a-cba5269baf22" } } @@ -934,7 +934,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "fb1cf925-d51e-4b6a-9cd1-ee711193a03a" } } @@ -954,7 +954,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "2caf3838-8be9-41d9-9cb9-fa2e6a2f8373" } } @@ -974,7 +974,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "5e630b5e-ff35-4463-8db5-79519a54d64f" } } @@ -994,7 +994,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "e70a8b5a-06ec-4771-9c16-9e74ae15c9bc" } } @@ -1014,7 +1014,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "421ec0d6-4d71-4c2d-8a39-19e3700451f0" } } @@ -1034,7 +1034,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "50807cbc-ade6-4f6d-8711-f569a52adaf8" } } @@ -1054,7 +1054,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "e4fff178-2055-4ec8-83e8-636a4ea8bb8c" } } @@ -1074,7 +1074,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "47e53be7-b33b-48e3-abdf-fe48d59f8819" } } @@ -1094,7 +1094,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "c455298b-cc23-4504-b731-27be6433fbcd" } } @@ -1114,7 +1114,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "2c08292c-e6cc-4dcb-9046-8a2af09d1e43" } } @@ -1134,7 +1134,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "e6c70e40-f9e7-4975-af39-9458a8325c6f" } } @@ -1154,7 +1154,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "8a201cca-353e-4538-a6b5-efbc2fc86186" } } @@ -1174,7 +1174,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "58992b4e-69ab-4919-922a-dd9277cb770e" } } @@ -1194,7 +1194,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "8f42ee1b-59a5-4759-bef3-614835b348b2" } } @@ -1214,7 +1214,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "69637678-cb68-46f1-9353-1c7d0f86e51e" } } @@ -1234,7 +1234,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "bc744bfa-dd64-4660-b67c-105f07e66644" } } @@ -1254,7 +1254,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "7aea0d8d-0fb0-47c1-ae6a-97510159359b" } } @@ -1274,7 +1274,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "269da724-5ec7-4ceb-991d-1e83495cfaed" } } @@ -1294,7 +1294,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "c1389efc-8e68-4e2d-94b1-17e193264be7" } } @@ -1314,7 +1314,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "0d6ed0c9-b185-4656-9985-04904a39f5e6" } } @@ -1334,7 +1334,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "ea973b33-e10f-44b6-a621-92c752edb8af" } } @@ -1354,7 +1354,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "c93608b1-700d-496c-90c4-298870776956" } } @@ -1374,7 +1374,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "be46f4fb-64d6-4e04-abd1-1f87c634d272" } } @@ -1394,7 +1394,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "2e4d1e66-b660-4e99-8f01-ff9964aa19d8" } } @@ -1414,7 +1414,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "6547eb52-a3a5-4004-8125-df92fed7a062" } } @@ -1434,7 +1434,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "2c6515da-f97b-4961-93cf-5b6c668fc0fc" } } @@ -1454,7 +1454,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "8e450204-2aa5-4cb2-959b-8fc28f7f55bf" } } @@ -1474,7 +1474,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "dfdf38c7-1e23-44a8-8a62-a5f6c3a341bf" } } @@ -1494,7 +1494,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "69c7c213-9a1c-4cd2-ac90-2142aa955e00" } } @@ -1514,7 +1514,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "9ebe0ca0-5580-4083-899a-ba4a4638254d" } } @@ -1534,7 +1534,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "a9e4cb0b-80af-417f-b8d5-b1a7aefa15e5" } } @@ -1554,7 +1554,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "7e7a2c49-bf61-4402-b85b-bf4df9ca8ff0" } } @@ -1574,7 +1574,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "b54bc7bb-2347-4265-ba88-8af7fa420bdf" } } @@ -1594,7 +1594,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "2e92e2de-12fa-45d3-be1d-5d875311bf1e" } } @@ -1614,7 +1614,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "21c27c6d-f054-48b4-abb8-5b0907e238e2" } } @@ -1634,7 +1634,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "e0d95ec7-193d-40d1-9bd9-e68ff27c0275" } } @@ -1654,7 +1654,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "8be0ad1a-0cdf-409d-953f-0a203282e1d9" } } @@ -1674,7 +1674,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "15f47c52-fa9c-4982-ad9c-684024a9a667" } } @@ -1694,7 +1694,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "cc59e104-9997-4ed2-a29e-0af0b1a04b67" } } @@ -1714,7 +1714,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "838a5de8-2ec7-4814-8ba9-eaa4b0ad8e55" } } @@ -1734,7 +1734,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "bbb32db5-4835-4520-8bb1-ef2c8916c604" } } @@ -1754,7 +1754,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "eb857d3b-1956-4870-98cb-eaaffffaed85" } } @@ -1774,7 +1774,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "7bffe928-4940-41b1-a9d4-3cbee27cb472" } } @@ -1794,7 +1794,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "788108ff-5238-4a75-8936-092df93a3fd0" } } @@ -1814,7 +1814,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "0386fb0b-3653-4015-a3a1-cbf047435f0f" } } @@ -1834,7 +1834,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "c8046b7e-506c-47b7-8105-4d7e805f6b92" } } @@ -1854,7 +1854,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "5f1f16c2-d562-4dd8-9b96-9d19b9a88093" } } @@ -1874,7 +1874,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "9a6983b0-a2ba-4633-a618-f3b4ac8f05c6" } } @@ -1894,7 +1894,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "8e44257e-ec8e-4459-863e-0bbbab65f6e0" } } @@ -1914,7 +1914,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "9af36936-6d05-4ba4-8beb-9b65bafb9277" } } @@ -1934,7 +1934,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "acb36528-7ad1-497c-baf7-c53171ce4112" } } @@ -1954,7 +1954,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "485b7081-a921-42ee-b781-8a99bfeb84fa" } } @@ -1974,7 +1974,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "75e5c281-4c83-4ffe-a1de-aedfa65be894" } } @@ -1994,7 +1994,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "a8d9965e-14d9-4015-9a6f-421400c6d011" } } @@ -2014,7 +2014,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "a52ac86a-8627-483b-b747-6e8aa5fa7249" } } @@ -2034,7 +2034,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "a83229ca-de1f-4fdb-a72b-b8a3498a31bb" } } @@ -2054,7 +2054,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "5b271002-0fe2-4407-be21-7c09646a2303" } } @@ -2074,7 +2074,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "813b3e86-659b-48ee-b88d-122c13fa96e8" } } @@ -2094,7 +2094,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "13e77335-22c0-470a-a5e5-da6363f622e0" } } @@ -2114,7 +2114,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "a52a4fbf-dc30-4c09-b1d8-b25bcead712c" } } @@ -2134,7 +2134,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "3e9a8018-a0bf-4562-867d-555c75c08d9f" } } @@ -2154,7 +2154,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "7a5096e0-6845-4ae5-bab4-d958c7e3dadb" } } @@ -2174,7 +2174,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "10c7c9b0-0d15-43ae-bf6f-84384783a9aa" } } @@ -2194,7 +2194,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "085d2bcb-85b1-4b55-842b-9559c457a1a0" } } @@ -2214,7 +2214,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "5c9ac732-7e1a-448c-b338-18d3b265d5d1" } } @@ -2234,7 +2234,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "865fc403-cab2-4e38-a181-e5e10523e04d" } } @@ -2254,7 +2254,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "cc88021a-ce1a-4f69-9208-d1b897a1d71b" } } @@ -2274,7 +2274,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "0fd51556-72b0-48ea-86f2-435bf64de316" } } @@ -2294,7 +2294,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "fe522078-7e21-447e-bd4f-e5f2ea6845d9" } } @@ -2314,7 +2314,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "99fb92f6-7186-4432-99ec-d5fa5b35c5be" } } @@ -2334,7 +2334,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "f0702380-ed81-4f16-844c-b4c3b797161c" } } @@ -2354,7 +2354,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "b5d964d5-e68d-44c6-880f-2e23d2bae7ec" } } @@ -2374,7 +2374,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "1aaecce9-f58c-44a5-9bb9-f62172ebcd21" } } @@ -2394,7 +2394,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "8143aced-4012-4dc3-a132-2b5701e09a52" } } @@ -2414,7 +2414,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "9418d6a8-69a1-49a4-ac3d-d81c81a633be" } } @@ -2434,7 +2434,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "57d2a064-3028-4225-82c4-e200e4abc6a3" } } @@ -2454,7 +2454,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "fa823d25-6075-455b-a6f4-18de77a01f06" } } @@ -2474,7 +2474,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "12755af6-ac1f-441a-80fb-07c3d61dc6c9" } } @@ -2494,7 +2494,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "81174c05-0b05-4030-a8b7-e2fc13533954" } } @@ -2514,7 +2514,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "a1c41ddd-5c54-4dce-bea3-51768998639c" } } @@ -2534,7 +2534,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "7f426d3d-5ff9-4ee2-b0e1-07282fe389df" } } @@ -2554,7 +2554,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "515298b6-f629-4c08-9e0f-18a5ba8fe20f" } } @@ -2574,7 +2574,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "ce02582f-b327-4367-9f66-92dcc67fd072" } } @@ -2594,7 +2594,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "51b8502d-e045-4b40-93e1-e2b49f6bf90c" } } @@ -2614,7 +2614,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "490cf084-b56e-4464-8e38-1bb15458213e" } } @@ -2634,7 +2634,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "96e3e83b-1878-460e-9bc2-aa25a36ff887" } } @@ -2654,7 +2654,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "3c862893-b1e9-45df-99da-33906686d3c1" } } @@ -2674,7 +2674,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "4115d94a-b52e-4cc8-8067-cd9184030ffe" } } @@ -2694,7 +2694,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "56c4f393-086d-41d9-87d0-babaea86a2a4" } } @@ -2714,7 +2714,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "21467045-093e-461e-86ac-dc65b657bf50" } } @@ -2734,7 +2734,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "50117040-ca43-4b90-832d-7e4c2d83c31c" } } @@ -2754,7 +2754,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "0a450ad0-dd5e-414c-9b76-dac4ca20a1b8" } } @@ -2774,7 +2774,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "c26d7e9d-fef9-4aa9-991b-bbac307e3c7a" } } @@ -2794,7 +2794,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "7a88f0bf-59cb-4af3-9542-f7648fecd50e" } } @@ -2814,7 +2814,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "8e444b02-f977-4948-b862-63275642ad58" } } @@ -2834,7 +2834,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "72873817-3cf5-4a14-aa93-1f86b4c6f7f2" } } @@ -2854,7 +2854,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "fb3f4cf4-e032-4cc1-94b1-d122f0d695ac" } } @@ -2874,7 +2874,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "8a7fb1d7-90ca-41d1-a04c-84bd1d70d9ec" } } @@ -2894,7 +2894,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "3e88a833-9ef2-4f37-86a1-041e76850e1e" } } @@ -2914,7 +2914,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "badc0d78-4232-44f0-8911-e9e2f0eab94f" } } @@ -2934,7 +2934,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "fd0d5cda-892b-4628-a125-353dcd123987" } } @@ -2954,7 +2954,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "6685e580-982d-4f86-800a-19797f1675af" } } @@ -2974,7 +2974,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "28fe7c7b-b43c-4650-9155-5b0f5ec27a09" } } @@ -2994,7 +2994,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "b6b314ea-f9ba-4f49-a115-f4177ecb7bbc" } } @@ -3014,7 +3014,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "f7d51b4b-6c95-4271-a51e-4ad5a1660591" } } @@ -3034,7 +3034,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "6c2a20c7-e453-4401-a0b4-8e0d1d7edd7e" } } @@ -3054,7 +3054,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "39f96e8f-c9c8-4158-8da9-6825cd084fc3" } } @@ -3074,7 +3074,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "6f67dfce-62d0-4147-aac6-33873a325cd3" } } @@ -3094,7 +3094,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "08173787-f50d-48a7-badc-141a9e7b7981" } } @@ -3114,7 +3114,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "a006424a-ad2b-4091-a38d-b4af80ddc03e" } } @@ -3134,7 +3134,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "03de1fef-9ae1-457d-917b-6f22fb545d00" } } @@ -3154,7 +3154,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "8dd5e110-aa2f-47b2-aa21-30bc4241db86" } } @@ -3174,7 +3174,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "4698ba84-dab0-4b6b-a2b1-e289261aa7b4" } } @@ -3194,7 +3194,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "8e12e7fe-546a-4e8c-92eb-56673446b1bb" } } @@ -3214,7 +3214,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "958d5c96-6b57-47c2-a9a5-f589c054aa13" } } @@ -3234,7 +3234,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "8a2d9c8d-a95a-48ac-b6eb-0ca1d5e69bd7" } } @@ -3254,7 +3254,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "6aa5f844-ba8d-40a3-86ec-109e9430ace5" } } @@ -3274,7 +3274,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "9bf84aeb-6822-40c9-b027-8db8a49fd54b" } } @@ -3294,7 +3294,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "37af1036-6ba7-4eac-b1a5-9442ff55036f" } } @@ -3314,7 +3314,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "401d532f-8374-4e5a-99c5-51c4ec9bc344" } } @@ -3334,7 +3334,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "fb607a6f-2d62-4163-a6a3-068b80a084da" } } @@ -3354,7 +3354,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "5cd6358b-bdc0-488e-a5fe-089a769b6bfb" } } @@ -3374,7 +3374,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "a9e657da-8f33-425a-b2ab-dca9d1337bf3" } } @@ -3394,7 +3394,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "233a1b84-3ab6-4899-9b41-d9177356c175" } } @@ -3414,7 +3414,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "feeeaa05-5c75-4a06-b5be-ed8bf3ecd773" } } @@ -3434,7 +3434,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "63e9a41c-ee85-43c1-b550-3ca8ce7c0986" } } @@ -3454,7 +3454,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "39f6823f-ca35-413c-ad64-31529710cf3c" } } @@ -3474,7 +3474,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "ef5ddbb5-3e37-4806-b863-9369294dc07a" } } @@ -3494,7 +3494,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "f4c7c283-b412-4acc-b2f5-0339f946ff3d" } } @@ -3514,7 +3514,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "91d7c77f-6cb0-4f1d-92ea-03965a296cc6" } } @@ -3534,7 +3534,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "a274d960-197e-4045-99d3-9919cfa90e6e" } } @@ -3554,7 +3554,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "46fa9ff8-5758-41c3-b0aa-fefd075eb739" } } @@ -3574,7 +3574,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "72c07c8d-19f8-44de-8e73-98997502cf86" } } @@ -3594,7 +3594,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "2f76990f-4bfd-4b4d-b063-aa374ea9df83" } } @@ -3614,7 +3614,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "8898f93b-9e3f-4143-bb78-fd0afd4c4ee0" } } @@ -3634,7 +3634,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "0980d65e-bf37-40c7-a59c-5a0c80795211" } } @@ -3654,7 +3654,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "2f450b24-782a-428f-80ff-9d762e22e44c" } } @@ -3674,7 +3674,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "7faf15d0-6890-4cde-919e-1b720d5bfc0a" } } @@ -3694,7 +3694,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "2473ee91-ecb3-414d-ac05-8b040aee3283" } } @@ -3714,7 +3714,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "78f628a8-2d9f-4532-8502-bf389ec8ae7d" } } @@ -3734,7 +3734,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "8cdcca2d-71d7-4a08-b7a0-072e954980fe" } } @@ -3754,7 +3754,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "32ee4548-9a32-476b-a245-f0af6c701fdb" } } @@ -3774,7 +3774,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "1f898f83-cd72-4bf1-bd66-ee1486a0f70d" } } @@ -3794,7 +3794,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "2287f92f-6851-4f5f-b48c-3a43067a7a08" } } @@ -3814,7 +3814,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "ed68aade-7d0a-4029-bf17-9a3b88f08ceb" } } @@ -3834,7 +3834,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "aa502b60-e84f-4a35-910f-de28016d44fc" } } @@ -3854,7 +3854,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "eeb7a71b-1a59-4629-a1fd-4fe9bae6d3db" } } @@ -3874,7 +3874,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "10c0a8e7-8496-4421-bfa0-cc41af6271d7" } } @@ -3894,7 +3894,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "05c1a879-e716-4f67-97ab-7f524b713815" } } @@ -3914,7 +3914,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "1d742643-035d-4966-aba9-2be2bbfb793e" } } @@ -3934,7 +3934,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "c826bbb3-badb-48a1-becf-86f5f395eef7" } } @@ -3954,7 +3954,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "eed8370d-a367-4333-ba69-56843a7657ba" } } @@ -3974,7 +3974,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "7b52a8c6-67b3-4d8c-b506-aa5eeababdfb" } } @@ -3994,7 +3994,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "670788fe-2614-4673-bda2-681622680109" } } @@ -4014,7 +4014,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "906889fa-ad69-4129-978c-23ea12d2b362" } } @@ -4034,7 +4034,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "0b09ae9a-7aa8-4b63-b6c4-4317b03dc3ff" } } @@ -4054,7 +4054,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "02b7bf12-ff14-4829-aa9b-52c3033b0652" } } @@ -4074,7 +4074,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "a6344998-b1e8-4651-a4c9-b1b2aa22d48b" } } @@ -4094,7 +4094,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "2a29020c-1524-4b9b-a249-25b9927d4a54" } } @@ -4114,7 +4114,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "7606b799-458c-466e-96c6-a0a7e949a83c" } } @@ -4134,7 +4134,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "aa82e21e-e5a2-4bcd-a63d-a2d76c467ac7" } } @@ -4154,7 +4154,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "bdb3a49e-331e-44b9-96e2-4f1dccdae565" } } @@ -4174,7 +4174,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "c53a7f46-12aa-48c9-afdf-20e7a26bbb09" } } @@ -4194,7 +4194,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "ee6b1d77-41ce-4c87-9d95-098f5fc66da9" } } @@ -4214,7 +4214,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "a8afc139-5eeb-4b56-9acd-62433f802563" } } @@ -4234,7 +4234,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "cd37d695-d1b0-4322-92f7-9bc0a347aa90" } } @@ -4254,7 +4254,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "3f70bddc-f8e3-41a1-a68e-9500ac9a2474" } } @@ -4274,7 +4274,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "074993b8-2652-448c-a6ca-b18a39176ed9" } } @@ -4294,7 +4294,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "04b09fbb-08cb-4fe3-a287-d7de2bf39312" } } @@ -4314,7 +4314,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "41d578d1-c853-4360-95e9-b94ad61e7786" } } @@ -4334,7 +4334,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "0734c859-3e4c-4974-98e2-700c49c69bcd" } } @@ -4354,7 +4354,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "e70126f5-e8d6-47e2-9737-0dbb17655b1f" } } @@ -4374,7 +4374,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "e5ffefaa-72d6-444d-8f9f-3fb08a9f2480" } } @@ -4394,7 +4394,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "6dca10b8-2ed2-463c-82f5-fad66a833675" } } @@ -4414,7 +4414,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "991792f1-03ed-494b-ada7-1beb965e39c9" } } @@ -4434,7 +4434,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "8a8e447b-6b31-4758-b59e-51acad7c9210" } } @@ -4454,7 +4454,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "9784741b-612e-4986-952b-a102c04e2afd" } } @@ -4474,7 +4474,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "3c632a35-bf86-4182-9475-84854a20f15a" } } @@ -4494,7 +4494,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "030c6431-3ea5-429b-a492-1a01dd396d44" } } @@ -4514,7 +4514,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "b6dd1b22-5f8f-46d8-924e-4ce02ad5a99f" } } @@ -4534,7 +4534,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "950ba124-e6b5-47b6-b1b8-31960f7cc380" } } @@ -4554,7 +4554,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "2fc90f48-a54e-4aae-9b9f-aa3c4d7e55de" } } @@ -4574,7 +4574,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "4c01ddf8-d689-4433-826c-75b33bc2214d" } } @@ -4594,7 +4594,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "d4e972fb-fbd5-4b37-bd20-9487ed47d243" } } @@ -4614,7 +4614,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "83e9b8e8-ff2a-49fc-9ac8-349c694c1aec" } } @@ -4634,7 +4634,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "ba838eaa-0dc0-4bbd-be25-300e8bd89272" } } @@ -4654,7 +4654,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "356a4b99-8ffc-4d11-b56e-a88c5e70194d" } } @@ -4674,7 +4674,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "527b5dcd-0896-4dbc-82f9-866297227eb0" } } @@ -4694,7 +4694,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "873c22cd-488b-45d4-a79d-0473fc4f3c7f" } } @@ -4714,7 +4714,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "b50fbb92-1897-469d-a867-d9f6e5070c2e" } } @@ -4734,7 +4734,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "85c314fe-cdfe-4542-856f-f58acfad1aee" } } @@ -4754,7 +4754,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "deac6200-0e75-47d5-9073-3aaa390f1cd1" } } @@ -4774,7 +4774,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "b9911ab3-fa6b-42e7-9247-c341b68ee151" } } @@ -4794,7 +4794,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "4c73d77d-95e3-4311-b644-2b55ad4552cf" } } @@ -4814,7 +4814,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "efa5d789-8e54-493d-9787-8e5dce4180a0" } } @@ -4834,7 +4834,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "4d10b352-648d-404a-a863-3fd3308b2696" } } @@ -4854,7 +4854,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "13813529-7eb8-4171-a40b-a719c430299b" } } @@ -4874,7 +4874,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "44800628-6a86-49de-b44f-256ca36c4127" } } @@ -4894,7 +4894,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "094b2708-cb1f-4936-96ee-503cf113ab7a" } } @@ -4914,7 +4914,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "e5a0aca5-4d22-4d1a-9732-6e0e2c98e72d" } } @@ -4934,7 +4934,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "c4877ffd-985b-4260-b1c3-3ac37392315a" } } @@ -4954,7 +4954,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "f136369b-3ac7-4041-871e-90c90f3da3a9" } } @@ -4974,7 +4974,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "4320a8e7-3509-45c6-b133-02bf0e779a42" } } @@ -4994,7 +4994,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "1ce42e96-435f-4895-896d-268dcdf16b21" } } @@ -5014,7 +5014,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "9ffcdab9-e422-4ece-b292-6b8ce227bef8" } } @@ -5034,7 +5034,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "a6548e62-22e6-4089-b098-0a8bb60676ec" } } @@ -5054,7 +5054,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "2084f7e5-221c-4a4e-96e0-fa0ff2fa40f1" } } @@ -5074,7 +5074,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "7c82b1ca-e445-45a0-b7b2-5ed3030e92e7" } } @@ -5094,7 +5094,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "e3e88d56-d236-41f7-8eaa-3804576b6161" } } @@ -5114,7 +5114,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "1ca86f12-0424-40b5-a606-912e2fcc5cc1" } } @@ -5134,7 +5134,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "07b5d5b0-8952-4901-a0e5-227fa3e1aacf" } } @@ -5154,7 +5154,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "81180029-eec8-4d26-9fe0-3966aa372151" } } @@ -5174,7 +5174,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "1162302d-4bcf-478a-a95e-660785220434" } } @@ -5194,7 +5194,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "21be860b-80bb-40a1-9aaf-20a97b2ddc77" } } @@ -5214,7 +5214,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "3d64c998-df63-4695-a1d1-00d78ed2097b" } } @@ -5234,7 +5234,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "5d0e6309-481d-40f9-81b9-7d0bee9cf794" } } @@ -5254,7 +5254,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "e710f0e9-90a7-4ed9-8d2b-6a8c9ed778db" } } @@ -5274,7 +5274,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "7a9223ac-0dee-4dd5-8b11-b04815683c6b" } } @@ -5294,7 +5294,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "bca8a6a6-557e-4930-b765-0dcc9867c42a" } } @@ -5314,7 +5314,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "ef14139b-0550-4a5a-b2f5-eb787bcf406d" } } @@ -5334,7 +5334,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "45f999be-146e-4b0f-97de-ef1f7e82d675" } } @@ -5354,7 +5354,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "2c0181c8-ef5c-46c8-bc3e-703d08f3692b" } } @@ -5374,7 +5374,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "6756882c-f521-49fc-b7c9-3dc8f4d39d5a" } } @@ -5394,7 +5394,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "a2a5c52d-7381-47b8-9b67-5d3c86e8ff21" } } @@ -5414,7 +5414,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "1c1c2c57-890d-4638-b219-5b5e1953ba57" } } @@ -5434,7 +5434,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "df9afc4f-bb87-4dae-b2b6-f7d27a590593" } } @@ -5454,7 +5454,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "1e9a6104-d427-4197-8e01-25673c917143" } } @@ -5474,7 +5474,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "2ceb2cda-a535-44eb-ae23-b922edcb8bb8" } } @@ -5494,7 +5494,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "19c96dc5-7a37-4381-a7e8-ac1c442afda6" } } @@ -5514,7 +5514,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "cb18b0b7-7ad5-419f-863c-fdbb05c624c3" } } @@ -5534,7 +5534,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "7e0c8012-9ec4-40c3-a572-dd551627e54f" } } @@ -5554,7 +5554,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "240ade94-eb1b-4ddd-b667-7c05af2b196a" } } @@ -5574,7 +5574,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "da36dc54-21c0-412f-baa1-ae3a2810b926" } } @@ -5594,7 +5594,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "a52e646b-54c7-419b-850e-1da7abc74dd3" } } @@ -5614,7 +5614,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "696e8452-cd1b-4ab8-b9d6-eb2b76bdf020" } } @@ -5634,7 +5634,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "b0f8e027-ba0e-4460-8d45-b0ada27327d9" } } @@ -5654,7 +5654,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "907d96cc-375b-49a7-abe0-afb229c98474" } } @@ -5674,7 +5674,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "8ed554bc-be40-4ebb-9a83-c85c73c0cb3d" } } @@ -5694,7 +5694,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "3f1bbfff-8a14-4984-a725-211aba36fa98" } } @@ -5714,7 +5714,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "28a8b564-c9fb-41ab-b989-47516f9c0135" } } @@ -5734,7 +5734,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "69a3ff9a-dec9-4a96-b54f-f9ca12568e59" } } @@ -5754,7 +5754,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "18013461-754d-434e-8b05-269dd307d45a" } } @@ -5774,7 +5774,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "8119e422-4eb8-44fc-bf69-b1f76963afca" } } @@ -5794,7 +5794,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "9313f4d5-1105-4cb0-81f4-a8a5109594a0" } } @@ -5814,7 +5814,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "dba91bae-1dae-4687-be68-d831a5bd42ba" } } @@ -5834,7 +5834,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "cd1b844a-29bf-4643-a246-4f124544e25d" } } @@ -5854,7 +5854,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 245, 251)", + "value": "rgb(246, 248, 252)", "uuid": "3c3b2fb7-053d-47ca-86a6-4d1ee07b6f3f" } } @@ -5874,7 +5874,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 241, 250)", + "value": "rgb(235, 239, 248)", "uuid": "07d13e6d-0df2-4eee-8550-ef033f954e9e" } } @@ -5894,7 +5894,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 238, 248)", + "value": "rgb(216, 224, 242)", "uuid": "74d44818-bbbd-44a3-b9f0-7131fb036498" } } @@ -5914,7 +5914,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(226, 232, 247)", + "value": "rgb(192, 205, 234)", "uuid": "2a7d78f3-ad8d-4301-96e8-f2a4ed378c00" } } @@ -5934,7 +5934,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 225, 244)", + "value": "rgb(164, 183, 225)", "uuid": "c607ecc8-35ed-4d47-a683-54d57b816fbd" } } @@ -5954,7 +5954,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 215, 241)", + "value": "rgb(135, 160, 215)", "uuid": "d46ae80e-04ba-418f-8368-1d8c0633c0d1" } } @@ -5974,7 +5974,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 205, 237)", + "value": "rgb(113, 142, 208)", "uuid": "71085b67-c49c-4b1e-b708-6b38c16b9d37" } } @@ -5994,7 +5994,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 192, 233)", + "value": "rgb(93, 127, 201)", "uuid": "e78bd82d-f4c0-4617-92bb-08a69153bacd" } } @@ -6014,7 +6014,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 177, 227)", + "value": "rgb(74, 111, 195)", "uuid": "cdaaa5e1-7ca5-43a8-bdb4-3ef8fedbb30d" } } @@ -6034,7 +6034,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(133, 161, 219)", + "value": "rgb(61, 94, 165)", "uuid": "696315e6-4d82-49a0-8781-853beb0d1f5b" } } @@ -6054,7 +6054,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 145, 211)", + "value": "rgb(52, 79, 140)", "uuid": "41f0e438-0ca6-4240-84e7-dedfcff1aa21" } } @@ -6074,7 +6074,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 130, 201)", + "value": "rgb(42, 65, 114)", "uuid": "87e41d92-4099-4248-963c-394d43e33657" } } @@ -6094,7 +6094,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 117, 192)", + "value": "rgb(34, 51, 91)", "uuid": "2c86bff2-dddd-4fea-b6da-99873fa74da3" } } @@ -6114,7 +6114,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 109, 184)", + "value": "rgb(25, 39, 69)", "uuid": "2ec58374-b4c1-4e03-8f3f-57c747a7ed47" } } @@ -6134,7 +6134,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(18, 27, 48)", "uuid": "1adb9cd6-2ba1-4501-ab9d-f377ae07d399" } } @@ -6154,7 +6154,7 @@ }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 255, 0)", + "value": "rgb(8, 12, 22)", "uuid": "321a9931-be34-4ce9-8180-8e7fd87e30f4" } } From dc6ea6b22ddc932fd97a06f927851499385b8110 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 4 Jan 2024 10:31:44 -0700 Subject: [PATCH 043/295] chore: update deps --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/release.yml | 2 +- .moon/toolchain.yml | 2 +- package.json | 8 +- pnpm-lock.yaml | 728 +++++++++++++++++------------- 5 files changed, 423 insertions(+), 319 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 7a9626d4..25a2cd20 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.12.1 + version: 8.14.0 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run site:export diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3b234f3..ec43990d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.12.1 + version: 8.14.0 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run :build --query "projectSource~packages/*" diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index f6faa6ad..7faf11dc 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "8.12.1" + version: "8.14.0" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index 5eaaa94e..1d777af1 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,9 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@changesets/cli": "^2.27.1", - "@commitlint/cli": "^18.4.3", - "@commitlint/config-conventional": "^18.4.3", - "@moonrepo/cli": "^1.18.1", + "@commitlint/cli": "^18.4.4", + "@commitlint/config-conventional": "^18.4.4", + "@moonrepo/cli": "^1.19.0", "ava": "^6.0.1", "husky": "^8.0.3", "lint-staged": "^15.2.0", @@ -34,5 +34,5 @@ "engines": { "node": "18.13.0" }, - "packageManager": "pnpm@8.12.1" + "packageManager": "pnpm@8.14.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dc082b84..4f7828d2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,14 +11,14 @@ importers: specifier: ^2.27.1 version: 2.27.1 "@commitlint/cli": - specifier: ^18.4.3 - version: 18.4.3(typescript@5.3.3) + specifier: ^18.4.4 + version: 18.4.4(@types/node@20.10.6)(typescript@5.3.3) "@commitlint/config-conventional": - specifier: ^18.4.3 - version: 18.4.3 + specifier: ^18.4.4 + version: 18.4.4 "@moonrepo/cli": - specifier: ^1.18.1 - version: 1.18.1 + specifier: ^1.19.0 + version: 1.19.0 ava: specifier: ^6.0.1 version: 6.0.1 @@ -39,7 +39,7 @@ importers: version: 5.0.31 "@spectrum-css/table": specifier: ^4.0.60 - version: 4.0.60(@spectrum-css/icon@3.0.49)(@spectrum-css/vars@9.0.8) + version: 4.0.60(@spectrum-css/icon@5.0.0)(@spectrum-css/vars@9.0.8) "@spectrum-css/tokens": specifier: ^11.0.0 version: 11.0.0 @@ -168,44 +168,45 @@ importers: version: 3.1.1 packages: - /@babel/code-frame@7.22.5: + /@babel/code-frame@7.23.5: resolution: { - integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==, + integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/highlight": 7.22.5 + "@babel/highlight": 7.23.4 + chalk: 2.4.2 dev: true - /@babel/helper-validator-identifier@7.22.5: + /@babel/helper-validator-identifier@7.22.20: resolution: { - integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, + integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, } engines: { node: ">=6.9.0" } dev: true - /@babel/highlight@7.22.5: + /@babel/highlight@7.23.4: resolution: { - integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==, + integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-validator-identifier": 7.22.5 + "@babel/helper-validator-identifier": 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/runtime@7.22.6: + /@babel/runtime@7.23.7: resolution: { - integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==, + integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==, } engines: { node: ">=6.9.0" } dependencies: - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.14.1 dev: true /@changesets/apply-release-plan@7.0.0: @@ -214,7 +215,7 @@ packages: integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/config": 3.0.0 "@changesets/get-version-range-type": 0.4.0 "@changesets/git": 3.0.0 @@ -235,7 +236,7 @@ packages: integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/errors": 0.2.0 "@changesets/get-dependents-graph": 2.0.0 "@changesets/types": 6.0.0 @@ -259,7 +260,7 @@ packages: } hasBin: true dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/apply-release-plan": 7.0.0 "@changesets/assemble-release-plan": 6.0.0 "@changesets/changelog-git": 0.2.0 @@ -274,23 +275,23 @@ packages: "@changesets/types": 6.0.0 "@changesets/write": 0.3.0 "@manypkg/get-packages": 1.1.3 - "@types/semver": 7.5.0 + "@types/semver": 7.5.6 ansi-colors: 4.1.3 chalk: 2.4.2 - ci-info: 3.8.0 - enquirer: 2.3.6 + ci-info: 3.9.0 + enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 human-id: 1.0.2 meow: 6.1.1 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.0.3 + preferred-pm: 3.1.2 resolve-from: 5.0.0 semver: 7.5.4 spawndamnit: 2.0.0 term-size: 2.2.1 - tty-table: 4.2.1 + tty-table: 4.2.3 dev: true /@changesets/config@3.0.0: @@ -336,7 +337,7 @@ packages: integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/assemble-release-plan": 6.0.0 "@changesets/config": 3.0.0 "@changesets/pre": 2.0.0 @@ -358,7 +359,7 @@ packages: integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -392,7 +393,7 @@ packages: integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -405,7 +406,7 @@ packages: integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/git": 3.0.0 "@changesets/logger": 0.1.0 "@changesets/parse": 0.4.0 @@ -435,64 +436,65 @@ packages: integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 dev: true - /@commitlint/cli@18.4.3(typescript@5.3.3): + /@commitlint/cli@18.4.4(@types/node@20.10.6)(typescript@5.3.3): resolution: { - integrity: sha512-zop98yfB3A6NveYAZ3P1Mb6bIXuCeWgnUfVNkH4yhIMQpQfzFwseadazOuSn0OOfTt0lWuFauehpm9GcqM5lww==, + integrity: sha512-Ro3wIo//fV3XiV1EkdpHog6huaEyNcUAVrSmtgKqYM5g982wOWmP4FXvEDFwRMVgz878CNBvvCc33dMZ5AQJ/g==, } engines: { node: ">=v18" } hasBin: true dependencies: - "@commitlint/format": 18.4.3 - "@commitlint/lint": 18.4.3 - "@commitlint/load": 18.4.3(typescript@5.3.3) - "@commitlint/read": 18.4.3 - "@commitlint/types": 18.4.3 + "@commitlint/format": 18.4.4 + "@commitlint/lint": 18.4.4 + "@commitlint/load": 18.4.4(@types/node@20.10.6)(typescript@5.3.3) + "@commitlint/read": 18.4.4 + "@commitlint/types": 18.4.4 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 resolve-global: 1.0.0 yargs: 17.7.2 transitivePeerDependencies: + - "@types/node" - typescript dev: true - /@commitlint/config-conventional@18.4.3: + /@commitlint/config-conventional@18.4.4: resolution: { - integrity: sha512-729eRRaNta7JZF07qf6SAGSghoDEp9mH7yHU0m7ff0q89W97wDrWCyZ3yoV3mcQJwbhlmVmZPTkPcm7qiAu8WA==, + integrity: sha512-Bz3sPQSboBN+Et/KyZrR+OJ3z9PrHDw7Bls0/hv94PmuHBtMq1dCGxS9XzTGzxeMNlytCC4kxF083tbhPljl3Q==, } engines: { node: ">=v18" } dependencies: conventional-changelog-conventionalcommits: 7.0.2 dev: true - /@commitlint/config-validator@18.4.3: + /@commitlint/config-validator@18.4.4: resolution: { - integrity: sha512-FPZZmTJBARPCyef9ohRC9EANiQEKSWIdatx5OlgeHKu878dWwpyeFauVkhzuBRJFcCA4Uvz/FDtlDKs008IHcA==, + integrity: sha512-/QI8KIg/h7O0Eus36fPcEcO3QPBcdXuGfZeCF5m15k0EB2bcU8s6pHNTNEa6xz9PrAefHCL+yzRJj7w20T6Mow==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.3 + "@commitlint/types": 18.4.4 ajv: 8.12.0 dev: true - /@commitlint/ensure@18.4.3: + /@commitlint/ensure@18.4.4: resolution: { - integrity: sha512-MI4fwD9TWDVn4plF5+7JUyLLbkOdzIRBmVeNlk4dcGlkrVA+/l5GLcpN66q9LkFsFv6G2X31y89ApA3hqnqIFg==, + integrity: sha512-KjD19p6julB5WrQL+Cd8p+AePwpl1XzGAjB0jnuFMKWtji9L7ucCZUKDstGjlkBZGGzH/nvdB8K+bh5K27EVUg==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.3 + "@commitlint/types": 18.4.4 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -500,157 +502,156 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule@18.4.3: + /@commitlint/execute-rule@18.4.4: resolution: { - integrity: sha512-t7FM4c+BdX9WWZCPrrbV5+0SWLgT3kCq7e7/GhHCreYifg3V8qyvO127HF796vyFql75n4TFF+5v1asOOWkV1Q==, + integrity: sha512-a37Nd3bDQydtg9PCLLWM9ZC+GO7X5i4zJvrggJv5jBhaHsXeQ9ZWdO6ODYR+f0LxBXXNYK3geYXJrCWUCP8JEg==, } engines: { node: ">=v18" } dev: true - /@commitlint/format@18.4.3: + /@commitlint/format@18.4.4: resolution: { - integrity: sha512-8b+ItXYHxAhRAXFfYki5PpbuMMOmXYuzLxib65z2XTqki59YDQJGpJ/wB1kEE5MQDgSTQWtKUrA8n9zS/1uIDQ==, + integrity: sha512-2v3V5hVlv0R3pe7p66IX5F7cjeVvGM5JqITRIbBCFvGHPJ/CG74rjTkAu0RBEiIhlk3eOaLjVGq3d5falPkLBA==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.3 + "@commitlint/types": 18.4.4 chalk: 4.1.2 dev: true - /@commitlint/is-ignored@18.4.3: + /@commitlint/is-ignored@18.4.4: resolution: { - integrity: sha512-ZseOY9UfuAI32h9w342Km4AIaTieeFskm2ZKdrG7r31+c6zGBzuny9KQhwI9puc0J3GkUquEgKJblCl7pMnjwg==, + integrity: sha512-rXWes9owKBTjfTr6Od7YlflRg4N+ngkOH+dUZhk0qL/XQb26mHz0EgVgdixMVBac1OsohRwJaLmVHX+5F6vfmg==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.3 + "@commitlint/types": 18.4.4 semver: 7.5.4 dev: true - /@commitlint/lint@18.4.3: + /@commitlint/lint@18.4.4: resolution: { - integrity: sha512-18u3MRgEXNbnYkMOWoncvq6QB8/90m9TbERKgdPqVvS+zQ/MsuRhdvHYCIXGXZxUb0YI4DV2PC4bPneBV/fYuA==, + integrity: sha512-SoyQstVxMY5Z4GnFRtRzy+NWYb+yVseXgir+7BxnpB59oH05C9XztRrhDw6OnkNeXhjINTpi1HLnuY7So+CaAQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/is-ignored": 18.4.3 - "@commitlint/parse": 18.4.3 - "@commitlint/rules": 18.4.3 - "@commitlint/types": 18.4.3 + "@commitlint/is-ignored": 18.4.4 + "@commitlint/parse": 18.4.4 + "@commitlint/rules": 18.4.4 + "@commitlint/types": 18.4.4 dev: true - /@commitlint/load@18.4.3(typescript@5.3.3): + /@commitlint/load@18.4.4(@types/node@20.10.6)(typescript@5.3.3): resolution: { - integrity: sha512-v6j2WhvRQJrcJaj5D+EyES2WKTxPpxENmNpNG3Ww8MZGik3jWRXtph0QTzia5ZJyPh2ib5aC/6BIDymkUUM58Q==, + integrity: sha512-RaDIa9qwOw2xRJ3Jr2DBXd14rmnHJIX2XdZF4kmoF1rgsg/+7cvrExLSUNAkQUNimyjCn1b/bKX2Omm+GdY0XQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 18.4.3 - "@commitlint/execute-rule": 18.4.3 - "@commitlint/resolve-extends": 18.4.3 - "@commitlint/types": 18.4.3 - "@types/node": 18.19.3 + "@commitlint/config-validator": 18.4.4 + "@commitlint/execute-rule": 18.4.4 + "@commitlint/resolve-extends": 18.4.4 + "@commitlint/types": 18.4.4 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.3.3) - cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@5.3.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.10.6)(cosmiconfig@8.3.6)(typescript@5.3.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 transitivePeerDependencies: + - "@types/node" - typescript dev: true - /@commitlint/message@18.4.3: + /@commitlint/message@18.4.4: resolution: { - integrity: sha512-ddJ7AztWUIoEMAXoewx45lKEYEOeOlBVWjk8hDMUGpprkuvWULpaXczqdjwVtjrKT3JhhN+gMs8pm5G3vB2how==, + integrity: sha512-lHF95mMDYgAI1LBXveJUyg4eLaMXyOqJccCK3v55ZOEUsMPrDi8upqDjd/NmzWmESYihaOMBTAnxm+6oD1WoDQ==, } engines: { node: ">=v18" } dev: true - /@commitlint/parse@18.4.3: + /@commitlint/parse@18.4.4: resolution: { - integrity: sha512-eoH7CXM9L+/Me96KVcfJ27EIIbA5P9sqw3DqjJhRYuhaULIsPHFs5S5GBDCqT0vKZQDx0DgxhMpW6AQbnKrFtA==, + integrity: sha512-99G7dyn/OoyNWXJni0Ki0K3aJd01pEb/Im/Id6y4X7PN+kGOahjz2z/cXYYHn7xDdooqFVdiVrVLeChfgpWZ2g==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.3 + "@commitlint/types": 18.4.4 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 dev: true - /@commitlint/read@18.4.3: + /@commitlint/read@18.4.4: resolution: { - integrity: sha512-H4HGxaYA6OBCimZAtghL+B+SWu8ep4X7BwgmedmqWZRHxRLcX2q0bWBtUm5FsMbluxbOfrJwOs/Z0ah4roP/GQ==, + integrity: sha512-r58JbWky4gAFPea/CZmvlqP9Ehbs+8gSEUqhIJOojKzTc3xlxFnZUDVPcEnnaqzQEEoV6C69VW7xuzdcBlu/FQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/top-level": 18.4.3 - "@commitlint/types": 18.4.3 - fs-extra: 11.1.1 + "@commitlint/top-level": 18.4.4 + "@commitlint/types": 18.4.4 git-raw-commits: 2.0.11 minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@18.4.3: + /@commitlint/resolve-extends@18.4.4: resolution: { - integrity: sha512-30sk04LZWf8+SDgJrbJCjM90gTg2LxsD9cykCFeFu+JFHvBFq5ugzp2eO/DJGylAdVaqxej3c7eTSE64hR/lnw==, + integrity: sha512-RRpIHSbRnFvmGifVk21Gqazf1QF/yeP+Kkg/e3PlkegcOKd/FGOXp/Kx9cvSO2K7ucSn4GD/oBvgasFoy+NCAw==, } engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 18.4.3 - "@commitlint/types": 18.4.3 + "@commitlint/config-validator": 18.4.4 + "@commitlint/types": 18.4.4 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules@18.4.3: + /@commitlint/rules@18.4.4: resolution: { - integrity: sha512-8KIeukDf45BiY+Lul1T0imSNXF0sMrlLG6JpLLKolkmYVQ6PxxoNOriwyZ3UTFFpaVbPy0rcITaV7U9JCAfDTA==, + integrity: sha512-6Uzlsnl/GljEI+80NWjf4ThOfR8NIsbm18IfXYuCEchlwMHSxiuYG4rHSK5DNmG/+MIo8eR5VdQ0gQyt7kWzAA==, } engines: { node: ">=v18" } dependencies: - "@commitlint/ensure": 18.4.3 - "@commitlint/message": 18.4.3 - "@commitlint/to-lines": 18.4.3 - "@commitlint/types": 18.4.3 + "@commitlint/ensure": 18.4.4 + "@commitlint/message": 18.4.4 + "@commitlint/to-lines": 18.4.4 + "@commitlint/types": 18.4.4 execa: 5.1.1 dev: true - /@commitlint/to-lines@18.4.3: + /@commitlint/to-lines@18.4.4: resolution: { - integrity: sha512-fy1TAleik4Zfru1RJ8ZU6cOSvgSVhUellxd3WZV1D5RwHZETt1sZdcA4mQN2y3VcIZsUNKkW0Mq8CM9/L9harQ==, + integrity: sha512-mwe2Roa59NCz/krniAdCygFabg7+fQCkIhXqBHw00XQ8Y7lw4poZLLxeGI3p3bLpcEOXdqIDrEGLwHmG5lBdwQ==, } engines: { node: ">=v18" } dev: true - /@commitlint/top-level@18.4.3: + /@commitlint/top-level@18.4.4: resolution: { - integrity: sha512-E6fJPBLPFL5R8+XUNSYkj4HekIOuGMyJo3mIx2PkYc3clel+pcWQ7TConqXxNWW4x1ugigiIY2RGot55qUq1hw==, + integrity: sha512-PBwW1drgeavl9CadB7IPRUk6rkUP/O8jEkxjlC+ofuh3pw0bzJdAT+Kw7M1Yc9KtTb9xTaqUB8uvRtaybHa/tQ==, } engines: { node: ">=v18" } dependencies: find-up: 5.0.0 dev: true - /@commitlint/types@18.4.3: + /@commitlint/types@18.4.4: resolution: { - integrity: sha512-cvzx+vtY/I2hVBZHCLrpoh+sA0hfuzHwDc+BAFPimYLjJkpHnghQM+z8W/KyLGkygJh3BtI3xXXq+dKjnSWEmA==, + integrity: sha512-/FykLtodD8gKs3+VNkAUwofu4LBHankclj+I8fB2jTRvG6PV7k/OUt4P+VbM7ip853qS4F0g7Z6hLNa6JeMcAQ==, } engines: { node: ">=v18" } dependencies: @@ -991,7 +992,7 @@ packages: integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -1003,7 +1004,7 @@ packages: integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, } dependencies: - "@babel/runtime": 7.22.6 + "@babel/runtime": 7.23.7 "@changesets/types": 4.1.0 "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 @@ -1026,35 +1027,35 @@ packages: npmlog: 5.0.1 rimraf: 3.0.2 semver: 7.5.4 - tar: 6.1.15 + tar: 6.2.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@moonrepo/cli@1.18.1: + /@moonrepo/cli@1.19.0: resolution: { - integrity: sha512-Ueqd/TJ4cx29hoLyg5yMy91buet1jN7Mr9RzsfPxDEX5DX7La73CJ5KcovUHUGep3ezySgjYSrJ7YSQoKuJSdw==, + integrity: sha512-yyDb32xvNDJuoaMFm6vT4BlIhgPij+XeQcWYGVgZ53klX0daBm7PEYkurLC8cxHRZsRsCWCWtLaunn/qoL2I+Q==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.18.1 - "@moonrepo/core-linux-arm64-musl": 1.18.1 - "@moonrepo/core-linux-x64-gnu": 1.18.1 - "@moonrepo/core-linux-x64-musl": 1.18.1 - "@moonrepo/core-macos-arm64": 1.18.1 - "@moonrepo/core-macos-x64": 1.18.1 - "@moonrepo/core-windows-x64-msvc": 1.18.1 + "@moonrepo/core-linux-arm64-gnu": 1.19.0 + "@moonrepo/core-linux-arm64-musl": 1.19.0 + "@moonrepo/core-linux-x64-gnu": 1.19.0 + "@moonrepo/core-linux-x64-musl": 1.19.0 + "@moonrepo/core-macos-arm64": 1.19.0 + "@moonrepo/core-macos-x64": 1.19.0 + "@moonrepo/core-windows-x64-msvc": 1.19.0 dev: true - /@moonrepo/core-linux-arm64-gnu@1.18.1: + /@moonrepo/core-linux-arm64-gnu@1.19.0: resolution: { - integrity: sha512-eHQ46thO5JMvonEdk448Wlp2d6jIy4s1sPeT/bEA2Nupytk1v+u5c++FE361OYqZU2oxx7jlMfJsuGxlE9G+Rg==, + integrity: sha512-Tr5HGwa3QWwPybLzVPuXVJVhZNY1Y42T7V7+HrWPOJLxbljZGxN/ouiOWhcBqcHN1y6gfvmmxWn68/KQnhIT2w==, } cpu: [arm64] os: [linux] @@ -1062,10 +1063,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.18.1: + /@moonrepo/core-linux-arm64-musl@1.19.0: resolution: { - integrity: sha512-tl/fZ7mwiT5Mr3Eq6HuHnleZF2LV71TjML6E0KqpKUdZziPVoiRPn4yOYfyk4vDzYUt57tALFQMogwpPua6a+A==, + integrity: sha512-ULBf7YT/KDvUdRf3mjcw/I7KetxDfRkC0jmpUKZGsXHhb2kFsareMsSiEmX2qLC3og6Hdx0TMPs3oLRU7PkZpA==, } cpu: [arm64] os: [linux] @@ -1073,10 +1074,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.18.1: + /@moonrepo/core-linux-x64-gnu@1.19.0: resolution: { - integrity: sha512-2NVSdMlzWmd2V+xvs2sZ0Nr1WEeLUIvJ2NVXnD4iHe5U8LLljoco2Cx3rZq448M58tqHdPd2dEA2ShD53+RORQ==, + integrity: sha512-EzGnyg9U/WPW854348shn/DdG/RgjZNfKhHJlEfj5GH2Fj7tIYKvonknnJmACYVkpoIQ14mkwTE9PufjKgkwXQ==, } cpu: [x64] os: [linux] @@ -1084,10 +1085,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.18.1: + /@moonrepo/core-linux-x64-musl@1.19.0: resolution: { - integrity: sha512-GjGIwQFhy+SZA8aCEg7aIozmVfvq0QvAdC/5yy+arWIkfXYiA3A/NS8pCyJGiljeGWLi8ARCTCxm5i7SllDb6A==, + integrity: sha512-cM8RgMBQABWNoJriRDr5Xce07SrgjWI7kXrHK0sFBED9gjKJ9OpAox3OjnjUC0DV0309CMRyEswj3R2z6iDtWg==, } cpu: [x64] os: [linux] @@ -1095,10 +1096,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.18.1: + /@moonrepo/core-macos-arm64@1.19.0: resolution: { - integrity: sha512-NDF11czfMzqhm8YGlS/8EoaCyb5/V51dEV4dub8IV29WM1mzCMM8RaCS/eUPvVap0QaGCIBXTZXbAJ/ZmWenXg==, + integrity: sha512-WEIDwFmSHcxP10ZHSoLWVuSWI/UURqY+0pxhs8Pdtro5aFJ+ww2j9kxp+2Q/8DmI84eqtzabq1+O+pkV3+DFvw==, } cpu: [arm64] os: [darwin] @@ -1106,10 +1107,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.18.1: + /@moonrepo/core-macos-x64@1.19.0: resolution: { - integrity: sha512-gVauLjkLG8BqcjGQk33kYTmJhAhWXTz0c46mYXN96x7Qz401cpbtsROUW1hyVCqOpXJ1giHVUVxzUUZM68J44g==, + integrity: sha512-Pe9wq75anb2VcnuNmj4xaZT655ogBbR5Xa6DzJO8huBF9sTlDlu/lFa8Kr77PVON4yReH7BPU+OIHxibozqYTQ==, } cpu: [x64] os: [darwin] @@ -1117,10 +1118,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.18.1: + /@moonrepo/core-windows-x64-msvc@1.19.0: resolution: { - integrity: sha512-CvOW5HgCIBNA2mL5qp49RW2QunVAsFs0+NvSTAN8KDTDlXodINEp74XKEr+LXqX0fDbcQkiWlzacj/Tr8GN3OA==, + integrity: sha512-IkRniy5WLV5UYh95z0I6NVAMFvnq3iYv0DYSmgVaszJCTxnOye1iuC7J4bZBHSURuN5H8+nsawlg1okgxzAfmw==, } cpu: [x64] os: [win32] @@ -1270,7 +1271,7 @@ packages: engines: { node: ">= 8" } dependencies: "@nodelib/fs.scandir": 2.1.5 - fastq: 1.15.0 + fastq: 1.16.0 dev: true /@pkgjs/parseargs@0.11.0: @@ -1301,10 +1302,10 @@ packages: engines: { node: ">=18" } dev: true - /@spectrum-css/icon@3.0.49(@spectrum-css/vars@9.0.8): + /@spectrum-css/icon@5.0.0(@spectrum-css/vars@9.0.8): resolution: { - integrity: sha512-CQAPZqn2l4/osbeSIUlB9DstA8dTipvitWeyXwLjEPO68CKkVgAu9Iq10HlxEKdAO3sdG6aET3S9BURdWvZO+w==, + integrity: sha512-O31EthbXYZFyZBpq3W5STvlnca82amuynrS4UuXhNSb/BIly9t1erqSx7jzXxzYwj7l+8+chfibjc6eJjKAIZg==, } peerDependencies: "@spectrum-css/vars": ">=9" @@ -1321,7 +1322,7 @@ packages: "@spectrum-css/vars": 9.0.8 dev: false - /@spectrum-css/table@4.0.60(@spectrum-css/icon@3.0.49)(@spectrum-css/vars@9.0.8): + /@spectrum-css/table@4.0.60(@spectrum-css/icon@5.0.0)(@spectrum-css/vars@9.0.8): resolution: { integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==, @@ -1330,7 +1331,7 @@ packages: "@spectrum-css/icon": ">=3" "@spectrum-css/vars": ">=9" dependencies: - "@spectrum-css/icon": 3.0.49(@spectrum-css/vars@9.0.8) + "@spectrum-css/icon": 5.0.0(@spectrum-css/vars@9.0.8) "@spectrum-css/vars": 9.0.8 dev: false @@ -1680,10 +1681,10 @@ packages: tslib: 2.6.0 dev: false - /@types/minimist@1.2.2: + /@types/minimist@1.2.5: resolution: { - integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, + integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, } dev: true @@ -1694,10 +1695,10 @@ packages: } dev: true - /@types/node@18.19.3: + /@types/node@20.10.6: resolution: { - integrity: sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==, + integrity: sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==, } dependencies: undici-types: 5.26.5 @@ -1710,17 +1711,17 @@ packages: } dev: true - /@types/normalize-package-data@2.4.1: + /@types/normalize-package-data@2.4.4: resolution: { - integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, + integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, } dev: true - /@types/semver@7.5.0: + /@types/semver@7.5.6: resolution: { - integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==, + integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==, } dev: true @@ -1741,7 +1742,7 @@ packages: dependencies: "@mapbox/node-pre-gyp": 1.0.11 "@rollup/pluginutils": 4.2.1 - acorn: 8.11.2 + acorn: 8.11.3 async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 @@ -1781,10 +1782,10 @@ packages: engines: { node: ">=0.4.0" } dev: true - /acorn@8.11.2: + /acorn@8.11.3: resolution: { - integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==, + integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, } engines: { node: ">=0.4.0" } hasBin: true @@ -1924,7 +1925,7 @@ packages: integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 is-array-buffer: 3.0.2 dev: true @@ -1951,17 +1952,33 @@ packages: engines: { node: ">=8" } dev: true - /array.prototype.flat@1.3.1: + /array.prototype.flat@1.3.2: + resolution: + { + integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /arraybuffer.prototype.slice@1.0.2: resolution: { - integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==, + integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - es-shim-unscopables: 1.0.0 + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 dev: true /arrgv@1.0.2: @@ -2009,7 +2026,7 @@ packages: optional: true dependencies: "@vercel/nft": 0.24.4 - acorn: 8.11.2 + acorn: 8.11.3 acorn-walk: 8.3.1 ansi-styles: 6.2.1 arrgv: 1.0.2 @@ -2140,14 +2157,15 @@ packages: streamsearch: 1.1.0 dev: false - /call-bind@1.0.2: + /call-bind@1.0.5: resolution: { - integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==, } dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 dev: true /callsites@3.1.0: @@ -2297,10 +2315,10 @@ packages: } dev: true - /ci-info@3.8.0: + /ci-info@3.9.0: resolution: { - integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, } engines: { node: ">=8" } dev: true @@ -2552,7 +2570,7 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@5.3.3): + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.10.6)(cosmiconfig@8.3.6)(typescript@5.3.3): resolution: { integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, @@ -2563,7 +2581,7 @@ packages: cosmiconfig: ">=8.2" typescript: ">=4" dependencies: - "@types/node": 18.19.3 + "@types/node": 20.10.6 cosmiconfig: 8.3.6(typescript@5.3.3) jiti: 1.21.0 typescript: 5.3.3 @@ -2730,14 +2748,27 @@ packages: clone: 1.0.4 dev: true - /define-properties@1.2.0: + /define-data-property@1.1.1: resolution: { - integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, + integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==, } engines: { node: ">= 0.4" } dependencies: - has-property-descriptors: 1.0.0 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /define-properties@1.2.1: + resolution: + { + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 object-keys: 1.1.1 dev: true @@ -2827,14 +2858,15 @@ packages: integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, } - /enquirer@2.3.6: + /enquirer@2.4.1: resolution: { - integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==, + integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, } engines: { node: ">=8.6" } dependencies: ansi-colors: 4.1.3 + strip-ansi: 6.0.1 dev: true /error-ex@1.3.2: @@ -2846,69 +2878,73 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract@1.21.3: + /es-abstract@1.22.3: resolution: { - integrity: sha512-ZU4miiY1j3sGPFLJ34VJXEqhpmL+HGByCinGHv4HC+Fxl2fI2Z4yR6tl0mORnDr6PA8eihWo4LmSWDbvhALckg==, + integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==, } engines: { node: ">= 0.4" } dependencies: array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 + hasown: 2.0.0 + internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.3 + object-inspect: 1.13.1 object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.10 + which-typed-array: 1.1.13 dev: true - /es-set-tostringtag@2.0.1: + /es-set-tostringtag@2.0.2: resolution: { - integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, + integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==, } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 + hasown: 2.0.0 dev: true - /es-shim-unscopables@1.0.0: + /es-shim-unscopables@1.0.2: resolution: { - integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, + integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, } dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /es-to-primitive@1.2.1: @@ -3049,7 +3085,7 @@ packages: human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.1.0 + npm-run-path: 5.2.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 @@ -3101,10 +3137,10 @@ packages: micromatch: 4.0.5 dev: true - /fastq@1.15.0: + /fastq@1.16.0: resolution: { - integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, + integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==, } dependencies: reusify: 1.0.4 @@ -3215,18 +3251,6 @@ packages: universalify: 2.0.0 dev: true - /fs-extra@11.1.1: - resolution: - { - integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==, - } - engines: { node: ">=14.14" } - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 - dev: true - /fs-extra@7.0.1: resolution: { @@ -3268,10 +3292,10 @@ packages: } dev: true - /fsevents@2.3.2: + /fsevents@2.3.3: resolution: { - integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, } engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] @@ -3279,23 +3303,23 @@ packages: dev: true optional: true - /function-bind@1.1.1: + /function-bind@1.1.2: resolution: { - integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, } dev: true - /function.prototype.name@1.1.5: + /function.prototype.name@1.1.6: resolution: { - integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 dev: true @@ -3340,16 +3364,16 @@ packages: engines: { node: ">=18" } dev: true - /get-intrinsic@1.2.1: + /get-intrinsic@1.2.2: resolution: { - integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, + integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, } dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 + hasown: 2.0.0 dev: true /get-stream@6.0.1: @@ -3375,8 +3399,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true /git-raw-commits@2.0.11: @@ -3456,7 +3480,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 dev: true /globby@11.1.0: @@ -3469,7 +3493,7 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.2 - ignore: 5.2.4 + ignore: 5.3.0 merge2: 1.4.1 slash: 3.0.0 dev: true @@ -3483,7 +3507,7 @@ packages: dependencies: "@sindresorhus/merge-streams": 1.0.0 fast-glob: 3.3.2 - ignore: 5.2.4 + ignore: 5.3.0 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -3495,7 +3519,7 @@ packages: integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, } dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 dev: true /graceful-fs@4.2.11: @@ -3542,13 +3566,13 @@ packages: engines: { node: ">=8" } dev: true - /has-property-descriptors@1.0.0: + /has-property-descriptors@1.0.1: resolution: { - integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==, } dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 dev: true /has-proto@1.0.1: @@ -3584,14 +3608,14 @@ packages: } dev: true - /has@1.0.3: + /hasown@2.0.0: resolution: { - integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, } - engines: { node: ">= 0.4.0" } + engines: { node: ">= 0.4" } dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 dev: true /header-case@2.0.4: @@ -3684,10 +3708,10 @@ packages: engines: { node: ">=10 <11 || >=12 <13 || >=14" } dev: true - /ignore@5.2.4: + /ignore@5.3.0: resolution: { - integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, + integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==, } engines: { node: ">= 4" } dev: true @@ -3751,15 +3775,15 @@ packages: } dev: true - /internal-slot@1.0.5: + /internal-slot@1.0.6: resolution: { - integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, + integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 + hasown: 2.0.0 side-channel: 1.0.4 dev: true @@ -3777,9 +3801,9 @@ packages: integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - is-typed-array: 1.1.10 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 dev: true /is-arrayish@0.2.1: @@ -3805,7 +3829,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true @@ -3817,13 +3841,13 @@ packages: engines: { node: ">= 0.4" } dev: true - /is-core-module@2.12.1: + /is-core-module@2.13.1: resolution: { - integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==, + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, } dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /is-date-object@1.0.5: @@ -3943,7 +3967,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true @@ -3953,7 +3977,7 @@ packages: integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-stream@2.0.1: @@ -4012,18 +4036,14 @@ packages: text-extensions: 2.4.0 dev: true - /is-typed-array@1.1.10: + /is-typed-array@1.1.12: resolution: { - integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==, + integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, } engines: { node: ">= 0.4" } dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 + which-typed-array: 1.1.13 dev: true /is-unicode-supported@2.0.0: @@ -4040,7 +4060,7 @@ packages: integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-windows@1.0.2: @@ -4051,6 +4071,13 @@ packages: engines: { node: ">=0.10.0" } dev: true + /isarray@2.0.5: + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } + dev: true + /isexe@2.0.0: resolution: { @@ -4524,7 +4551,7 @@ packages: } engines: { node: ">=8" } dependencies: - "@types/minimist": 1.2.2 + "@types/minimist": 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -4544,7 +4571,7 @@ packages: } engines: { node: ">=10" } dependencies: - "@types/minimist": 1.2.2 + "@types/minimist": 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -4688,10 +4715,10 @@ packages: yallist: 4.0.0 dev: true - /mixme@0.5.9: + /mixme@0.5.10: resolution: { - integrity: sha512-VC5fg6ySUscaWUpI4gxCBTQMH2RdUpNrk+MsbpCYtIvf9SBJdiUey4qE7BXviJsJR4nDQxCZ+3yaYNW3guz/Pw==, + integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==, } engines: { node: ">= 8.0.0" } dev: true @@ -4832,7 +4859,7 @@ packages: } dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 dev: true @@ -4845,7 +4872,7 @@ packages: engines: { node: ">=10" } dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.12.1 + is-core-module: 2.13.1 semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true @@ -4860,10 +4887,10 @@ packages: path-key: 3.1.1 dev: true - /npm-run-path@5.1.0: + /npm-run-path@5.2.0: resolution: { - integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, + integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==, } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: @@ -4890,10 +4917,10 @@ packages: engines: { node: ">=0.10.0" } dev: true - /object-inspect@1.12.3: + /object-inspect@1.13.1: resolution: { - integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, + integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, } dev: true @@ -4905,15 +4932,15 @@ packages: engines: { node: ">= 0.4" } dev: true - /object.assign@4.1.4: + /object.assign@4.1.5: resolution: { - integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 dev: true @@ -5074,7 +5101,7 @@ packages: } engines: { node: ">=8" } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -5255,10 +5282,10 @@ packages: source-map-js: 1.0.2 dev: true - /preferred-pm@3.0.3: + /preferred-pm@3.1.2: resolution: { - integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==, + integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==, } engines: { node: ">=10" } dependencies: @@ -5366,7 +5393,7 @@ packages: } engines: { node: ">=8" } dependencies: - "@types/normalize-package-data": 2.4.1 + "@types/normalize-package-data": 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 @@ -5408,23 +5435,23 @@ packages: strip-indent: 3.0.0 dev: true - /regenerator-runtime@0.13.11: + /regenerator-runtime@0.14.1: resolution: { - integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, } dev: true - /regexp.prototype.flags@1.5.0: + /regexp.prototype.flags@1.5.1: resolution: { - integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, + integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 dev: true /require-directory@2.1.1: @@ -5485,14 +5512,14 @@ packages: global-dirs: 0.1.1 dev: true - /resolve@1.22.2: + /resolve@1.22.8: resolution: { - integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==, + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, } hasBin: true dependencies: - is-core-module: 2.12.1 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -5552,7 +5579,7 @@ packages: engines: { node: ">=14.18.0", npm: ">=8.0.0" } hasBin: true optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: true /run-parallel@1.2.0: @@ -5564,6 +5591,19 @@ packages: queue-microtask: 1.2.3 dev: true + /safe-array-concat@1.0.1: + resolution: + { + integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==, + } + engines: { node: ">=0.4" } + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + /safe-buffer@5.2.1: resolution: { @@ -5577,8 +5617,8 @@ packages: integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 dev: true @@ -5653,6 +5693,31 @@ packages: } dev: true + /set-function-length@1.1.1: + resolution: + { + integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /set-function-name@2.0.1: + resolution: + { + integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + dev: true + /shebang-command@1.2.0: resolution: { @@ -5693,9 +5758,9 @@ packages: integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 dev: true /signal-exit@3.0.7: @@ -5758,7 +5823,7 @@ packages: engines: { node: ">=6" } hasBin: true dependencies: - array.prototype.flat: 1.3.1 + array.prototype.flat: 1.3.2 breakword: 1.0.6 grapheme-splitter: 1.0.4 strip-ansi: 6.0.1 @@ -5800,7 +5865,7 @@ packages: } dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 dev: true /spdx-exceptions@2.3.0: @@ -5817,13 +5882,13 @@ packages: } dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 dev: true - /spdx-license-ids@3.0.13: + /spdx-license-ids@3.0.16: resolution: { - integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==, + integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==, } dev: true @@ -5867,7 +5932,7 @@ packages: integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, } dependencies: - mixme: 0.5.9 + mixme: 0.5.10 dev: true /streamsearch@1.1.0: @@ -5920,38 +5985,38 @@ packages: strip-ansi: 7.1.0 dev: true - /string.prototype.trim@1.2.7: + /string.prototype.trim@1.2.8: resolution: { - integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, + integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimend@1.0.6: + /string.prototype.trimend@1.0.7: resolution: { - integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, + integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimstart@1.0.6: + /string.prototype.trimstart@1.0.7: resolution: { - integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, + integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /string_decoder@1.3.0: @@ -6119,6 +6184,21 @@ packages: yallist: 4.0.0 dev: true + /tar@6.2.0: + resolution: + { + integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==, + } + engines: { node: ">=10" } + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + dev: true + /temp-dir@3.0.0: resolution: { @@ -6234,10 +6314,10 @@ packages: integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==, } - /tty-table@4.2.1: + /tty-table@4.2.3: resolution: { - integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==, + integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==, } engines: { node: ">=8.0.0" } hasBin: true @@ -6291,6 +6371,31 @@ packages: engines: { node: ">=14.16" } dev: true + /typed-array-buffer@1.0.0: + resolution: + { + integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: + { + integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + /typed-array-byte-offset@1.0.0: resolution: { @@ -6299,10 +6404,10 @@ packages: engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 dev: true /typed-array-length@1.0.4: @@ -6311,9 +6416,9 @@ packages: integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 dev: true /typescript@5.3.3: @@ -6331,7 +6436,7 @@ packages: integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -6447,7 +6552,7 @@ packages: postcss: 8.4.26 rollup: 3.26.2 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: true /watchpack@2.4.0: @@ -6526,19 +6631,18 @@ packages: path-exists: 4.0.0 dev: true - /which-typed-array@1.1.10: + /which-typed-array@1.1.13: resolution: { - integrity: sha512-uxoA5vLUfRPdjCuJ1h5LlYdmTLbYfums398v3WLkM+i/Wltl2/XyZpQWKbN++ck5L64SR/grOHqtXCUKmlZPNA==, + integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, } engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 dev: true /which@1.3.1: From 9e7e93225ca2abef5f0dcd2dc87b2edc1af77367 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 4 Jan 2024 10:33:57 -0700 Subject: [PATCH 044/295] fix: remove unused system-set in beta branch --- .../schemas/token-types/system-set.json | 71 ------------------- 1 file changed, 71 deletions(-) delete mode 100644 docs/site/public/schemas/token-types/system-set.json diff --git a/docs/site/public/schemas/token-types/system-set.json b/docs/site/public/schemas/token-types/system-set.json deleted file mode 100644 index b9ae7a9f..00000000 --- a/docs/site/public/schemas/token-types/system-set.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/system-set.json", - "title": "System set", - "description": "A set that contains tokens that change based on system.", - "type": "object", - "allOf": [ - { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/set.json" - } - ], - "properties": { - "$schema": { - "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/system-set.json" - }, - "sets": { - "type": "object", - "anyOf": [ - { - "properties": { - "spectrum": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" - }, - "express": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" - } - }, - "required": ["spectrum", "express"] - }, - { - "properties": { - "spectrum": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" - }, - "express": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" - } - }, - "required": ["spectrum", "express"] - }, - { - "properties": { - "spectrum": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" - }, - "express": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" - } - }, - "required": ["spectrum", "express"] - }, - { - "properties": { - "spectrum": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json" - }, - "express": { - "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json" - } - }, - "required": ["spectrum", "express"] - } - ] - }, - "component": {}, - "deprecated": {}, - "deprecated_comment": {}, - "uuid": {} - }, - "required": ["sets"] -} From b1ef29a343075686a17a23c4b8ddb25d8aaf0d1d Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 4 Jan 2024 11:22:10 -0700 Subject: [PATCH 045/295] test: ensure uuids are unique --- .husky/commit-msg | 2 +- packages/tokens/moon.yml | 2 +- packages/tokens/test/checkId.test.js | 88 +++++++++++++++++----------- pnpm-lock.yaml | 32 ++-------- 4 files changed, 62 insertions(+), 62 deletions(-) diff --git a/.husky/commit-msg b/.husky/commit-msg index fe4c17a2..84f4064b 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -npx --no-install commitlint --edit "" +pnpm --no-install commitlint --edit "" diff --git a/packages/tokens/moon.yml b/packages/tokens/moon.yml index 2ec90930..439cd0b2 100644 --- a/packages/tokens/moon.yml +++ b/packages/tokens/moon.yml @@ -54,7 +54,7 @@ tasks: platform: node test: command: - - npx + - pnpm - ava inputs: - "tasks/**/*" diff --git a/packages/tokens/test/checkId.test.js b/packages/tokens/test/checkId.test.js index 7ea0f237..995571e1 100644 --- a/packages/tokens/test/checkId.test.js +++ b/packages/tokens/test/checkId.test.js @@ -20,45 +20,67 @@ const files = await Promise.all( ), ); -const uuids = []; -const missingUUIDs = []; -const VALUE = "value"; -const UUID = "uuid"; +// const uuids = []; +// const missingUUIDs = []; +// const VALUE = "value"; +// const UUID = "uuid"; -function isObject(a) { - return ( - !!a && - a.constructor && - (a.constructor === Object || a.constructor.name === "Object") - ); -} +// function isObject(a) { +// return ( +// !!a && +// a.constructor && +// (a.constructor === Object || a.constructor.name === "Object") +// ); +// } -// check for and add uuids -function checkUUID(json, name) { - // if it is in want of uuid, give it one - if (json[VALUE] && !json[UUID]) { - if (!json[UUID] || uuids.includes(json[UUID])) { - if (name) { - missingUUIDs.push(name); - } else { - missingUUIDs.push(json[VALUE]); - } - } +// // check for uuids +// function checkUUID(json, name) { +// if (json[VALUE] && !json[UUID]) { +// if (!json[UUID]) { +// if (name) { +// missingUUIDs.push(name); +// } else { +// missingUUIDs.push(json[VALUE]); +// } +// } +// else if (uuids.includes(json[UUID])) { - uuids.push(json[UUID]); - } +// } +// uuids.push(json[UUID]); +// } - // handle the json's children - Object.keys(json).forEach((key) => { - if (isObject(json[key])) { - checkUUID(json[key], key); +// // handle the json's children +// Object.keys(json).forEach((key) => { +// if (isObject(json[key])) { +// checkUUID(json[key], key); +// } +// }); +// } +const findDuplicateUUIDs = (json) => { + const uuids = []; + const duplicateUUIDs = []; + const gather = (json, name) => { + if (json.uuid) { + if (uuids.includes(json.uuid)) { + duplicateUUIDs.push({ uuid: json.uuid, name }); + } + uuids.push(json.uuid); } - }); -} + Object.keys(json).forEach((key) => { + if (typeof json[key] === "object") { + gather(json[key], key); + } + }); + }; + gather(json); + return duplicateUUIDs; +}; -test("check for uuids", async (t) => { +test("ensure uuids are unique", async (t) => { + let allTokens = {}; for (const file of files) { - checkUUID(file); + allTokens = { ...allTokens, ...file }; } - t.deepEqual(missingUUIDs, []); + const duplicateUUIDs = findDuplicateUUIDs(allTokens); + t.deepEqual(duplicateUUIDs, [], "duplicate uuids found"); }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4f7828d2..fec05f11 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -118,13 +118,13 @@ importers: devDependencies: "@types/node": specifier: ^20.4.2 - version: 20.4.2 + version: 20.10.6 typescript: specifier: ^5.1.6 version: 5.3.3 vite: specifier: ^4.4.4 - version: 4.4.4(@types/node@20.4.2) + version: 4.4.4(@types/node@20.10.6) packages/tokens: devDependencies: @@ -148,7 +148,7 @@ importers: version: 2.3.0 tar: specifier: ^6.1.15 - version: 6.1.15 + version: 6.2.0 tmp-promise: specifier: ^3.0.3 version: 3.0.3 @@ -1704,13 +1704,6 @@ packages: undici-types: 5.26.5 dev: true - /@types/node@20.4.2: - resolution: - { - integrity: sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==, - } - dev: true - /@types/normalize-package-data@2.4.4: resolution: { @@ -6169,21 +6162,6 @@ packages: engines: { node: ">= 0.4" } dev: true - /tar@6.1.15: - resolution: - { - integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==, - } - engines: { node: ">=10" } - dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 5.0.0 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 - dev: true - /tar@6.2.0: resolution: { @@ -6516,7 +6494,7 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite@4.4.4(@types/node@20.4.2): + /vite@4.4.4(@types/node@20.10.6): resolution: { integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==, @@ -6547,7 +6525,7 @@ packages: terser: optional: true dependencies: - "@types/node": 20.4.2 + "@types/node": 20.10.6 esbuild: 0.18.12 postcss: 8.4.26 rollup: 3.26.2 From 4853f760c5f06ceda90f7591867d12a0c83f424b Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 4 Jan 2024 11:25:21 -0700 Subject: [PATCH 046/295] chore: added changeset --- .changeset/soft-moles-walk.md | 338 ++++++++++++++++++++++++++++++++++ 1 file changed, 338 insertions(+) create mode 100644 .changeset/soft-moles-walk.md diff --git a/.changeset/soft-moles-walk.md b/.changeset/soft-moles-walk.md new file mode 100644 index 00000000..fa78bba5 --- /dev/null +++ b/.changeset/soft-moles-walk.md @@ -0,0 +1,338 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added schema to all tokens and fixed values that didn't meet schema requirements + +## Token Diff + +_Token values updated (328):_ + +- `accent-background-color-default` +- `accent-background-color-down` +- `accent-background-color-hover` +- `accent-background-color-key-focus` +- `accent-color-100` +- `accent-color-1000` +- `accent-color-1100` +- `accent-color-1200` +- `accent-color-1300` +- `accent-color-1400` +- `accent-color-200` +- `accent-color-300` +- `accent-color-400` +- `accent-color-500` +- `accent-color-600` +- `accent-color-700` +- `accent-color-800` +- `accent-color-900` +- `accent-content-color-default` +- `accent-content-color-down` +- `accent-content-color-hover` +- `accent-content-color-key-focus` +- `accent-content-color-selected` +- `accent-visual-color` +- `blue-100` +- `blue-1000` +- `blue-1100` +- `blue-1200` +- `blue-1300` +- `blue-1400` +- `blue-200` +- `blue-300` +- `blue-400` +- `blue-500` +- `blue-600` +- `blue-700` +- `blue-800` +- `blue-900` +- `blue-background-color-default` +- `blue-visual-color` +- `celery-100` +- `celery-1000` +- `celery-1100` +- `celery-1200` +- `celery-1300` +- `celery-1400` +- `celery-200` +- `celery-300` +- `celery-400` +- `celery-500` +- `celery-600` +- `celery-700` +- `celery-800` +- `celery-900` +- `celery-background-color-default` +- `celery-visual-color` +- `chartreuse-100` +- `chartreuse-1000` +- `chartreuse-1100` +- `chartreuse-1200` +- `chartreuse-1300` +- `chartreuse-1400` +- `chartreuse-200` +- `chartreuse-300` +- `chartreuse-400` +- `chartreuse-500` +- `chartreuse-600` +- `chartreuse-700` +- `chartreuse-800` +- `chartreuse-900` +- `chartreuse-background-color-default` +- `chartreuse-visual-color` +- `contextual-help-body-size` +- `cyan-100` +- `cyan-1000` +- `cyan-1100` +- `cyan-1200` +- `cyan-1300` +- `cyan-1400` +- `cyan-200` +- `cyan-300` +- `cyan-400` +- `cyan-500` +- `cyan-600` +- `cyan-700` +- `cyan-800` +- `cyan-900` +- `cyan-background-color-default` +- `cyan-visual-color` +- `drop-zone-background-color` +- `focus-indicator-color` +- `fuchsia-100` +- `fuchsia-1000` +- `fuchsia-1100` +- `fuchsia-1200` +- `fuchsia-1300` +- `fuchsia-1400` +- `fuchsia-200` +- `fuchsia-300` +- `fuchsia-400` +- `fuchsia-500` +- `fuchsia-600` +- `fuchsia-700` +- `fuchsia-800` +- `fuchsia-900` +- `fuchsia-background-color-default` +- `fuchsia-visual-color` +- `green-100` +- `green-1000` +- `green-1100` +- `green-1200` +- `green-1300` +- `green-1400` +- `green-200` +- `green-300` +- `green-400` +- `green-500` +- `green-600` +- `green-700` +- `green-800` +- `green-900` +- `green-background-color-default` +- `green-visual-color` +- `icon-color-blue-primary-default` +- `icon-color-green-primary-default` +- `icon-color-red-primary-default` +- `icon-color-yellow-primary-default` +- `indigo-100` +- `indigo-1000` +- `indigo-1100` +- `indigo-1200` +- `indigo-1300` +- `indigo-1400` +- `indigo-200` +- `indigo-300` +- `indigo-400` +- `indigo-500` +- `indigo-600` +- `indigo-700` +- `indigo-800` +- `indigo-900` +- `indigo-background-color-default` +- `indigo-visual-color` +- `informative-background-color-default` +- `informative-background-color-down` +- `informative-background-color-hover` +- `informative-background-color-key-focus` +- `informative-color-100` +- `informative-color-1000` +- `informative-color-1100` +- `informative-color-1200` +- `informative-color-1300` +- `informative-color-1400` +- `informative-color-200` +- `informative-color-300` +- `informative-color-400` +- `informative-color-500` +- `informative-color-600` +- `informative-color-700` +- `informative-color-800` +- `informative-color-900` +- `informative-visual-color` +- `magenta-100` +- `magenta-1000` +- `magenta-1100` +- `magenta-1200` +- `magenta-1300` +- `magenta-1400` +- `magenta-200` +- `magenta-300` +- `magenta-400` +- `magenta-500` +- `magenta-600` +- `magenta-700` +- `magenta-800` +- `magenta-900` +- `magenta-background-color-default` +- `magenta-visual-color` +- `navigational-indicator-top-to-back-icon-extra-large` +- `navigational-indicator-top-to-back-icon-large` +- `navigational-indicator-top-to-back-icon-medium` +- `navigational-indicator-top-to-back-icon-small` +- `negative-background-color-default` +- `negative-background-color-down` +- `negative-background-color-hover` +- `negative-background-color-key-focus` +- `negative-border-color-default` +- `negative-border-color-down` +- `negative-border-color-focus` +- `negative-border-color-focus-hover` +- `negative-border-color-hover` +- `negative-border-color-key-focus` +- `negative-color-100` +- `negative-color-1000` +- `negative-color-1100` +- `negative-color-1200` +- `negative-color-1300` +- `negative-color-1400` +- `negative-color-200` +- `negative-color-300` +- `negative-color-400` +- `negative-color-500` +- `negative-color-600` +- `negative-color-700` +- `negative-color-800` +- `negative-color-900` +- `negative-content-color-default` +- `negative-content-color-down` +- `negative-content-color-hover` +- `negative-content-color-key-focus` +- `negative-visual-color` +- `notice-background-color-default` +- `notice-color-100` +- `notice-color-1000` +- `notice-color-1100` +- `notice-color-1200` +- `notice-color-1300` +- `notice-color-1400` +- `notice-color-200` +- `notice-color-300` +- `notice-color-400` +- `notice-color-500` +- `notice-color-600` +- `notice-color-700` +- `notice-color-800` +- `notice-color-900` +- `notice-visual-color` +- `orange-100` +- `orange-1000` +- `orange-1100` +- `orange-1200` +- `orange-1300` +- `orange-1400` +- `orange-200` +- `orange-300` +- `orange-400` +- `orange-500` +- `orange-600` +- `orange-700` +- `orange-800` +- `orange-900` +- `orange-background-color-default` +- `orange-visual-color` +- `positive-background-color-default` +- `positive-background-color-down` +- `positive-background-color-hover` +- `positive-background-color-key-focus` +- `positive-color-100` +- `positive-color-1000` +- `positive-color-1100` +- `positive-color-1200` +- `positive-color-1300` +- `positive-color-1400` +- `positive-color-200` +- `positive-color-300` +- `positive-color-400` +- `positive-color-500` +- `positive-color-600` +- `positive-color-700` +- `positive-color-800` +- `positive-color-900` +- `positive-visual-color` +- `purple-100` +- `purple-1000` +- `purple-1100` +- `purple-1200` +- `purple-1300` +- `purple-1400` +- `purple-200` +- `purple-300` +- `purple-400` +- `purple-500` +- `purple-600` +- `purple-700` +- `purple-800` +- `purple-900` +- `purple-background-color-default` +- `purple-visual-color` +- `red-100` +- `red-1000` +- `red-1100` +- `red-1200` +- `red-1300` +- `red-1400` +- `red-200` +- `red-300` +- `red-400` +- `red-500` +- `red-600` +- `red-700` +- `red-800` +- `red-900` +- `red-background-color-default` +- `red-visual-color` +- `seafoam-100` +- `seafoam-1000` +- `seafoam-1100` +- `seafoam-1200` +- `seafoam-1300` +- `seafoam-1400` +- `seafoam-200` +- `seafoam-300` +- `seafoam-400` +- `seafoam-500` +- `seafoam-600` +- `seafoam-700` +- `seafoam-800` +- `seafoam-900` +- `seafoam-background-color-default` +- `seafoam-visual-color` +- `side-navigation-item-to-header` +- `table-selected-row-background-color` +- `yellow-100` +- `yellow-1000` +- `yellow-1100` +- `yellow-1200` +- `yellow-1300` +- `yellow-1400` +- `yellow-200` +- `yellow-300` +- `yellow-400` +- `yellow-500` +- `yellow-600` +- `yellow-700` +- `yellow-800` +- `yellow-900` +- `yellow-background-color-default` +- `yellow-visual-color` From 23d6406c670cd744640ce9dbcb9fdc4146dd6556 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 4 Jan 2024 18:33:20 +0000 Subject: [PATCH 047/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 339 +++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 341 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index dadcc810..8859b8ba 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -16,6 +16,7 @@ "lemon-dragons-raise", "neat-balloons-rhyme", "slimy-emus-enjoy", + "soft-moles-walk", "strange-rings-love", "tame-bobcats-beg", "warm-experts-beg", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index da5f0f13..ffd6eb39 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,344 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.7 + +### Minor Changes + +- 4853f76: Added schema to all tokens and fixed values that didn't meet schema requirements + + ## Token Diff + + _Token values updated (328):_ + + - `accent-background-color-default` + - `accent-background-color-down` + - `accent-background-color-hover` + - `accent-background-color-key-focus` + - `accent-color-100` + - `accent-color-1000` + - `accent-color-1100` + - `accent-color-1200` + - `accent-color-1300` + - `accent-color-1400` + - `accent-color-200` + - `accent-color-300` + - `accent-color-400` + - `accent-color-500` + - `accent-color-600` + - `accent-color-700` + - `accent-color-800` + - `accent-color-900` + - `accent-content-color-default` + - `accent-content-color-down` + - `accent-content-color-hover` + - `accent-content-color-key-focus` + - `accent-content-color-selected` + - `accent-visual-color` + - `blue-100` + - `blue-1000` + - `blue-1100` + - `blue-1200` + - `blue-1300` + - `blue-1400` + - `blue-200` + - `blue-300` + - `blue-400` + - `blue-500` + - `blue-600` + - `blue-700` + - `blue-800` + - `blue-900` + - `blue-background-color-default` + - `blue-visual-color` + - `celery-100` + - `celery-1000` + - `celery-1100` + - `celery-1200` + - `celery-1300` + - `celery-1400` + - `celery-200` + - `celery-300` + - `celery-400` + - `celery-500` + - `celery-600` + - `celery-700` + - `celery-800` + - `celery-900` + - `celery-background-color-default` + - `celery-visual-color` + - `chartreuse-100` + - `chartreuse-1000` + - `chartreuse-1100` + - `chartreuse-1200` + - `chartreuse-1300` + - `chartreuse-1400` + - `chartreuse-200` + - `chartreuse-300` + - `chartreuse-400` + - `chartreuse-500` + - `chartreuse-600` + - `chartreuse-700` + - `chartreuse-800` + - `chartreuse-900` + - `chartreuse-background-color-default` + - `chartreuse-visual-color` + - `contextual-help-body-size` + - `cyan-100` + - `cyan-1000` + - `cyan-1100` + - `cyan-1200` + - `cyan-1300` + - `cyan-1400` + - `cyan-200` + - `cyan-300` + - `cyan-400` + - `cyan-500` + - `cyan-600` + - `cyan-700` + - `cyan-800` + - `cyan-900` + - `cyan-background-color-default` + - `cyan-visual-color` + - `drop-zone-background-color` + - `focus-indicator-color` + - `fuchsia-100` + - `fuchsia-1000` + - `fuchsia-1100` + - `fuchsia-1200` + - `fuchsia-1300` + - `fuchsia-1400` + - `fuchsia-200` + - `fuchsia-300` + - `fuchsia-400` + - `fuchsia-500` + - `fuchsia-600` + - `fuchsia-700` + - `fuchsia-800` + - `fuchsia-900` + - `fuchsia-background-color-default` + - `fuchsia-visual-color` + - `green-100` + - `green-1000` + - `green-1100` + - `green-1200` + - `green-1300` + - `green-1400` + - `green-200` + - `green-300` + - `green-400` + - `green-500` + - `green-600` + - `green-700` + - `green-800` + - `green-900` + - `green-background-color-default` + - `green-visual-color` + - `icon-color-blue-primary-default` + - `icon-color-green-primary-default` + - `icon-color-red-primary-default` + - `icon-color-yellow-primary-default` + - `indigo-100` + - `indigo-1000` + - `indigo-1100` + - `indigo-1200` + - `indigo-1300` + - `indigo-1400` + - `indigo-200` + - `indigo-300` + - `indigo-400` + - `indigo-500` + - `indigo-600` + - `indigo-700` + - `indigo-800` + - `indigo-900` + - `indigo-background-color-default` + - `indigo-visual-color` + - `informative-background-color-default` + - `informative-background-color-down` + - `informative-background-color-hover` + - `informative-background-color-key-focus` + - `informative-color-100` + - `informative-color-1000` + - `informative-color-1100` + - `informative-color-1200` + - `informative-color-1300` + - `informative-color-1400` + - `informative-color-200` + - `informative-color-300` + - `informative-color-400` + - `informative-color-500` + - `informative-color-600` + - `informative-color-700` + - `informative-color-800` + - `informative-color-900` + - `informative-visual-color` + - `magenta-100` + - `magenta-1000` + - `magenta-1100` + - `magenta-1200` + - `magenta-1300` + - `magenta-1400` + - `magenta-200` + - `magenta-300` + - `magenta-400` + - `magenta-500` + - `magenta-600` + - `magenta-700` + - `magenta-800` + - `magenta-900` + - `magenta-background-color-default` + - `magenta-visual-color` + - `navigational-indicator-top-to-back-icon-extra-large` + - `navigational-indicator-top-to-back-icon-large` + - `navigational-indicator-top-to-back-icon-medium` + - `navigational-indicator-top-to-back-icon-small` + - `negative-background-color-default` + - `negative-background-color-down` + - `negative-background-color-hover` + - `negative-background-color-key-focus` + - `negative-border-color-default` + - `negative-border-color-down` + - `negative-border-color-focus` + - `negative-border-color-focus-hover` + - `negative-border-color-hover` + - `negative-border-color-key-focus` + - `negative-color-100` + - `negative-color-1000` + - `negative-color-1100` + - `negative-color-1200` + - `negative-color-1300` + - `negative-color-1400` + - `negative-color-200` + - `negative-color-300` + - `negative-color-400` + - `negative-color-500` + - `negative-color-600` + - `negative-color-700` + - `negative-color-800` + - `negative-color-900` + - `negative-content-color-default` + - `negative-content-color-down` + - `negative-content-color-hover` + - `negative-content-color-key-focus` + - `negative-visual-color` + - `notice-background-color-default` + - `notice-color-100` + - `notice-color-1000` + - `notice-color-1100` + - `notice-color-1200` + - `notice-color-1300` + - `notice-color-1400` + - `notice-color-200` + - `notice-color-300` + - `notice-color-400` + - `notice-color-500` + - `notice-color-600` + - `notice-color-700` + - `notice-color-800` + - `notice-color-900` + - `notice-visual-color` + - `orange-100` + - `orange-1000` + - `orange-1100` + - `orange-1200` + - `orange-1300` + - `orange-1400` + - `orange-200` + - `orange-300` + - `orange-400` + - `orange-500` + - `orange-600` + - `orange-700` + - `orange-800` + - `orange-900` + - `orange-background-color-default` + - `orange-visual-color` + - `positive-background-color-default` + - `positive-background-color-down` + - `positive-background-color-hover` + - `positive-background-color-key-focus` + - `positive-color-100` + - `positive-color-1000` + - `positive-color-1100` + - `positive-color-1200` + - `positive-color-1300` + - `positive-color-1400` + - `positive-color-200` + - `positive-color-300` + - `positive-color-400` + - `positive-color-500` + - `positive-color-600` + - `positive-color-700` + - `positive-color-800` + - `positive-color-900` + - `positive-visual-color` + - `purple-100` + - `purple-1000` + - `purple-1100` + - `purple-1200` + - `purple-1300` + - `purple-1400` + - `purple-200` + - `purple-300` + - `purple-400` + - `purple-500` + - `purple-600` + - `purple-700` + - `purple-800` + - `purple-900` + - `purple-background-color-default` + - `purple-visual-color` + - `red-100` + - `red-1000` + - `red-1100` + - `red-1200` + - `red-1300` + - `red-1400` + - `red-200` + - `red-300` + - `red-400` + - `red-500` + - `red-600` + - `red-700` + - `red-800` + - `red-900` + - `red-background-color-default` + - `red-visual-color` + - `seafoam-100` + - `seafoam-1000` + - `seafoam-1100` + - `seafoam-1200` + - `seafoam-1300` + - `seafoam-1400` + - `seafoam-200` + - `seafoam-300` + - `seafoam-400` + - `seafoam-500` + - `seafoam-600` + - `seafoam-700` + - `seafoam-800` + - `seafoam-900` + - `seafoam-background-color-default` + - `seafoam-visual-color` + - `side-navigation-item-to-header` + - `table-selected-row-background-color` + - `yellow-100` + - `yellow-1000` + - `yellow-1100` + - `yellow-1200` + - `yellow-1300` + - `yellow-1400` + - `yellow-200` + - `yellow-300` + - `yellow-400` + - `yellow-500` + - `yellow-600` + - `yellow-700` + - `yellow-800` + - `yellow-900` + - `yellow-background-color-default` + - `yellow-visual-color` + ## 13.0.0-beta.6 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 7dee3f5b..8dcca10e 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.6", + "version": "13.0.0-beta.7", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From b8945abca17bf8bf8ba8b21ea70cf13c14a20a52 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 4 Jan 2024 11:42:23 -0700 Subject: [PATCH 048/295] feat: added wireframe values to new tokens --- packages/tokens/src/color-aliases.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index e0ee5148..d893ee84 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1471,6 +1471,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-25}", "uuid": "2275e0fa-69a3-4542-9ec6-919e44035118" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-25}", + "uuid": "d9cb27b8-5535-4e3a-8ca5-6eda69b934af" } } }, @@ -1486,6 +1491,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "4938710b-5a69-49eb-8517-6f5556c23298" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "6a60aa01-d789-4d39-9867-2264e66d419c" } } } From 507f3c2a7e271f05d855bb33fc004b0e14c07bcc Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 4 Jan 2024 11:45:55 -0700 Subject: [PATCH 049/295] chore: added changeset --- .changeset/six-phones-rescue.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .changeset/six-phones-rescue.md diff --git a/.changeset/six-phones-rescue.md b/.changeset/six-phones-rescue.md new file mode 100644 index 00000000..c7718d06 --- /dev/null +++ b/.changeset/six-phones-rescue.md @@ -0,0 +1,20 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added new and updating existing background layer tokens to S2 set in Tokens Studio and S2/Variables. Also reordered token organization to reflect proper usage based on [S2 guidelines](https://s2.spectrum.corp.adobe.com/page/background-layers/#editing-contexts). + +## Design Motivation + +In Spectrum 2, background layers are used differently depending on the primary context of the page. We now have a full set of tokens to help users distinguish between primary purposes, editing vs browsing. + +## Token Diff + +_Tokens added (2):_ + +- `background-elevated-color` +- `background-pasteboard-color` + +_Token values updated (1):_ + +- `background-base-color` From a8b1ba0e55f023476c4a785847cddd06d7a5acbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 4 Jan 2024 18:49:21 +0000 Subject: [PATCH 050/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 21 +++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 8859b8ba..eaa16c9b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -15,6 +15,7 @@ "happy-students-vanish", "lemon-dragons-raise", "neat-balloons-rhyme", + "six-phones-rescue", "slimy-emus-enjoy", "soft-moles-walk", "strange-rings-love", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index ffd6eb39..38a42483 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,26 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.8 + +### Minor Changes + +- 507f3c2: Added new and updating existing background layer tokens to S2 set in Tokens Studio and S2/Variables. Also reordered token organization to reflect proper usage based on [S2 guidelines](https://s2.spectrum.corp.adobe.com/page/background-layers/#editing-contexts). + + ## Design Motivation + + In Spectrum 2, background layers are used differently depending on the primary context of the page. We now have a full set of tokens to help users distinguish between primary purposes, editing vs browsing. + + ## Token Diff + + _Tokens added (2):_ + + - `background-elevated-color` + - `background-pasteboard-color` + + _Token values updated (1):_ + + - `background-base-color` + ## 13.0.0-beta.7 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 8dcca10e..47f6a3a5 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.7", + "version": "13.0.0-beta.8", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From db0696a6610319732a084aa7d5b83e90588f3bbb Mon Sep 17 00:00:00 2001 From: karstens Date: Wed, 10 Jan 2024 19:07:10 +0000 Subject: [PATCH 051/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 99 ++++++++++++++++++++++++--------- 1 file changed, 72 insertions(+), 27 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index e49a5710..6bc9e484 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -104,7 +104,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "16px", "uuid": "4c4cb541-7d42-4bb4-9c86-7197c4600896" } } @@ -119,7 +119,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", + "value": "18px", "uuid": "b720c214-babe-426d-9629-9ec60d5e8622" } } @@ -129,12 +129,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "20px", "uuid": "40abc60f-ab65-41ef-b724-a0f0bdd94d14" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "24px", "uuid": "9e882a20-b8e1-4e9b-89f9-26f21db3cd78" } } @@ -144,12 +144,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", + "value": "22px", "uuid": "6392e605-932e-456d-be53-149b624a04e2" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", + "value": "28px", "uuid": "9948e083-8c75-48f7-8e58-32c75ec76116" } } @@ -159,12 +159,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "26px", "uuid": "25908278-79d3-47f4-9b53-adbdd1c13e2a" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", + "value": "30px", "uuid": "df0dc6c3-59fc-4ee0-87a9-c3d49a07cf9c" } } @@ -234,12 +234,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", + "value": "5px", "uuid": "ff1fadc2-9ec0-456f-a054-4512e51c85c8" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "7px", "uuid": "8588bf80-96df-40fb-8b6f-61d06899f8dd" } } @@ -249,12 +249,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", + "value": "5px", "uuid": "50763a0d-c6eb-47f0-8b56-4c86ee22a430" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "7px", "uuid": "77dc4cd4-8e4e-4873-b6f3-d573eb7fc315" } } @@ -264,12 +264,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "6px", "uuid": "1d601d0a-d6d0-4711-9fb9-71898c2bcc9a" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "8px", "uuid": "09d55113-8d94-429f-b0c8-ffabe8ccba27" } } @@ -279,12 +279,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "7px", "uuid": "7ce11af3-b94b-4239-a310-f8d09635779a" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", + "value": "9px", "uuid": "dc4ec555-72eb-4328-aba4-e8d594102f45" } } @@ -294,12 +294,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "8px", "uuid": "4366909e-3bfb-481c-abdc-4ae71f965bc3" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "205f0c77-6588-4cc7-927f-3ba767200bac" } } @@ -909,7 +909,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", + "value": "5px", "uuid": "24853983-c1b0-422d-84b6-05b9313066ed" } } @@ -924,7 +924,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "6px", "uuid": "9d1b0ef4-5433-43fe-aa33-0274ff29f6f3" } } @@ -934,12 +934,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", + "value": "6px", "uuid": "c3a280b0-bc84-4a7c-8048-c689f8deef86" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "8px", "uuid": "a3d3f9e9-a784-445a-a052-22f84b832512" } } @@ -949,12 +949,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "9px", "uuid": "ef82b92a-2cbd-4b70-920c-4b999b018e07" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "259c0cf5-d321-4a6b-a3ae-b8c58fc1c9d6" } } @@ -964,12 +964,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "72d6ae5c-e133-4e7f-bc96-3e4c28d586fd" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "15px", "uuid": "bac14298-68f0-4fb6-a152-c95ab19fd27f" } } @@ -2163,5 +2163,50 @@ "uuid": "d396d74a-425d-4f06-837f-349f81ebf486" } } + }, + "component-size-difference-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "6ab11315-8061-4235-bfda-97e6a6a23e3f" + } + } + }, + "component-size-width-ratio-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "9bb1fc4d-581d-4b1f-bb70-224ee4b08153" + } + } + }, + "component-size-minimum-perspective-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "103daec0-9711-4422-84d1-62ab77afa00d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "d64a2c90-deab-4eaa-8bd9-24310a1397a8" + } + } } -} +} \ No newline at end of file From 6d14d84a82fbef1abb43f7851a6f031bbcf2dfba Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 10 Jan 2024 15:56:18 -0700 Subject: [PATCH 052/295] fix: removed down scale tokens for future release --- packages/tokens/src/layout.json | 47 +-------------------------------- 1 file changed, 1 insertion(+), 46 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 6bc9e484..9397c548 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2163,50 +2163,5 @@ "uuid": "d396d74a-425d-4f06-837f-349f81ebf486" } } - }, - "component-size-difference-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "6ab11315-8061-4235-bfda-97e6a6a23e3f" - } - } - }, - "component-size-width-ratio-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "9bb1fc4d-581d-4b1f-bb70-224ee4b08153" - } - } - }, - "component-size-minimum-perspective-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "103daec0-9711-4422-84d1-62ab77afa00d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "d64a2c90-deab-4eaa-8bd9-24310a1397a8" - } - } } -} \ No newline at end of file +} From a6b96343d26bbf5bf4b5316766b108254973dc78 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 10 Jan 2024 23:01:08 +0000 Subject: [PATCH 053/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 47 ++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 9397c548..fd1fe966 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2163,5 +2163,50 @@ "uuid": "d396d74a-425d-4f06-837f-349f81ebf486" } } + }, + "component-size-width-ratio-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0.3333", + "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0.3333", + "uuid": "9bb1fc4d-581d-4b1f-bb70-224ee4b08153" + } + } + }, + "component-size-minimum-perspective-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "103daec0-9711-4422-84d1-62ab77afa00d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "d64a2c90-deab-4eaa-8bd9-24310a1397a8" + } + } + }, + "component-size-difference-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-2px", + "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-2px", + "uuid": "6ab11315-8061-4235-bfda-97e6a6a23e3f" + } + } } -} +} \ No newline at end of file From bf22b13c8ca01b6f7eee57961f6f9e9853b2ca53 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 10 Jan 2024 16:16:25 -0700 Subject: [PATCH 054/295] feat: added down state scaling tokens --- packages/tokens/src/layout.json | 50 +++++++-------------------------- 1 file changed, 10 insertions(+), 40 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index fd1fe966..eee13556 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2165,48 +2165,18 @@ } }, "component-size-width-ratio-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0.3333", - "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0.3333", - "uuid": "9bb1fc4d-581d-4b1f-bb70-224ee4b08153" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "value": "0.3333", + "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" }, "component-size-minimum-perspective-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "103daec0-9711-4422-84d1-62ab77afa00d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "d64a2c90-deab-4eaa-8bd9-24310a1397a8" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "103daec0-9711-4422-84d1-62ab77afa00d" }, "component-size-difference-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-2px", - "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-2px", - "uuid": "6ab11315-8061-4235-bfda-97e6a6a23e3f" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-2px", + "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" } -} \ No newline at end of file +} From cf09c8443a93e8e613cfd5322a8500e89f95833c Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 10 Jan 2024 16:16:49 -0700 Subject: [PATCH 055/295] chore: added changeset --- .changeset/empty-steaks-dress.md | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .changeset/empty-steaks-dress.md diff --git a/.changeset/empty-steaks-dress.md b/.changeset/empty-steaks-dress.md new file mode 100644 index 00000000..c49d3824 --- /dev/null +++ b/.changeset/empty-steaks-dress.md @@ -0,0 +1,41 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated workflow-icon-size-50, 75, 100, 200, 300 with Spectrum 2 values in mobile and desktop. +Updated component-top-to-workflow and text-to-visual padding. +Added 3 new non-color tokens for S2 component downstates in Tokens Studio. + +## Design Motivation + +Spectrum 2 icons have a different workflow icon sizing with base sizes 20 px (desktop), 24 px (mobile). + +Updated padding values due to new workflow icon sizes in S2. + +These tokens are used to calculate the perspective transform in CSS to achieve the effect of a component scaling down for down states in Spectrum 2. This is not applicable to all components. + +## Tokens Diff + +_Tokens added (3):_ + +- `component-size-difference-down` +- `component-size-minimum-perspective-down` +- `component-size-width-ratio-down` + +_Token values updated (15):_ + +- `component-top-to-workflow-icon-100` +- `component-top-to-workflow-icon-200` +- `component-top-to-workflow-icon-300` +- `component-top-to-workflow-icon-50` +- `component-top-to-workflow-icon-75` +- `text-to-visual-100` +- `text-to-visual-200` +- `text-to-visual-300` +- `text-to-visual-50` +- `text-to-visual-75` +- `workflow-icon-size-100` +- `workflow-icon-size-200` +- `workflow-icon-size-300` +- `workflow-icon-size-50` +- `workflow-icon-size-75` From 4a66b77ac07d18a8291daf83c81d92fea0a625df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 10 Jan 2024 23:21:01 +0000 Subject: [PATCH 056/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 42 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 44 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index eaa16c9b..b899c2d4 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -11,6 +11,7 @@ }, "changesets": [ "dirty-pets-attend", + "empty-steaks-dress", "good-peas-mix", "happy-students-vanish", "lemon-dragons-raise", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 38a42483..723c0435 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,47 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.9 + +### Minor Changes + +- cf09c84: Updated workflow-icon-size-50, 75, 100, 200, 300 with Spectrum 2 values in mobile and desktop. + Updated component-top-to-workflow and text-to-visual padding. + Added 3 new non-color tokens for S2 component downstates in Tokens Studio. + + ## Design Motivation + + Spectrum 2 icons have a different workflow icon sizing with base sizes 20 px (desktop), 24 px (mobile). + + Updated padding values due to new workflow icon sizes in S2. + + These tokens are used to calculate the perspective transform in CSS to achieve the effect of a component scaling down for down states in Spectrum 2. This is not applicable to all components. + + ## Tokens Diff + + _Tokens added (3):_ + + - `component-size-difference-down` + - `component-size-minimum-perspective-down` + - `component-size-width-ratio-down` + + _Token values updated (15):_ + + - `component-top-to-workflow-icon-100` + - `component-top-to-workflow-icon-200` + - `component-top-to-workflow-icon-300` + - `component-top-to-workflow-icon-50` + - `component-top-to-workflow-icon-75` + - `text-to-visual-100` + - `text-to-visual-200` + - `text-to-visual-300` + - `text-to-visual-50` + - `text-to-visual-75` + - `workflow-icon-size-100` + - `workflow-icon-size-200` + - `workflow-icon-size-300` + - `workflow-icon-size-50` + - `workflow-icon-size-75` + ## 13.0.0-beta.8 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 47f6a3a5..1f1690ae 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.8", + "version": "13.0.0-beta.9", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 1b9c712fee473491535864ba07dcb2161c294f48 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Fri, 19 Jan 2024 21:10:12 +0000 Subject: [PATCH 057/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index eee13556..603318d1 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -759,7 +759,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", + "value": "5px", "uuid": "fd1c11a6-53d5-4253-a7d7-c4131c4b1a5e" } } @@ -774,7 +774,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "6px", "uuid": "5c4f1f7a-2218-4d03-ac83-9750c2c9336b" } } @@ -784,12 +784,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", + "value": "6px", "uuid": "8fec6012-7cba-4ac5-94d7-14f39fce7612" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "8px", "uuid": "93e42bfc-c2f0-40cd-a561-9045c68cb5d1" } } @@ -799,12 +799,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "9px", "uuid": "0bf1ad10-235a-4c81-aba7-5bf55acc877d" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "9dffd6f3-6230-425e-9208-296cf4d5c185" } } @@ -814,12 +814,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "815523cd-8c01-4125-bb22-3a548f1cc702" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "15px", "uuid": "090b3da5-0aa3-4bf8-b3bd-dd8dabb40721" } } @@ -2179,4 +2179,4 @@ "value": "-2px", "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" } -} +} \ No newline at end of file From 23d908596a12219d04969cfbc72f9f10cf6f8499 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 19 Jan 2024 14:15:42 -0700 Subject: [PATCH 058/295] chore: added changeset --- .changeset/forty-lizards-thank.md | 17 +++++++++++++++++ packages/tokens/src/layout.json | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .changeset/forty-lizards-thank.md diff --git a/.changeset/forty-lizards-thank.md b/.changeset/forty-lizards-thank.md new file mode 100644 index 00000000..55899b42 --- /dev/null +++ b/.changeset/forty-lizards-thank.md @@ -0,0 +1,17 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated desktop and mobile values for component-edge-to-visual-only tokens. + +Spacing changed due to new workflow icon sizes. + +## Token Diff + +_Token values updated (5):_ + +- `component-edge-to-visual-only-100` +- `component-edge-to-visual-only-200` +- `component-edge-to-visual-only-300` +- `component-edge-to-visual-only-50` +- `component-edge-to-visual-only-75` diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 603318d1..42514424 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2179,4 +2179,4 @@ "value": "-2px", "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" } -} \ No newline at end of file +} From b750626eaca2666eecae8c1fd55a5a6c339ea96e Mon Sep 17 00:00:00 2001 From: GarthDB Date: Fri, 19 Jan 2024 21:32:00 +0000 Subject: [PATCH 059/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 56 +++++++++++++---------- 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index d3e6b13c..072f6593 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -720,14 +720,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "91cb19ef-63fc-4d98-a61e-a5f55951f656" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-75}", + "uuid": "91cb19ef-63fc-4d98-a61e-a5f55951f656", + "deprecated": true }, "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "00334ebf-5706-4a97-b02c-9f41642c4795" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-75}", + "uuid": "00334ebf-5706-4a97-b02c-9f41642c4795", + "deprecated": true } } }, @@ -736,14 +738,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-100}", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f", + "deprecated": true }, "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-100}", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52", + "deprecated": true } } }, @@ -752,14 +756,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "54cae12b-5f21-47b4-a964-6033bd025975" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-200}", + "uuid": "54cae12b-5f21-47b4-a964-6033bd025975", + "deprecated": true }, "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e2c40309-5b3d-485a-bafa-9015a5b751e7" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-200}", + "uuid": "e2c40309-5b3d-485a-bafa-9015a5b751e7", + "deprecated": true } } }, @@ -768,14 +774,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "bec914a9-5905-40ac-bd61-a727016c1228" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-300}", + "uuid": "bec914a9-5905-40ac-bd61-a727016c1228", + "deprecated": true }, "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "251c39cc-f949-4055-aecb-42fc99f9d504" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-workflow-icon-300}", + "uuid": "251c39cc-f949-4055-aecb-42fc99f9d504", + "deprecated": true } } }, From ca897359bb521d1a6115dae3343c85ac1735eb6f Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 19 Jan 2024 14:55:33 -0700 Subject: [PATCH 060/295] chore: updated commitlint to ignore automated pr commit messages --- commitlint.config.cjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commitlint.config.cjs b/commitlint.config.cjs index 340499dd..941e53c3 100644 --- a/commitlint.config.cjs +++ b/commitlint.config.cjs @@ -16,4 +16,7 @@ governing permissions and limitations under the License. module.exports = { extends: ["@commitlint/config-conventional"], + ignores: [ + (message) => message.includes("[create-pull-request] automated change"), + ], }; From c5430b7b624adf4f6cb7abf929187c7473748198 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 19 Jan 2024 15:12:41 -0700 Subject: [PATCH 061/295] docs: added changeset and deprecated message --- .changeset/gentle-months-carry.md | 14 +++++++++++++ packages/tokens/src/layout-component.json | 24 +++++++++++++++-------- 2 files changed, 30 insertions(+), 8 deletions(-) create mode 100644 .changeset/gentle-months-carry.md diff --git a/.changeset/gentle-months-carry.md b/.changeset/gentle-months-carry.md new file mode 100644 index 00000000..76e70251 --- /dev/null +++ b/.changeset/gentle-months-carry.md @@ -0,0 +1,14 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated help-text-top-to-workflow-icon-_ token values to point to component-top-to-workflow-icon-_ tokens + +## Token Diff + +_Newly deprecated tokens (4):_ + +- `help-text-top-to-workflow-icon-extra-large`: use `component-edge-to-visual-only-300` +- `help-text-top-to-workflow-icon-large`: use `component-edge-to-visual-only-200` +- `help-text-top-to-workflow-icon-medium`: use `component-edge-to-visual-only-100` +- `help-text-top-to-workflow-icon-small`: use `component-edge-to-visual-only-75` diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 072f6593..2f0e01f8 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -723,13 +723,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-75}", "uuid": "91cb19ef-63fc-4d98-a61e-a5f55951f656", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-75" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-75}", "uuid": "00334ebf-5706-4a97-b02c-9f41642c4795", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-75" } } }, @@ -741,13 +743,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-100}", "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-100" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-100}", "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-100" } } }, @@ -759,13 +763,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-200}", "uuid": "54cae12b-5f21-47b4-a964-6033bd025975", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-200" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-200}", "uuid": "e2c40309-5b3d-485a-bafa-9015a5b751e7", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-200" } } }, @@ -777,13 +783,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-300}", "uuid": "bec914a9-5905-40ac-bd61-a727016c1228", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-300" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-top-to-workflow-icon-300}", "uuid": "251c39cc-f949-4055-aecb-42fc99f9d504", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with component-top-to-workflow-icon-300" } } }, From d1f9fca55ceb3bbd0694943811116f396ab37d90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 19 Jan 2024 22:16:05 +0000 Subject: [PATCH 062/295] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/tokens/CHANGELOG.md | 29 +++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index b899c2d4..394a4260 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -12,6 +12,8 @@ "changesets": [ "dirty-pets-attend", "empty-steaks-dress", + "forty-lizards-thank", + "gentle-months-carry", "good-peas-mix", "happy-students-vanish", "lemon-dragons-raise", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 723c0435..48056077 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,34 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.10 + +### Minor Changes + +- 23d9085: Updated desktop and mobile values for component-edge-to-visual-only tokens. + + Spacing changed due to new workflow icon sizes. + + ## Token Diff + + _Token values updated (5):_ + + - `component-edge-to-visual-only-100` + - `component-edge-to-visual-only-200` + - `component-edge-to-visual-only-300` + - `component-edge-to-visual-only-50` + - `component-edge-to-visual-only-75` + +- c5430b7: Updated help-text-top-to-workflow-icon-_ token values to point to component-top-to-workflow-icon-_ tokens + + ## Token Diff + + _Newly deprecated tokens (4):_ + + - `help-text-top-to-workflow-icon-extra-large`: use `component-edge-to-visual-only-300` + - `help-text-top-to-workflow-icon-large`: use `component-edge-to-visual-only-200` + - `help-text-top-to-workflow-icon-medium`: use `component-edge-to-visual-only-100` + - `help-text-top-to-workflow-icon-small`: use `component-edge-to-visual-only-75` + ## 13.0.0-beta.9 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 1f1690ae..1600b0f3 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.9", + "version": "13.0.0-beta.10", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From f549a87b71283591d0c3040b7a23211d2fda3b21 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 24 Jan 2024 23:41:46 +0000 Subject: [PATCH 063/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 357 +++++++++++++++++++++++++++++++- 1 file changed, 350 insertions(+), 7 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 42514424..cb207fa9 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1,15 +1,30 @@ { + "corner-radius-0": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "f6887982-b1f7-4d11-a530-4d24962f9f0a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "bacd8396-8e58-4931-9dcf-6b14669ea5aa" + } + } + }, "corner-radius-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", + "value": "3px", "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", + "value": "3px", "uuid": "cddbb2f6-b3a8-4416-90ed-0d7cd1bc7248" } } @@ -24,7 +39,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "4px", "uuid": "e22537bb-a29f-47e5-be13-7e2775ee1103" } } @@ -34,16 +49,119 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "5px", "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "5px", "uuid": "23f751eb-a076-487d-a5e1-1c0eb2937018" } } }, + "corner-radius-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "4fe25b45-1b86-4d03-8bcb-11f63888a1c3" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "90ce9225-55c6-4e1c-b37b-aaeac06e52d2" + } + } + }, + "corner-radius-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "ac308d15-9112-419f-9b1e-b7a9c4575f09" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "e6d9b978-d54f-4e85-bc10-5e46cf38a73f" + } + } + }, + "corner-radius-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "384ef5b5-530a-46a3-90f6-d2f6d641f027" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "1b25efaf-750d-47d8-8669-3c039b32e508" + } + } + }, + "corner-radius-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "39f60d65-06f7-4386-96ed-e62d294ac452" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "d338bbf4-68b3-420a-8bb3-3d442e13a1d1" + } + } + }, + "corner-radius-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "641c46dd-e04c-4ac0-8486-f0fe9e35554c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "2c9e55fe-d1a6-4001-8904-1c910c081737" + } + } + }, + "corner-radius-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "9b2106ed-0962-4c36-9cea-975b8dedff9b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "22712ece-7620-4390-aa13-c5b9e4917f0e" + } + } + }, + "corner-radius-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "value": "0.5", + "uuid": "d0467939-b460-45fc-935e-77f5d6aee7a5" + }, + "mobile": { + "value": "0.5", + "uuid": "e9c4078f-fc2d-4a3d-b648-09a77e9897e4" + } + } + }, "drop-shadow-x": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { @@ -299,7 +417,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", + "value": "10px", "uuid": "205f0c77-6588-4cc7-927f-3ba767200bac" } } @@ -2178,5 +2296,230 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-2px", "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" + }, + "corner-radius-none": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-0}", + "uuid": "938ec804-821b-43e5-a43a-0cd42f120bea" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-0}", + "uuid": "b7110b3b-9376-4e28-953c-91de7e883c67" + } + } + }, + "corner-radius-small-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "e86fa13c-7b9b-41d7-95d8-32a9e0d1a960" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "47b40064-d402-4a6a-9d60-6e82e3f988a1" + } + } + }, + "corner-radius-medium-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "df65945e-9f0f-4d66-8d49-c1b2c662923f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "84261c7f-3bc4-4411-b75a-0c9650023bc8" + } + } + }, + "corner-radius-large-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "ab503233-2f8d-447f-97a8-37b92eae7c9e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "d856947a-4aef-43a7-8d4b-961d5f5de594" + } + } + }, + "corner-radius-extra-large-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-800}", + "uuid": "ccd068d8-0b62-4e5e-84ca-57364475ec1b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-800}", + "uuid": "b0ec6456-bafd-4f9f-9da4-ed61e8a21ea5" + } + } + }, + "corner-radius-full": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-1000}", + "uuid": "89362bf6-3795-4699-a545-0554a35f9e7f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-1000}", + "uuid": "5fbe4a12-4867-4755-9ed6-7a2b9f5a6a82" + } + } + }, + "corner-radius-small-size-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-75}", + "uuid": "7d9b00b2-7025-4351-bd45-7efb17d37667" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-75}", + "uuid": "019ad927-e760-44ff-86f1-e119205114df" + } + } + }, + "corner-radius-small-size-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "3394651f-98a5-4116-b435-07646ebb4369" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "54f150ab-ebb3-4666-9520-1de6bbee20fa" + } + } + }, + "corner-radius-small-size-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-200}", + "uuid": "d82cf821-e761-409c-9252-7c94e42eef9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-200}", + "uuid": "9e93c66f-ec8f-4a45-b252-b03033616ac6" + } + } + }, + "corner-radius-small-size-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "0d24961f-6c72-4ede-9345-8f8d055c3f8e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "6fd3d74d-3aef-4c32-9478-afa42ee15823" + } + } + }, + "corner-radius-medium-size-extra-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "07fabe66-57ff-475a-8cba-0df0b6ee3acb" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "4e9213e9-97a9-4976-a4d1-0e154b4a5c00" + } + } + }, + "corner-radius-medium-size-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-400}", + "uuid": "23865a79-8333-4f0f-99d2-d044df593a64" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-400}", + "uuid": "f9955a64-3e22-4b79-bc9c-7ab5e97dcaa3" + } + } + }, + "corner-radius-medium-size-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "bf3774bb-1b0d-46b5-b7b7-9a1398471225" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "8d26408e-1226-40e6-b274-7baee7a49948" + } + } + }, + "corner-radius-medium-size-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-600}", + "uuid": "e68598d6-99d9-4f89-8411-9c6e068380e3" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-600}", + "uuid": "ea82a7dd-e1e4-4ed3-96dd-64a3eb886a2d" + } + } + }, + "corner-radius-medium-size-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "0caccc29-b873-4ffb-b55d-a8106115690c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "068bd0c8-0e7e-4c6f-8ba3-7268840c9e46" + } + } } -} +} \ No newline at end of file From 001e6520873f5edfe5eab378fec95ecb27dca2d0 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 24 Jan 2024 23:41:35 +0000 Subject: [PATCH 064/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 355 +++++++++++++++++++++++++++++++- 1 file changed, 349 insertions(+), 6 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 42514424..860468be 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1,15 +1,30 @@ { + "corner-radius-0": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "bb9d8350-b1fb-4496-9c22-6ec9647ff117" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "8db9a268-95ee-4d25-a664-41b7ff06bea2" + } + } + }, "corner-radius-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", + "value": "3px", "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", + "value": "3px", "uuid": "cddbb2f6-b3a8-4416-90ed-0d7cd1bc7248" } } @@ -24,7 +39,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "4px", "uuid": "e22537bb-a29f-47e5-be13-7e2775ee1103" } } @@ -34,16 +49,119 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "5px", "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "5px", "uuid": "23f751eb-a076-487d-a5e1-1c0eb2937018" } } }, + "corner-radius-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "154642d7-c23d-44fd-9d79-b719ef32922e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "262d7b06-a9b2-4656-8175-fbe80fdc64ab" + } + } + }, + "corner-radius-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "690db7ae-cae8-49bb-8777-b4f1829b2f0b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "76cd22ed-1466-48fd-bcac-55c06ee56e22" + } + } + }, + "corner-radius-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "ada2ea1d-1728-411a-8aae-a198ce390a25" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "fdfdb85e-6b60-4630-af09-415db7057791" + } + } + }, + "corner-radius-600": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "abc0f309-3bd2-4800-af12-b27386e86617" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "5538f603-bf69-4a30-bfe1-ea6f91a8b13a" + } + } + }, + "corner-radius-700": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "cb6b72ed-a9a1-4113-b147-1ef369fe6269" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "1aacac8f-8fbc-4045-9b98-f260b1e1aa7e" + } + } + }, + "corner-radius-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "8fc023ca-8aec-40fe-9130-087aa035bac7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "0032ebbf-3428-4fc3-aa5a-9dd57a6ce566" + } + } + }, + "corner-radius-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "value": "0.5", + "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" + }, + "mobile": { + "value": "0.5", + "uuid": "9cd69903-8417-4d6a-92cf-7ec759d5f60f" + } + } + }, "drop-shadow-x": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { @@ -2178,5 +2296,230 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-2px", "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" + }, + "corner-radius-none": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-0}", + "uuid": "7a11b308-bed2-4b6f-bb4a-c9ae4ef8e03d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-0}", + "uuid": "497ee71e-792d-449e-acc2-41c9de0d7f16" + } + } + }, + "corner-radius-small-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "b4971f86-aeea-42c9-9ba7-a74cf4d1a545" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "b7bdc7fe-093e-4357-8df8-595872a0c600" + } + } + }, + "corner-radius-medium-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "a83a882e-430c-46fc-a8be-5ade0dd8a4c6" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "db528ae2-76c1-4685-9148-d1945f1e76e8" + } + } + }, + "corner-radius-large-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "29981aef-aea6-4cde-849f-4bc67e320ea7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "470498fa-d118-4960-930e-30f8cc6bae8b" + } + } + }, + "corner-radius-extra-large-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-800}", + "uuid": "d639a0b5-16b4-4d75-ab37-d87815c7b500" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-800}", + "uuid": "f7720ff5-c618-4e55-9acf-83b1e171e20c" + } + } + }, + "corner-radius-full": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-1000}", + "uuid": "4853520b-bda3-45d1-bd20-8508cac08847" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-1000}", + "uuid": "258f18c4-7c48-4087-bdcc-6cf625e11802" + } + } + }, + "corner-radius-small-size-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-75}", + "uuid": "3d39e5de-0800-4629-ae1a-99a34706a772" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-75}", + "uuid": "244d7ce4-3dfd-481b-b416-2b779a7d1d79" + } + } + }, + "corner-radius-small-size-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "a62a43dd-cb2a-4e18-bb94-7a9518668400" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "07c45d1f-38be-4223-9f0e-f8ec768c43ff" + } + } + }, + "corner-radius-small-size-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-200}", + "uuid": "f4f0bfc9-ce6d-473f-8dda-c9f21fb8a7b7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-200}", + "uuid": "12641f31-6e63-41ed-994c-af20210795c4" + } + } + }, + "corner-radius-small-size-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "d59337d1-4cec-43c0-821e-06a56745cbcc" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "c0413c6b-e7c3-4964-b4e9-1d9aaacdd6f4" + } + } + }, + "corner-radius-medium-size-extra-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "d0e02d98-e93f-4f81-8d81-8f95e06ad360" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "7bea2457-9377-4919-a5ff-3c098c95651e" + } + } + }, + "corner-radius-medium-size-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-400}", + "uuid": "892bc9de-16b2-4c51-9c18-b239e52ffd14" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-400}", + "uuid": "92a31673-beba-4f48-a54d-fd9bd7e23907" + } + } + }, + "corner-radius-medium-size-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "67fb5355-6d7c-4e4e-a4cb-cdba10a85d84" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "bc2c9277-6927-4655-9160-4f41011874c1" + } + } + }, + "corner-radius-medium-size-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-600}", + "uuid": "ede17e00-83ef-40c5-a1d0-a46372d3fc90" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-600}", + "uuid": "d56562a1-6958-4a3b-a1b4-e5fd159cf311" + } + } + }, + "corner-radius-medium-size-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "c63c5111-11b1-420e-b09e-26053802e0cd" + } + } } -} +} \ No newline at end of file From 65799664b98e08abf230d022991afc3b2f098647 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 25 Jan 2024 09:33:02 -0700 Subject: [PATCH 065/295] chore: added changeset --- .changeset/unlucky-buckets-shop.md | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .changeset/unlucky-buckets-shop.md diff --git a/.changeset/unlucky-buckets-shop.md b/.changeset/unlucky-buckets-shop.md new file mode 100644 index 00000000..3ff3456c --- /dev/null +++ b/.changeset/unlucky-buckets-shop.md @@ -0,0 +1,45 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +existing corner-radius tokens, adding net-new global corner radius tokens, and introducing new alias names that point to these global values. + +## Design Motivation + +More on Spectrum 2 rounding: https://s2.spectrum.corp.adobe.com/page/object-styles/#rounding + +In Spectrum 2, rounding also applies to the different t-shirt sized components and varies based on a Major Second logarithmic scale, rounded to whole numbers to avoid using half-pixels. This allows for components to retain a consistent and identifiable shape at all sizes. Because of this there are now component size specific tokens like corner-radius-small-size-medium or corner-radius-medium-size-extra-large to help us keep track of the nuance within t-shirt sizes. + +## Token Diff + +_Tokens added (23):_ + +- `corner-radius-0` +- `corner-radius-300` +- `corner-radius-400` +- `corner-radius-500` +- `corner-radius-600` +- `corner-radius-700` +- `corner-radius-800` +- `corner-radius-1000` +- `corner-radius-extra-large-default` +- `corner-radius-full` +- `corner-radius-large-default` +- `corner-radius-medium-default` +- `corner-radius-medium-size-extra-small` +- `corner-radius-medium-size-small` +- `corner-radius-medium-size-medium` +- `corner-radius-medium-size-large` +- `corner-radius-medium-size-extra-large` +- `corner-radius-none` +- `corner-radius-small-default` +- `corner-radius-small-size-small` +- `corner-radius-small-size-medium` +- `corner-radius-small-size-large` +- `corner-radius-small-size-extra-large` + +_Token values updated (3):_ + +- `corner-radius-75` +- `corner-radius-100` +- `corner-radius-200` From 3c6303ad878af7f02c91af312607d93ab35f1a00 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 25 Jan 2024 09:57:16 -0700 Subject: [PATCH 066/295] chore: added changeset --- .changeset/fuzzy-cherries-buy.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .changeset/fuzzy-cherries-buy.md diff --git a/.changeset/fuzzy-cherries-buy.md b/.changeset/fuzzy-cherries-buy.md new file mode 100644 index 00000000..da55b95e --- /dev/null +++ b/.changeset/fuzzy-cherries-buy.md @@ -0,0 +1,15 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated text-to-visual-300 mobile value from 11px to 10px. + +## Design Motivation + +To better follow our logarithmic scale rounding principle. + +## Token Diff + +_Token values updated (1):_ + +- `text-to-visual-300` From e9178777d3251b4321e30f8d2db8769f2fd20a24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Jan 2024 16:58:44 +0000 Subject: [PATCH 067/295] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/tokens/CHANGELOG.md | 58 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 61 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 394a4260..53123cc7 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -13,6 +13,7 @@ "dirty-pets-attend", "empty-steaks-dress", "forty-lizards-thank", + "fuzzy-cherries-buy", "gentle-months-carry", "good-peas-mix", "happy-students-vanish", @@ -23,6 +24,7 @@ "soft-moles-walk", "strange-rings-love", "tame-bobcats-beg", + "unlucky-buckets-shop", "warm-experts-beg", "wise-turtles-confess" ] diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 48056077..f914e8a2 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,63 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.11 + +### Minor Changes + +- 3c6303a: Updated text-to-visual-300 mobile value from 11px to 10px. + + ## Design Motivation + + To better follow our logarithmic scale rounding principle. + + ## Token Diff + + _Token values updated (1):_ + + - `text-to-visual-300` + +- 6579966: existing corner-radius tokens, adding net-new global corner radius tokens, and introducing new alias names that point to these global values. + + ## Design Motivation + + More on Spectrum 2 rounding: https://s2.spectrum.corp.adobe.com/page/object-styles/#rounding + + In Spectrum 2, rounding also applies to the different t-shirt sized components and varies based on a Major Second logarithmic scale, rounded to whole numbers to avoid using half-pixels. This allows for components to retain a consistent and identifiable shape at all sizes. Because of this there are now component size specific tokens like corner-radius-small-size-medium or corner-radius-medium-size-extra-large to help us keep track of the nuance within t-shirt sizes. + + ## Token Diff + + _Tokens added (23):_ + + - `corner-radius-0` + - `corner-radius-300` + - `corner-radius-400` + - `corner-radius-500` + - `corner-radius-600` + - `corner-radius-700` + - `corner-radius-800` + - `corner-radius-1000` + - `corner-radius-extra-large-default` + - `corner-radius-full` + - `corner-radius-large-default` + - `corner-radius-medium-default` + - `corner-radius-medium-size-extra-small` + - `corner-radius-medium-size-small` + - `corner-radius-medium-size-medium` + - `corner-radius-medium-size-large` + - `corner-radius-medium-size-extra-large` + - `corner-radius-none` + - `corner-radius-small-default` + - `corner-radius-small-size-small` + - `corner-radius-small-size-medium` + - `corner-radius-small-size-large` + - `corner-radius-small-size-extra-large` + + _Token values updated (3):_ + + - `corner-radius-75` + - `corner-radius-100` + - `corner-radius-200` + ## 13.0.0-beta.10 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 1600b0f3..a593d050 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.10", + "version": "13.0.0-beta.11", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 42ad0e1e982a1ced8572400e267ea75c6aafa7f7 Mon Sep 17 00:00:00 2001 From: mrcjhicks Date: Thu, 25 Jan 2024 18:27:38 +0000 Subject: [PATCH 068/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index d3ab22d1..4839efda 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -153,10 +153,12 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.5", "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.5", "uuid": "9cd69903-8417-4d6a-92cf-7ec759d5f60f" } From bc86085ac80b0648c8f9fddb55124eebece2f1bc Mon Sep 17 00:00:00 2001 From: GarthDB Date: Fri, 26 Jan 2024 18:58:26 +0000 Subject: [PATCH 069/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 16 ++++++++-------- packages/tokens/src/layout.json | 2 ++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 2f0e01f8..42708af6 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -571,7 +571,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "18px", "uuid": "e53ea4a5-bde5-4695-9ab8-50c2ce704019" }, "mobile": { @@ -603,12 +603,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", + "value": "0px", "uuid": "b5243f56-7985-4686-b41f-9b9b9a18b047" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "0px", "uuid": "9d00a023-3a33-4b98-819e-3229e03d103b" } } @@ -619,12 +619,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "0px", "uuid": "f7dd90d8-91e6-4090-a5a9-6b30087860a4" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", + "value": "0px", "uuid": "f83b208f-dfdb-49a8-aedd-08fe8c7a86a9" } } @@ -635,12 +635,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "0px", "uuid": "5c14d528-fe17-4b0b-a123-edbdb93fd173" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", + "value": "0px", "uuid": "c4c5e251-d514-42cf-b9e3-56694910e95b" } } @@ -7061,4 +7061,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index d3ab22d1..4839efda 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -153,10 +153,12 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.5", "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" }, "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.5", "uuid": "9cd69903-8417-4d6a-92cf-7ec759d5f60f" } From c87d7437838ca7f58424a5a237aead18bb37304f Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Mon, 29 Jan 2024 15:10:37 -0700 Subject: [PATCH 070/295] feat: added multiplier to scale-set as an allowed sub schema --- .changeset/brown-years-perform.md | 5 +++++ packages/tokens/schemas/token-types/scale-set.json | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 .changeset/brown-years-perform.md diff --git a/.changeset/brown-years-perform.md b/.changeset/brown-years-perform.md new file mode 100644 index 00000000..e3510dc2 --- /dev/null +++ b/.changeset/brown-years-perform.md @@ -0,0 +1,5 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Adds missing schema information for `corner-radius-1000`. Also added `schemas/token-types/multiplier.json` to the `scale-set` schema. diff --git a/packages/tokens/schemas/token-types/scale-set.json b/packages/tokens/schemas/token-types/scale-set.json index fd0fd174..2ff25d6e 100644 --- a/packages/tokens/schemas/token-types/scale-set.json +++ b/packages/tokens/schemas/token-types/scale-set.json @@ -26,6 +26,9 @@ }, { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" } ] }, @@ -39,6 +42,9 @@ }, { "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + }, + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" } ] } From 84b065031e52e8284113a3ac821f99a50331552a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 29 Jan 2024 22:33:16 +0000 Subject: [PATCH 071/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 27 +++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 53123cc7..4416df84 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -10,6 +10,7 @@ "transform-tokens-json": "0.0.1" }, "changesets": [ + "brown-years-perform", "dirty-pets-attend", "empty-steaks-dress", "forty-lizards-thank", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index f914e8a2..840a4ba3 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,32 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.12 + +### Minor Changes + +- c87d743: Updates to spacing tokens for the S2 field label component include: + + Token: field-label-top-to-asterisk-[medium, large, extra-large]. Only value for extra-large token required updating in the desktop scale. All other sizes presented accurate values. + + Token: field-label-top-margin-[medium, large, extra-large]. All values were updated to reflect 0px for both desktop and mobile scales + + ## Design Motivation + + These changes occurred as a result of updates to the field label component for S2. + + ## Token Diff + + _Token values updated (4):_ + + - `field-label-top-margin-extra-large` + - `field-label-top-margin-large` + - `field-label-top-margin-medium` + - `field-label-top-to-asterisk-extra-large` + + ## Schema Diff + + Adds missing schema information for `corner-radius-1000`. Also added `schemas/token-types/multiplier.json` to the `scale-set` schema. + ## 13.0.0-beta.11 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index a593d050..3f3cd0df 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.11", + "version": "13.0.0-beta.12", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From bc4031e43d404c3965beb0fedc8841d7394c4a85 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Tue, 30 Jan 2024 04:02:47 +0000 Subject: [PATCH 072/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 42708af6..3b161bb3 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1021,12 +1021,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "10px", "uuid": "0732bd0e-c5c0-4e58-8fee-2015c1753237" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "12px", "uuid": "ad2c09a6-c42e-4eef-94a3-6c2180c6e2af" } } @@ -1037,12 +1037,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", + "value": "5px", "uuid": "481757aa-c6b5-4281-9a63-feeb1c88aec6" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "6px", "uuid": "70c9f65f-1e23-4c47-94dd-0c3ddde15743" } } @@ -7060,5 +7060,20 @@ "uuid": "ad959938-ad69-4137-91e4-fcf2465b223a" } } + }, + "divider-vertical-minimum-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "200px", + "uuid": "299db7d6-66f6-4fcb-890d-223406c85ae4" + }, + "divider-horizontal-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "200px", + "uuid": "a0093378-0b2c-474b-9fe5-76940fd1398b" + }, + "tooltip-tip-corner-radius": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "53fef925-59e3-4df5-9ac2-e2b4d34d9bca" } } \ No newline at end of file From ef600c457cb33852fd4942baf0bc0622b370bfc6 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 31 Jan 2024 09:41:28 -0700 Subject: [PATCH 073/295] chore: added changeset --- .changeset/clever-onions-compete.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .changeset/clever-onions-compete.md diff --git a/.changeset/clever-onions-compete.md b/.changeset/clever-onions-compete.md new file mode 100644 index 00000000..754b6006 --- /dev/null +++ b/.changeset/clever-onions-compete.md @@ -0,0 +1,19 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +## Design Motivation + +* The updated tooltip component in Spectrum 2 has a larger, slightly rounded tip +* Added tokens for horizontal and vertical orientation + +## Tokens Diff + +*Tokens added (3):* + - `divider-horizontal-minimum-width` + - `divider-vertical-minimum-height` + - `tooltip-tip-corner-radius` + +*Token values updated (2):* + - `tooltip-tip-height` + - `tooltip-tip-width` From 2e8d0cd2eb750b5566c4d9b09f221d8354116d13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 31 Jan 2024 16:43:41 +0000 Subject: [PATCH 074/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 22 ++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 4416df84..c336c007 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -11,6 +11,7 @@ }, "changesets": [ "brown-years-perform", + "clever-onions-compete", "dirty-pets-attend", "empty-steaks-dress", "forty-lizards-thank", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 840a4ba3..bc41e328 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,27 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.13 + +### Minor Changes + +- ef600c4: ## Design Motivation + + - The updated tooltip component in Spectrum 2 has a larger, slightly rounded tip + - Added tokens for horizontal and vertical orientation + + ## Tokens Diff + + _Tokens added (3):_ + + - `divider-horizontal-minimum-width` + - `divider-vertical-minimum-height` + - `tooltip-tip-corner-radius` + + _Token values updated (2):_ + + - `tooltip-tip-height` + - `tooltip-tip-width` + ## 13.0.0-beta.12 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 3f3cd0df..54309ad5 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.12", + "version": "13.0.0-beta.13", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 3237aa1fc024c1afac3bee26ba7605ec57ffb188 Mon Sep 17 00:00:00 2001 From: Cable Hicks Date: Thu, 1 Feb 2024 12:09:54 -0800 Subject: [PATCH 075/295] feat: remove duplicate token set definitions --- packages/tokens/src/color-aliases.json | 65 +--- packages/tokens/src/layout-component.json | 240 +++--------- packages/tokens/src/layout.json | 432 ++++------------------ 3 files changed, 136 insertions(+), 601 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index d893ee84..4aa09cfe 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -65,44 +65,14 @@ "uuid": "fdf6fd5d-55a0-4428-a258-4e8fafc74b74" }, "background-base-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "value": "{gray-25}", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "cf1299aa-86c7-4523-b6ae-6de597ac3712" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "6945b976-83b4-4aec-a687-cb461bc9fe70" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-25}", + "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" }, "background-layer-1-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "7e6678b7-2903-434b-8ee2-06c83815b01d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "da228344-5b83-4e08-96d2-089068138ba0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "3ccfa493-5375-492a-93b0-7418655c3b56" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-50}", + "uuid": "7e6678b7-2903-434b-8ee2-06c83815b01d" }, "background-layer-2-color": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -610,24 +580,9 @@ "uuid": "579e401c-de49-41af-a8c7-a0a070c31979" }, "gray-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "fa68c3bf-88b5-4653-a42d-7de5ce7cec3d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "6a74ab0a-e481-4d38-9db7-ea8ef885940b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-700}", + "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" }, "red-background-color-default": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1499,4 +1454,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 3b161bb3..39334ecd 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -583,67 +583,27 @@ }, "field-label-top-margin-small": { "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "ab718f97-15c3-4b8b-aee7-b50b09ec0a33" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "3240fc8b-c1de-42bd-a004-9b27748f5574" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "ab718f97-15c3-4b8b-aee7-b50b09ec0a33" }, "field-label-top-margin-medium": { "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "b5243f56-7985-4686-b41f-9b9b9a18b047" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "9d00a023-3a33-4b98-819e-3229e03d103b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "b5243f56-7985-4686-b41f-9b9b9a18b047" }, "field-label-top-margin-large": { "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f7dd90d8-91e6-4090-a5a9-6b30087860a4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f83b208f-dfdb-49a8-aedd-08fe8c7a86a9" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "f7dd90d8-91e6-4090-a5a9-6b30087860a4" }, "field-label-top-margin-extra-large": { "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "5c14d528-fe17-4b0b-a123-edbdb93fd173" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "c4c5e251-d514-42cf-b9e3-56694910e95b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "5c14d528-fe17-4b0b-a123-edbdb93fd173" }, "field-label-to-component": { "component": "field-label", @@ -803,19 +763,9 @@ }, "status-light-dot-size-small": { "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "04485265-2983-4377-9ec5-f2456863a1df" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "cd7e6182-25e6-46cc-99f7-1750bc889183" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "04485265-2983-4377-9ec5-f2456863a1df" }, "status-light-dot-size-medium": { "component": "status-light", @@ -931,35 +881,15 @@ }, "action-button-edge-to-hold-icon-extra-small": { "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "b79597cc-5294-4555-ab78-f4200e480ac3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "d0c7ca7a-e92a-43e4-8b8d-4e4a7f8e9dcc" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "b79597cc-5294-4555-ab78-f4200e480ac3" }, "action-button-edge-to-hold-icon-small": { "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "fa106863-0e09-44d4-9465-68cd3254ed2b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "d94c960b-4248-4422-9a0d-e77b41c6818a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "fa106863-0e09-44d4-9465-68cd3254ed2b" }, "action-button-edge-to-hold-icon-medium": { "component": "action-button", @@ -3746,19 +3676,9 @@ }, "accordion-top-to-text-compact-small": { "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "d6cc404c-af92-43be-88e3-407fdcb6e068" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "0a5e5c70-d24e-48a2-9445-ccf87de892a9" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "d6cc404c-af92-43be-88e3-407fdcb6e068" }, "accordion-top-to-text-regular-small": { "component": "accordion", @@ -3794,19 +3714,9 @@ }, "accordion-top-to-text-compact-medium": { "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "484c9603-07f1-4ba6-b1bf-7cfaec5d1594" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "47070193-194e-4211-b767-61ef8aed8723" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "484c9603-07f1-4ba6-b1bf-7cfaec5d1594" }, "accordion-top-to-text-regular-medium": { "component": "accordion", @@ -4146,67 +4056,27 @@ }, "accordion-disclosure-indicator-to-text": { "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "27b481a4-0ea9-4e1c-a283-4a799d18d642" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "d560c5a0-1fa3-4d94-a4e6-87b71780083b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "27b481a4-0ea9-4e1c-a283-4a799d18d642" }, "accordion-edge-to-disclosure-indicator": { "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "614e6448-c0a4-4ad1-b125-f362e3001a86" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "d64e930a-5e7a-4438-801e-25bfe479f73d" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "614e6448-c0a4-4ad1-b125-f362e3001a86" }, "accordion-edge-to-text": { "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "a9641e89-2c2e-49c3-9662-f530ad23a688" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "186b2461-88fe-41ba-8b1a-dbdb8a731e2f" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "a9641e89-2c2e-49c3-9662-f530ad23a688" }, "accordion-focus-indicator-gap": { "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "318c5cda-be1b-416b-b1b7-b962e5f45c0c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f8e8ebaa-a4e5-4874-ae6d-c6b421b2d216" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "318c5cda-be1b-416b-b1b7-b962e5f45c0c" }, "accordion-content-area-top-to-content": { "component": "accordion", @@ -4894,19 +4764,9 @@ }, "table-edge-to-content": { "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "5e46672f-eab0-4ec3-bd14-68ffa4404ec1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "7912ab09-70e2-4e08-8aa5-f985e05a4ba7" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "5e46672f-eab0-4ec3-bd14-68ffa4404ec1" }, "table-border-divider-width": { "component": "table", @@ -6522,19 +6382,9 @@ } }, "asterisk-icon-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "49ea57ee-7b12-4a8b-a9bb-a11cf2c9d72c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bcba4d11-e15a-4ebc-a152-224ef228036a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "49ea57ee-7b12-4a8b-a9bb-a11cf2c9d72c" }, "asterisk-icon-size-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 4839efda..9c97c8b4 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1,183 +1,63 @@ { "corner-radius-0": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "bb9d8350-b1fb-4496-9c22-6ec9647ff117" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "8db9a268-95ee-4d25-a664-41b7ff06bea2" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "bb9d8350-b1fb-4496-9c22-6ec9647ff117" }, "corner-radius-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "cddbb2f6-b3a8-4416-90ed-0d7cd1bc7248" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" }, "corner-radius-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "e22537bb-a29f-47e5-be13-7e2775ee1103" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30" }, "corner-radius-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "23f751eb-a076-487d-a5e1-1c0eb2937018" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" }, "corner-radius-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "154642d7-c23d-44fd-9d79-b719ef32922e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "262d7b06-a9b2-4656-8175-fbe80fdc64ab" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "154642d7-c23d-44fd-9d79-b719ef32922e" }, "corner-radius-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "690db7ae-cae8-49bb-8777-b4f1829b2f0b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "76cd22ed-1466-48fd-bcac-55c06ee56e22" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "690db7ae-cae8-49bb-8777-b4f1829b2f0b" }, "corner-radius-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "ada2ea1d-1728-411a-8aae-a198ce390a25" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "fdfdb85e-6b60-4630-af09-415db7057791" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "ada2ea1d-1728-411a-8aae-a198ce390a25" }, "corner-radius-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "abc0f309-3bd2-4800-af12-b27386e86617" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "5538f603-bf69-4a30-bfe1-ea6f91a8b13a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "abc0f309-3bd2-4800-af12-b27386e86617" }, "corner-radius-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "cb6b72ed-a9a1-4113-b147-1ef369fe6269" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "1aacac8f-8fbc-4045-9b98-f260b1e1aa7e" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "cb6b72ed-a9a1-4113-b147-1ef369fe6269" }, "corner-radius-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8fc023ca-8aec-40fe-9130-087aa035bac7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0032ebbf-3428-4fc3-aa5a-9dd57a6ce566" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "8fc023ca-8aec-40fe-9130-087aa035bac7" }, "corner-radius-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.5", - "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.5", - "uuid": "9cd69903-8417-4d6a-92cf-7ec759d5f60f" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "value": "0.5", + "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" }, "drop-shadow-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "4e20cec6-96b6-4e9c-8b25-c819731b89ba" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316" }, "drop-shadow-y": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -2300,228 +2180,78 @@ "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" }, "corner-radius-none": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-0}", - "uuid": "7a11b308-bed2-4b6f-bb4a-c9ae4ef8e03d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-0}", - "uuid": "497ee71e-792d-449e-acc2-41c9de0d7f16" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-0}", + "uuid": "7a11b308-bed2-4b6f-bb4a-c9ae4ef8e03d" }, "corner-radius-small-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "b4971f86-aeea-42c9-9ba7-a74cf4d1a545" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "b7bdc7fe-093e-4357-8df8-595872a0c600" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "b4971f86-aeea-42c9-9ba7-a74cf4d1a545" }, "corner-radius-medium-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "a83a882e-430c-46fc-a8be-5ade0dd8a4c6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "db528ae2-76c1-4685-9148-d1945f1e76e8" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "a83a882e-430c-46fc-a8be-5ade0dd8a4c6" }, "corner-radius-large-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "29981aef-aea6-4cde-849f-4bc67e320ea7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "470498fa-d118-4960-930e-30f8cc6bae8b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "29981aef-aea6-4cde-849f-4bc67e320ea7" }, "corner-radius-extra-large-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-800}", - "uuid": "d639a0b5-16b4-4d75-ab37-d87815c7b500" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-800}", - "uuid": "f7720ff5-c618-4e55-9acf-83b1e171e20c" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-800}", + "uuid": "d639a0b5-16b4-4d75-ab37-d87815c7b500" }, "corner-radius-full": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-1000}", - "uuid": "4853520b-bda3-45d1-bd20-8508cac08847" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-1000}", - "uuid": "258f18c4-7c48-4087-bdcc-6cf625e11802" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-1000}", + "uuid": "4853520b-bda3-45d1-bd20-8508cac08847" }, "corner-radius-small-size-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-75}", - "uuid": "3d39e5de-0800-4629-ae1a-99a34706a772" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-75}", - "uuid": "244d7ce4-3dfd-481b-b416-2b779a7d1d79" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-75}", + "uuid": "3d39e5de-0800-4629-ae1a-99a34706a772" }, "corner-radius-small-size-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "a62a43dd-cb2a-4e18-bb94-7a9518668400" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "07c45d1f-38be-4223-9f0e-f8ec768c43ff" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-100}", + "uuid": "a62a43dd-cb2a-4e18-bb94-7a9518668400" }, "corner-radius-small-size-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-200}", - "uuid": "f4f0bfc9-ce6d-473f-8dda-c9f21fb8a7b7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-200}", - "uuid": "12641f31-6e63-41ed-994c-af20210795c4" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-200}", + "uuid": "f4f0bfc9-ce6d-473f-8dda-c9f21fb8a7b7" }, "corner-radius-small-size-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "d59337d1-4cec-43c0-821e-06a56745cbcc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "c0413c6b-e7c3-4964-b4e9-1d9aaacdd6f4" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "d59337d1-4cec-43c0-821e-06a56745cbcc" }, "corner-radius-medium-size-extra-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "d0e02d98-e93f-4f81-8d81-8f95e06ad360" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "7bea2457-9377-4919-a5ff-3c098c95651e" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-300}", + "uuid": "d0e02d98-e93f-4f81-8d81-8f95e06ad360" }, "corner-radius-medium-size-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-400}", - "uuid": "892bc9de-16b2-4c51-9c18-b239e52ffd14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-400}", - "uuid": "92a31673-beba-4f48-a54d-fd9bd7e23907" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-400}", + "uuid": "892bc9de-16b2-4c51-9c18-b239e52ffd14" }, "corner-radius-medium-size-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "67fb5355-6d7c-4e4e-a4cb-cdba10a85d84" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "bc2c9277-6927-4655-9160-4f41011874c1" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-500}", + "uuid": "67fb5355-6d7c-4e4e-a4cb-cdba10a85d84" }, "corner-radius-medium-size-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-600}", - "uuid": "ede17e00-83ef-40c5-a1d0-a46372d3fc90" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-600}", - "uuid": "d56562a1-6958-4a3b-a1b4-e5fd159cf311" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-600}", + "uuid": "ede17e00-83ef-40c5-a1d0-a46372d3fc90" }, "corner-radius-medium-size-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "c63c5111-11b1-420e-b09e-26053802e0cd" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-700}", + "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" } } \ No newline at end of file From f004b0c596d0b31eeb7a3f258e8b58c5d20d79e7 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 1 Feb 2024 17:12:48 -0700 Subject: [PATCH 076/295] chore: updated dependecies and added changeset --- .changeset/smooth-turtles-retire.md | 56 ++++ package.json | 14 +- packages/tokens/package.json | 6 +- pnpm-lock.yaml | 498 ++++++++++++++-------------- 4 files changed, 322 insertions(+), 252 deletions(-) create mode 100644 .changeset/smooth-turtles-retire.md diff --git a/.changeset/smooth-turtles-retire.md b/.changeset/smooth-turtles-retire.md new file mode 100644 index 00000000..6326d449 --- /dev/null +++ b/.changeset/smooth-turtles-retire.md @@ -0,0 +1,56 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +The tokens listed in the diff below had identical values between sets and so were merged to single values to simplify the data. + +## Token Diff + +_Tokens values updated (46):_ + +- `accordion-disclosure-indicator-to-text` +- `accordion-edge-to-disclosure-indicator` +- `accordion-edge-to-text` +- `accordion-focus-indicator-gap` +- `accordion-top-to-text-compact-medium` +- `accordion-top-to-text-compact-small` +- `action-button-edge-to-hold-icon-extra-small` +- `action-button-edge-to-hold-icon-small` +- `asterisk-icon-size-75` +- `background-base-color` +- `background-layer-1-color` +- `color-area-border-rounding` +- `corner-radius-0` +- `corner-radius-100` +- `corner-radius-1000` +- `corner-radius-200` +- `corner-radius-300` +- `corner-radius-400` +- `corner-radius-500` +- `corner-radius-600` +- `corner-radius-700` +- `corner-radius-75` +- `corner-radius-800` +- `corner-radius-extra-large-default` +- `corner-radius-full` +- `corner-radius-large-default` +- `corner-radius-medium-default` +- `corner-radius-medium-size-extra-large` +- `corner-radius-medium-size-extra-small` +- `corner-radius-medium-size-large` +- `corner-radius-medium-size-medium` +- `corner-radius-medium-size-small` +- `corner-radius-none` +- `corner-radius-small-default` +- `corner-radius-small-size-extra-large` +- `corner-radius-small-size-large` +- `corner-radius-small-size-medium` +- `corner-radius-small-size-small` +- `drop-shadow-x` +- `field-label-top-margin-extra-large` +- `field-label-top-margin-large` +- `field-label-top-margin-medium` +- `field-label-top-margin-small` +- `gray-background-color-default` +- `status-light-dot-size-small` +- `table-edge-to-content` diff --git a/package.json b/package.json index 1d777af1..2a3e74b5 100644 --- a/package.json +++ b/package.json @@ -23,13 +23,13 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@changesets/cli": "^2.27.1", - "@commitlint/cli": "^18.4.4", - "@commitlint/config-conventional": "^18.4.4", - "@moonrepo/cli": "^1.19.0", - "ava": "^6.0.1", - "husky": "^8.0.3", - "lint-staged": "^15.2.0", - "prettier": "^3.1.1" + "@commitlint/cli": "^18.6.0", + "@commitlint/config-conventional": "^18.6.0", + "@moonrepo/cli": "^1.20.1", + "ava": "^6.1.1", + "husky": "^9.0.10", + "lint-staged": "^15.2.1", + "prettier": "^3.2.4" }, "engines": { "node": "18.13.0" diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 54309ad5..9383b059 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -23,10 +23,10 @@ "ajv": "^8.12.0", "ajv-formats": "^2.1.1", "deep-object-diff": "^1.1.9", - "glob": "^10.3.3", - "style-dictionary": "^3.8.0", + "glob": "^10.3.10", + "style-dictionary": "^3.9.2", "style-dictionary-sets": "^2.3.0", - "tar": "^6.1.15", + "tar": "^6.2.0", "tmp-promise": "^3.0.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fec05f11..16293ba6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,26 +11,26 @@ importers: specifier: ^2.27.1 version: 2.27.1 "@commitlint/cli": - specifier: ^18.4.4 - version: 18.4.4(@types/node@20.10.6)(typescript@5.3.3) + specifier: ^18.6.0 + version: 18.6.0(@types/node@20.11.16)(typescript@5.3.3) "@commitlint/config-conventional": - specifier: ^18.4.4 - version: 18.4.4 + specifier: ^18.6.0 + version: 18.6.0 "@moonrepo/cli": - specifier: ^1.19.0 - version: 1.19.0 + specifier: ^1.20.1 + version: 1.20.1 ava: - specifier: ^6.0.1 - version: 6.0.1 + specifier: ^6.1.1 + version: 6.1.1 husky: - specifier: ^8.0.3 - version: 8.0.3 + specifier: ^9.0.10 + version: 9.0.10 lint-staged: - specifier: ^15.2.0 - version: 15.2.0 + specifier: ^15.2.1 + version: 15.2.1 prettier: - specifier: ^3.1.1 - version: 3.1.1 + specifier: ^3.2.4 + version: 3.2.4 docs/site: dependencies: @@ -39,7 +39,7 @@ importers: version: 5.0.31 "@spectrum-css/table": specifier: ^4.0.60 - version: 4.0.60(@spectrum-css/icon@5.0.0)(@spectrum-css/vars@9.0.8) + version: 4.0.60(@spectrum-css/icon@5.1.0)(@spectrum-css/vars@9.0.8) "@spectrum-css/tokens": specifier: ^11.0.0 version: 11.0.0 @@ -118,13 +118,13 @@ importers: devDependencies: "@types/node": specifier: ^20.4.2 - version: 20.10.6 + version: 20.11.16 typescript: specifier: ^5.1.6 version: 5.3.3 vite: specifier: ^4.4.4 - version: 4.4.4(@types/node@20.10.6) + version: 4.4.4(@types/node@20.11.16) packages/tokens: devDependencies: @@ -138,16 +138,16 @@ importers: specifier: ^1.1.9 version: 1.1.9 glob: - specifier: ^10.3.3 - version: 10.3.3 + specifier: ^10.3.10 + version: 10.3.10 style-dictionary: - specifier: ^3.8.0 - version: 3.8.0 + specifier: ^3.9.2 + version: 3.9.2 style-dictionary-sets: specifier: ^2.3.0 version: 2.3.0 tar: - specifier: ^6.1.15 + specifier: ^6.2.0 version: 6.2.0 tmp-promise: specifier: ^3.0.3 @@ -159,13 +159,13 @@ importers: dependencies: glob: specifier: ^10.3.3 - version: 10.3.3 + version: 10.3.10 jsonpath-plus: specifier: ^7.2.0 version: 7.2.0 prettier: specifier: ^3.0.0 - version: 3.1.1 + version: 3.2.4 packages: /@babel/code-frame@7.23.5: @@ -199,10 +199,10 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/runtime@7.23.7: + /@babel/runtime@7.23.9: resolution: { - integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==, + integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==, } engines: { node: ">=6.9.0" } dependencies: @@ -215,7 +215,7 @@ packages: integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/config": 3.0.0 "@changesets/get-version-range-type": 0.4.0 "@changesets/git": 3.0.0 @@ -236,7 +236,7 @@ packages: integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/errors": 0.2.0 "@changesets/get-dependents-graph": 2.0.0 "@changesets/types": 6.0.0 @@ -260,7 +260,7 @@ packages: } hasBin: true dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/apply-release-plan": 7.0.0 "@changesets/assemble-release-plan": 6.0.0 "@changesets/changelog-git": 0.2.0 @@ -337,7 +337,7 @@ packages: integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/assemble-release-plan": 6.0.0 "@changesets/config": 3.0.0 "@changesets/pre": 2.0.0 @@ -359,7 +359,7 @@ packages: integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -393,7 +393,7 @@ packages: integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -406,7 +406,7 @@ packages: integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/git": 3.0.0 "@changesets/logger": 0.1.0 "@changesets/parse": 0.4.0 @@ -436,26 +436,26 @@ packages: integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 dev: true - /@commitlint/cli@18.4.4(@types/node@20.10.6)(typescript@5.3.3): + /@commitlint/cli@18.6.0(@types/node@20.11.16)(typescript@5.3.3): resolution: { - integrity: sha512-Ro3wIo//fV3XiV1EkdpHog6huaEyNcUAVrSmtgKqYM5g982wOWmP4FXvEDFwRMVgz878CNBvvCc33dMZ5AQJ/g==, + integrity: sha512-FiH23cr9QG8VdfbmvJJZmdfHGVMCouOOAzoXZ3Cd7czGC52RbycwNt8YCI7SA69pAl+t30vh8LMaO/N+kcel6w==, } engines: { node: ">=v18" } hasBin: true dependencies: - "@commitlint/format": 18.4.4 - "@commitlint/lint": 18.4.4 - "@commitlint/load": 18.4.4(@types/node@20.10.6)(typescript@5.3.3) - "@commitlint/read": 18.4.4 - "@commitlint/types": 18.4.4 + "@commitlint/format": 18.6.0 + "@commitlint/lint": 18.6.0 + "@commitlint/load": 18.6.0(@types/node@20.11.16)(typescript@5.3.3) + "@commitlint/read": 18.6.0 + "@commitlint/types": 18.6.0 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 @@ -466,35 +466,35 @@ packages: - typescript dev: true - /@commitlint/config-conventional@18.4.4: + /@commitlint/config-conventional@18.6.0: resolution: { - integrity: sha512-Bz3sPQSboBN+Et/KyZrR+OJ3z9PrHDw7Bls0/hv94PmuHBtMq1dCGxS9XzTGzxeMNlytCC4kxF083tbhPljl3Q==, + integrity: sha512-CDCOf2eJz9D/TL44IBks0stM9TmdLCNE2B48owIU3YCadwzts/bobXPScagIgPQF6hhKYMEdj5zpUDlmbwuqwQ==, } engines: { node: ">=v18" } dependencies: conventional-changelog-conventionalcommits: 7.0.2 dev: true - /@commitlint/config-validator@18.4.4: + /@commitlint/config-validator@18.6.0: resolution: { - integrity: sha512-/QI8KIg/h7O0Eus36fPcEcO3QPBcdXuGfZeCF5m15k0EB2bcU8s6pHNTNEa6xz9PrAefHCL+yzRJj7w20T6Mow==, + integrity: sha512-Ptfa865arNozlkjxrYG3qt6wT9AlhNUHeuDyKEZiTL/l0ftncFhK/KN0t/EAMV2tec+0Mwxo0FmhbESj/bI+1g==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.4 + "@commitlint/types": 18.6.0 ajv: 8.12.0 dev: true - /@commitlint/ensure@18.4.4: + /@commitlint/ensure@18.6.0: resolution: { - integrity: sha512-KjD19p6julB5WrQL+Cd8p+AePwpl1XzGAjB0jnuFMKWtji9L7ucCZUKDstGjlkBZGGzH/nvdB8K+bh5K27EVUg==, + integrity: sha512-xY07NmOBJ7JuhX3tic021PaeLepZARIQyqpAQoNQZoml1keBFfB6MbA7XlWZv0ebbarUFE4yhKxOPw+WFv7/qw==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.4 + "@commitlint/types": 18.6.0 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -510,55 +510,55 @@ packages: engines: { node: ">=v18" } dev: true - /@commitlint/format@18.4.4: + /@commitlint/format@18.6.0: resolution: { - integrity: sha512-2v3V5hVlv0R3pe7p66IX5F7cjeVvGM5JqITRIbBCFvGHPJ/CG74rjTkAu0RBEiIhlk3eOaLjVGq3d5falPkLBA==, + integrity: sha512-8UNWfs2slPPSQiiVpLGJTnPHv7Jkd5KYxfbNXbmLL583bjom4RrylvyrCVnmZReA8nNad7pPXq6mDH4FNVj6xg==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.4 + "@commitlint/types": 18.6.0 chalk: 4.1.2 dev: true - /@commitlint/is-ignored@18.4.4: + /@commitlint/is-ignored@18.6.0: resolution: { - integrity: sha512-rXWes9owKBTjfTr6Od7YlflRg4N+ngkOH+dUZhk0qL/XQb26mHz0EgVgdixMVBac1OsohRwJaLmVHX+5F6vfmg==, + integrity: sha512-Xjx/ZyyJ4FdLuz0FcOvqiqSFgiO2yYj3QN9XlvyrxqbXTxPVC7QFEXJYBVPulUSN/gR7WXH1Udw+HYYfD17xog==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.4 + "@commitlint/types": 18.6.0 semver: 7.5.4 dev: true - /@commitlint/lint@18.4.4: + /@commitlint/lint@18.6.0: resolution: { - integrity: sha512-SoyQstVxMY5Z4GnFRtRzy+NWYb+yVseXgir+7BxnpB59oH05C9XztRrhDw6OnkNeXhjINTpi1HLnuY7So+CaAQ==, + integrity: sha512-ycbuDWfyykPmslgiHzhz8dL6F0BJYltXLVfc+M49z0c+FNITM0v+r0Vd2+Tdtq06VTc894p2+YSmZhulY8Jn3Q==, } engines: { node: ">=v18" } dependencies: - "@commitlint/is-ignored": 18.4.4 - "@commitlint/parse": 18.4.4 - "@commitlint/rules": 18.4.4 - "@commitlint/types": 18.4.4 + "@commitlint/is-ignored": 18.6.0 + "@commitlint/parse": 18.6.0 + "@commitlint/rules": 18.6.0 + "@commitlint/types": 18.6.0 dev: true - /@commitlint/load@18.4.4(@types/node@20.10.6)(typescript@5.3.3): + /@commitlint/load@18.6.0(@types/node@20.11.16)(typescript@5.3.3): resolution: { - integrity: sha512-RaDIa9qwOw2xRJ3Jr2DBXd14rmnHJIX2XdZF4kmoF1rgsg/+7cvrExLSUNAkQUNimyjCn1b/bKX2Omm+GdY0XQ==, + integrity: sha512-RRssj7TmzT0bowoEKlgwg8uQ7ORXWkw7lYLsZZBMi9aInsJuGNLNWcMxJxRZbwxG3jkCidGUg85WmqJvRjsaDA==, } engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 18.4.4 + "@commitlint/config-validator": 18.6.0 "@commitlint/execute-rule": 18.4.4 - "@commitlint/resolve-extends": 18.4.4 - "@commitlint/types": 18.4.4 + "@commitlint/resolve-extends": 18.6.0 + "@commitlint/types": 18.6.0 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.3.3) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.10.6)(cosmiconfig@8.3.6)(typescript@5.3.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.16)(cosmiconfig@8.3.6)(typescript@5.3.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -576,57 +576,57 @@ packages: engines: { node: ">=v18" } dev: true - /@commitlint/parse@18.4.4: + /@commitlint/parse@18.6.0: resolution: { - integrity: sha512-99G7dyn/OoyNWXJni0Ki0K3aJd01pEb/Im/Id6y4X7PN+kGOahjz2z/cXYYHn7xDdooqFVdiVrVLeChfgpWZ2g==, + integrity: sha512-Y/G++GJpATFw54O0jikc/h2ibyGHgghtPnwsOk3O/aU092ydJ5XEHYcd7xGNQYuLweLzQis2uEwRNk9AVIPbQQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.4.4 + "@commitlint/types": 18.6.0 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 dev: true - /@commitlint/read@18.4.4: + /@commitlint/read@18.6.0: resolution: { - integrity: sha512-r58JbWky4gAFPea/CZmvlqP9Ehbs+8gSEUqhIJOojKzTc3xlxFnZUDVPcEnnaqzQEEoV6C69VW7xuzdcBlu/FQ==, + integrity: sha512-w39ji8VfWhPKRquPhRHB3Yd8XIHwaNHgOh28YI1QEmZ59qVpuVUQo6h/NsVb+uoC6LbXZiofTZv2iFR084jKEA==, } engines: { node: ">=v18" } dependencies: "@commitlint/top-level": 18.4.4 - "@commitlint/types": 18.4.4 + "@commitlint/types": 18.6.0 git-raw-commits: 2.0.11 minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@18.4.4: + /@commitlint/resolve-extends@18.6.0: resolution: { - integrity: sha512-RRpIHSbRnFvmGifVk21Gqazf1QF/yeP+Kkg/e3PlkegcOKd/FGOXp/Kx9cvSO2K7ucSn4GD/oBvgasFoy+NCAw==, + integrity: sha512-k2Xp+Fxeggki2i90vGrbiLDMefPius3zGSTFFlRAPKce/SWLbZtI+uqE9Mne23mHO5lmcSV8z5m6ziiJwGpOcg==, } engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 18.4.4 - "@commitlint/types": 18.4.4 + "@commitlint/config-validator": 18.6.0 + "@commitlint/types": 18.6.0 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules@18.4.4: + /@commitlint/rules@18.6.0: resolution: { - integrity: sha512-6Uzlsnl/GljEI+80NWjf4ThOfR8NIsbm18IfXYuCEchlwMHSxiuYG4rHSK5DNmG/+MIo8eR5VdQ0gQyt7kWzAA==, + integrity: sha512-pTalvCEvuCWrBWZA/YqO/3B3nZnY3Ncc+TmQsRajBdC1tkQIm5Iovdo4Ec7f2Dw1tVvpYMUUNAgcWqsY0WckWg==, } engines: { node: ">=v18" } dependencies: - "@commitlint/ensure": 18.4.4 + "@commitlint/ensure": 18.6.0 "@commitlint/message": 18.4.4 "@commitlint/to-lines": 18.4.4 - "@commitlint/types": 18.4.4 + "@commitlint/types": 18.6.0 execa: 5.1.1 dev: true @@ -648,10 +648,10 @@ packages: find-up: 5.0.0 dev: true - /@commitlint/types@18.4.4: + /@commitlint/types@18.6.0: resolution: { - integrity: sha512-/FykLtodD8gKs3+VNkAUwofu4LBHankclj+I8fB2jTRvG6PV7k/OUt4P+VbM7ip853qS4F0g7Z6hLNa6JeMcAQ==, + integrity: sha512-oavoKLML/eJa2rJeyYSbyGAYzTxQ6voG5oeX3OrxpfrkRWhJfm4ACnhoRf5tgiybx2MZ+EVFqC1Lw3W8/uwpZA==, } engines: { node: ">=v18" } dependencies: @@ -992,7 +992,7 @@ packages: integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -1004,7 +1004,7 @@ packages: integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, } dependencies: - "@babel/runtime": 7.23.7 + "@babel/runtime": 7.23.9 "@changesets/types": 4.1.0 "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 @@ -1033,29 +1033,29 @@ packages: - supports-color dev: true - /@moonrepo/cli@1.19.0: + /@moonrepo/cli@1.20.1: resolution: { - integrity: sha512-yyDb32xvNDJuoaMFm6vT4BlIhgPij+XeQcWYGVgZ53klX0daBm7PEYkurLC8cxHRZsRsCWCWtLaunn/qoL2I+Q==, + integrity: sha512-FWmLCPF+un4+PIkWs1hTl5PfN53WcE57CTrMtJmzIXK31fi4ZyLtXpXmgJ4QrN1s9s7DRYuZetuROOIgPOFktg==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.19.0 - "@moonrepo/core-linux-arm64-musl": 1.19.0 - "@moonrepo/core-linux-x64-gnu": 1.19.0 - "@moonrepo/core-linux-x64-musl": 1.19.0 - "@moonrepo/core-macos-arm64": 1.19.0 - "@moonrepo/core-macos-x64": 1.19.0 - "@moonrepo/core-windows-x64-msvc": 1.19.0 + "@moonrepo/core-linux-arm64-gnu": 1.20.1 + "@moonrepo/core-linux-arm64-musl": 1.20.1 + "@moonrepo/core-linux-x64-gnu": 1.20.1 + "@moonrepo/core-linux-x64-musl": 1.20.1 + "@moonrepo/core-macos-arm64": 1.20.1 + "@moonrepo/core-macos-x64": 1.20.1 + "@moonrepo/core-windows-x64-msvc": 1.20.1 dev: true - /@moonrepo/core-linux-arm64-gnu@1.19.0: + /@moonrepo/core-linux-arm64-gnu@1.20.1: resolution: { - integrity: sha512-Tr5HGwa3QWwPybLzVPuXVJVhZNY1Y42T7V7+HrWPOJLxbljZGxN/ouiOWhcBqcHN1y6gfvmmxWn68/KQnhIT2w==, + integrity: sha512-Y5bbQVSOW7x7QvYncJ8rEBHYb5QxobtG7RVe1sz16dLuiyxMomd/kB3DzopRmup93JtlmCO76VnIvB5uEgRRkA==, } cpu: [arm64] os: [linux] @@ -1063,10 +1063,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.19.0: + /@moonrepo/core-linux-arm64-musl@1.20.1: resolution: { - integrity: sha512-ULBf7YT/KDvUdRf3mjcw/I7KetxDfRkC0jmpUKZGsXHhb2kFsareMsSiEmX2qLC3og6Hdx0TMPs3oLRU7PkZpA==, + integrity: sha512-jXKg0xOTGtqk7AgRY2wBtKXDWa4CA1lciELTmj/+B9nUsslnob7MegY6ZdwtgoiClP5mmEiqTESo+iKnUwNdkQ==, } cpu: [arm64] os: [linux] @@ -1074,10 +1074,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.19.0: + /@moonrepo/core-linux-x64-gnu@1.20.1: resolution: { - integrity: sha512-EzGnyg9U/WPW854348shn/DdG/RgjZNfKhHJlEfj5GH2Fj7tIYKvonknnJmACYVkpoIQ14mkwTE9PufjKgkwXQ==, + integrity: sha512-bVfZY2/7k6sIeotszruPzOMoBRW4QT4ioaM8oB0+4zIYmpL6zqyBYb13iriAI/6snCROdkbN/OKuU21/1e7sHw==, } cpu: [x64] os: [linux] @@ -1085,10 +1085,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.19.0: + /@moonrepo/core-linux-x64-musl@1.20.1: resolution: { - integrity: sha512-cM8RgMBQABWNoJriRDr5Xce07SrgjWI7kXrHK0sFBED9gjKJ9OpAox3OjnjUC0DV0309CMRyEswj3R2z6iDtWg==, + integrity: sha512-kDbffABMZpfuvf1OO5BP8kvuy+Rk1ZK4jIQWO9mmZNDR0us3YK+olgYo26Lyl//3WfLDUsuxB6cVHCOUrc3I8Q==, } cpu: [x64] os: [linux] @@ -1096,10 +1096,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.19.0: + /@moonrepo/core-macos-arm64@1.20.1: resolution: { - integrity: sha512-WEIDwFmSHcxP10ZHSoLWVuSWI/UURqY+0pxhs8Pdtro5aFJ+ww2j9kxp+2Q/8DmI84eqtzabq1+O+pkV3+DFvw==, + integrity: sha512-cF/0CRtqXbMU/hNg1HfQ2gDGHPfcRx6pxkNiwOhlYlowpLnfQtvRLvnSkg8h+sqDnTqxrKfQF2nlyHyD/g4LrQ==, } cpu: [arm64] os: [darwin] @@ -1107,10 +1107,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.19.0: + /@moonrepo/core-macos-x64@1.20.1: resolution: { - integrity: sha512-Pe9wq75anb2VcnuNmj4xaZT655ogBbR5Xa6DzJO8huBF9sTlDlu/lFa8Kr77PVON4yReH7BPU+OIHxibozqYTQ==, + integrity: sha512-NoJKM5V2rvyBwgoURysk1D5fR1Ys+gMTm0l9JHtJxpE/415Nw52wGReFqj+drS7BdKetZcuq4qO3P0CNHncAJA==, } cpu: [x64] os: [darwin] @@ -1118,10 +1118,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.19.0: + /@moonrepo/core-windows-x64-msvc@1.20.1: resolution: { - integrity: sha512-IkRniy5WLV5UYh95z0I6NVAMFvnq3iYv0DYSmgVaszJCTxnOye1iuC7J4bZBHSURuN5H8+nsawlg1okgxzAfmw==, + integrity: sha512-97/ojy9pG9W/QgrZuJQcyZcMV+SI/y3OcdpRE/VYlfeifulnsZSy9RiDGSrTiH4Q/SgGxcGj6nzd4q3OKCBowA==, } cpu: [x64] os: [win32] @@ -1271,7 +1271,7 @@ packages: engines: { node: ">= 8" } dependencies: "@nodelib/fs.scandir": 2.1.5 - fastq: 1.16.0 + fastq: 1.17.0 dev: true /@pkgjs/parseargs@0.11.0: @@ -1302,10 +1302,10 @@ packages: engines: { node: ">=18" } dev: true - /@spectrum-css/icon@5.0.0(@spectrum-css/vars@9.0.8): + /@spectrum-css/icon@5.1.0(@spectrum-css/vars@9.0.8): resolution: { - integrity: sha512-O31EthbXYZFyZBpq3W5STvlnca82amuynrS4UuXhNSb/BIly9t1erqSx7jzXxzYwj7l+8+chfibjc6eJjKAIZg==, + integrity: sha512-sPUyZ8tmB4ETQZAuk8KnMvTAdLxVh1sGj4xYIh0fta5JNAcm1UWQKK6J5Ns097ZPPcXTVeKjZas29PHBNQ+kLA==, } peerDependencies: "@spectrum-css/vars": ">=9" @@ -1322,7 +1322,7 @@ packages: "@spectrum-css/vars": 9.0.8 dev: false - /@spectrum-css/table@4.0.60(@spectrum-css/icon@5.0.0)(@spectrum-css/vars@9.0.8): + /@spectrum-css/table@4.0.60(@spectrum-css/icon@5.1.0)(@spectrum-css/vars@9.0.8): resolution: { integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==, @@ -1331,7 +1331,7 @@ packages: "@spectrum-css/icon": ">=3" "@spectrum-css/vars": ">=9" dependencies: - "@spectrum-css/icon": 5.0.0(@spectrum-css/vars@9.0.8) + "@spectrum-css/icon": 5.1.0(@spectrum-css/vars@9.0.8) "@spectrum-css/vars": 9.0.8 dev: false @@ -1678,7 +1678,7 @@ packages: integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==, } dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@types/minimist@1.2.5: @@ -1695,10 +1695,10 @@ packages: } dev: true - /@types/node@20.10.6: + /@types/node@20.11.16: resolution: { - integrity: sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==, + integrity: sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==, } dependencies: undici-types: 5.26.5 @@ -1725,10 +1725,10 @@ packages: } dev: false - /@vercel/nft@0.24.4: + /@vercel/nft@0.26.3: resolution: { - integrity: sha512-KjYAZty7boH5fi5udp6p+lNu6nawgs++pHW+3koErMgbRkkHuToGX/FwjN5clV1FcaM3udfd4zW/sUapkMgpZw==, + integrity: sha512-h1z/NN9ppS4YOKwSgBoopJlhm7tS2Qb/9Ld1HXjDpvvTE7mY0xVD8nllXs+RihD9uTGJISOIMzp18Eg0EApaMA==, } engines: { node: ">=16" } hasBin: true @@ -1736,13 +1736,14 @@ packages: "@mapbox/node-pre-gyp": 1.0.11 "@rollup/pluginutils": 4.2.1 acorn: 8.11.3 + acorn-import-attributes: 1.9.2(acorn@8.11.3) async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 glob: 7.2.3 graceful-fs: 4.2.11 micromatch: 4.0.5 - node-gyp-build: 4.7.1 + node-gyp-build: 4.8.0 resolve-from: 5.0.0 transitivePeerDependencies: - encoding @@ -1767,10 +1768,21 @@ packages: } dev: true - /acorn-walk@8.3.1: + /acorn-import-attributes@1.9.2(acorn@8.11.3): + resolution: + { + integrity: sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==, + } + peerDependencies: + acorn: ^8 + dependencies: + acorn: 8.11.3 + dev: true + + /acorn-walk@8.3.2: resolution: { - integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==, + integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==, } engines: { node: ">=0.4.0" } dev: true @@ -2005,10 +2017,10 @@ packages: } dev: true - /ava@6.0.1: + /ava@6.1.1: resolution: { - integrity: sha512-9zR0wOwlcJdOWwHOKnpi0GrPRLTlxDFapGalP4rGD0oQRKxDVoucBBWvxVQ/2cPv10Hx1PkDXLJH5iUzhPn0/g==, + integrity: sha512-A+DG0Ag0e5zvt262Ze0pG5QH7EBmhn+DB9uK7WkUtJVAtGjZFeKTpUOKx339DMGn53+FB24pCJC5klX2WU4VOw==, } engines: { node: ^18.18 || ^20.8 || ^21 } hasBin: true @@ -2018,14 +2030,14 @@ packages: "@ava/typescript": optional: true dependencies: - "@vercel/nft": 0.24.4 + "@vercel/nft": 0.26.3 acorn: 8.11.3 - acorn-walk: 8.3.1 + acorn-walk: 8.3.2 ansi-styles: 6.2.1 arrgv: 1.0.2 arrify: 3.0.0 callsites: 4.1.0 - cbor: 9.0.1 + cbor: 9.0.2 chalk: 5.3.0 chunkd: 2.0.1 ci-info: 4.0.0 @@ -2036,7 +2048,7 @@ packages: concordance: 5.0.4 currently-unhandled: 0.4.1 debug: 4.3.4 - emittery: 1.0.1 + emittery: 1.0.2 figures: 6.0.1 globby: 14.0.0 ignore-by-default: 2.1.0 @@ -2046,11 +2058,11 @@ packages: matcher: 5.0.0 memoize: 10.0.0 ms: 2.1.3 - p-map: 6.0.0 + p-map: 7.0.1 package-config: 5.0.0 picomatch: 3.0.1 plur: 5.1.0 - pretty-ms: 8.0.0 + pretty-ms: 9.0.0 resolve-cwd: 3.0.0 stack-utils: 2.0.6 strip-ansi: 7.1.0 @@ -2063,10 +2075,10 @@ packages: - supports-color dev: true - /available-typed-arrays@1.0.5: + /available-typed-arrays@1.0.6: resolution: { - integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, + integrity: sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==, } engines: { node: ">= 0.4" } dev: true @@ -2158,7 +2170,7 @@ packages: dependencies: function-bind: 1.1.2 get-intrinsic: 1.2.2 - set-function-length: 1.1.1 + set-function-length: 1.2.0 dev: true /callsites@3.1.0: @@ -2184,7 +2196,7 @@ packages: } dependencies: pascal-case: 3.1.2 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /camelcase-keys@6.2.2: @@ -2221,14 +2233,14 @@ packages: } dependencies: no-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 upper-case-first: 2.0.2 dev: true - /cbor@9.0.1: + /cbor@9.0.2: resolution: { - integrity: sha512-/TQOWyamDxvVIv+DY9cOLNuABkoyz8K/F3QE56539pGVYohx0+MEA1f4lChFTX79dBTBS7R1PF6ovH7G+VtBfQ==, + integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==, } engines: { node: ">=16" } dependencies: @@ -2283,7 +2295,7 @@ packages: path-case: 3.0.4 sentence-case: 3.0.4 snake-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /chardet@0.7.0: @@ -2349,7 +2361,7 @@ packages: engines: { node: ">=18" } dependencies: slice-ansi: 5.0.0 - string-width: 7.0.0 + string-width: 7.1.0 dev: true /client-only@0.0.1: @@ -2517,7 +2529,7 @@ packages: } dependencies: no-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 upper-case: 2.0.2 dev: true @@ -2563,7 +2575,7 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /cosmiconfig-typescript-loader@5.0.0(@types/node@20.10.6)(cosmiconfig@8.3.6)(typescript@5.3.3): + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.16)(cosmiconfig@8.3.6)(typescript@5.3.3): resolution: { integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, @@ -2574,7 +2586,7 @@ packages: cosmiconfig: ">=8.2" typescript: ">=4" dependencies: - "@types/node": 20.10.6 + "@types/node": 20.11.16 cosmiconfig: 8.3.6(typescript@5.3.3) jiti: 1.21.0 typescript: 5.3.3 @@ -2805,7 +2817,7 @@ packages: } dependencies: no-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /dot-prop@5.3.0: @@ -2824,10 +2836,10 @@ packages: integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, } - /emittery@1.0.1: + /emittery@1.0.2: resolution: { - integrity: sha512-2ID6FdrMD9KDLldGesP6317G78K7km/kMcwItRtVFva7I/cSEOIaLpewaUb+YLXVwdAp3Ctfxh/V5zIl1sj7dQ==, + integrity: sha512-PqHdP6JJrxiSXQzCAzII77dVsfyGWu+7V0ghqkaCej2shF1cnIPeFE9kKZcVTqvBjrRMDVOdNXKEYcjxkznS1g==, } engines: { node: ">=14.16" } dev: true @@ -2880,7 +2892,7 @@ packages: dependencies: array-buffer-byte-length: 1.0.0 arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 + available-typed-arrays: 1.0.6 call-bind: 1.0.5 es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 @@ -2906,8 +2918,8 @@ packages: object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.1 - safe-array-concat: 1.0.1 - safe-regex-test: 1.0.0 + safe-array-concat: 1.1.0 + safe-regex-test: 1.0.2 string.prototype.trim: 1.2.8 string.prototype.trimend: 1.0.7 string.prototype.trimstart: 1.0.7 @@ -2916,7 +2928,7 @@ packages: typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 + which-typed-array: 1.1.14 dev: true /es-set-tostringtag@2.0.2: @@ -2927,7 +2939,7 @@ packages: engines: { node: ">= 0.4" } dependencies: get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 hasown: 2.0.0 dev: true @@ -3130,10 +3142,10 @@ packages: micromatch: 4.0.5 dev: true - /fastq@1.16.0: + /fastq@1.17.0: resolution: { - integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==, + integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==, } dependencies: reusify: 1.0.4 @@ -3241,7 +3253,7 @@ packages: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 dev: true /fs-extra@7.0.1: @@ -3428,18 +3440,18 @@ packages: } dev: false - /glob@10.3.3: + /glob@10.3.10: resolution: { - integrity: sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==, + integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, } engines: { node: ">=16 || 14 >=14.17" } hasBin: true dependencies: foreground-child: 3.1.1 - jackspeak: 2.2.1 + jackspeak: 2.3.6 minimatch: 9.0.3 - minipass: 7.0.2 + minipass: 7.0.4 path-scurry: 1.10.1 /glob@7.2.3: @@ -3486,7 +3498,7 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.2 - ignore: 5.3.0 + ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 dev: true @@ -3500,7 +3512,7 @@ packages: dependencies: "@sindresorhus/merge-streams": 1.0.0 fast-glob: 3.3.2 - ignore: 5.3.0 + ignore: 5.3.1 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -3584,10 +3596,10 @@ packages: engines: { node: ">= 0.4" } dev: true - /has-tostringtag@1.0.0: + /has-tostringtag@1.0.2: resolution: { - integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, } engines: { node: ">= 0.4" } dependencies: @@ -3618,7 +3630,7 @@ packages: } dependencies: capital-case: 1.0.4 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /hosted-git-info@2.8.9: @@ -3674,12 +3686,12 @@ packages: engines: { node: ">=16.17.0" } dev: true - /husky@8.0.3: + /husky@9.0.10: resolution: { - integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==, + integrity: sha512-TQGNknoiy6bURzIO77pPRu+XHi6zI7T93rX+QnJsoYFf3xdjKOur+IlfqzJGMHIK/wXrLg+GsvMs8Op7vI2jVA==, } - engines: { node: ">=14" } + engines: { node: ">=18" } hasBin: true dev: true @@ -3701,10 +3713,10 @@ packages: engines: { node: ">=10 <11 || >=12 <13 || >=14" } dev: true - /ignore@5.3.0: + /ignore@5.3.1: resolution: { - integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==, + integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, } engines: { node: ">= 4" } dev: true @@ -3823,7 +3835,7 @@ packages: engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.5 - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-callable@1.2.7: @@ -3850,7 +3862,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-extglob@2.1.1: @@ -3911,7 +3923,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-number@7.0.0: @@ -3961,7 +3973,7 @@ packages: engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.5 - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-shared-array-buffer@1.0.2: @@ -3996,7 +4008,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /is-subdir@1.2.0: @@ -4036,7 +4048,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - which-typed-array: 1.1.13 + which-typed-array: 1.1.14 dev: true /is-unicode-supported@2.0.0: @@ -4077,10 +4089,10 @@ packages: integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } - /jackspeak@2.2.1: + /jackspeak@2.3.6: resolution: { - integrity: sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==, + integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, } engines: { node: ">=14" } dependencies: @@ -4153,10 +4165,10 @@ packages: hasBin: true dev: true - /jsonc-parser@3.2.0: + /jsonc-parser@3.2.1: resolution: { - integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==, + integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==, } dev: true @@ -4175,7 +4187,7 @@ packages: integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, } dependencies: - universalify: 2.0.0 + universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 dev: true @@ -4227,10 +4239,10 @@ packages: } dev: true - /lint-staged@15.2.0: + /lint-staged@15.2.1: resolution: { - integrity: sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==, + integrity: sha512-dhwAPnM85VdshybV9FWI/9ghTvMLoQLEXgVMx+ua2DN7mdfzd/tRfoU2yhMcBac0RHkofoxdnnJUokr8s4zKmQ==, } engines: { node: ">=18.12.0" } hasBin: true @@ -4240,7 +4252,7 @@ packages: debug: 4.3.4 execa: 8.0.1 lilconfig: 3.0.0 - listr2: 8.0.0 + listr2: 8.0.1 micromatch: 4.0.5 pidtree: 0.6.0 string-argv: 0.3.2 @@ -4249,10 +4261,10 @@ packages: - supports-color dev: true - /listr2@8.0.0: + /listr2@8.0.1: resolution: { - integrity: sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==, + integrity: sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==, } engines: { node: ">=18.0.0" } dependencies: @@ -4260,7 +4272,7 @@ packages: colorette: 2.0.20 eventemitter3: 5.0.1 log-update: 6.0.0 - rfdc: 1.3.0 + rfdc: 1.3.1 wrap-ansi: 9.0.0 dev: true @@ -4443,7 +4455,7 @@ packages: integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, } dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: true /lru-cache@10.0.0: @@ -4690,10 +4702,10 @@ packages: engines: { node: ">=8" } dev: true - /minipass@7.0.2: + /minipass@7.0.4: resolution: { - integrity: sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA==, + integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, } engines: { node: ">=16 || 14 >=14.17" } @@ -4800,7 +4812,7 @@ packages: } dependencies: lower-case: 2.0.2 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /node-fetch@2.7.0: @@ -4818,10 +4830,10 @@ packages: whatwg-url: 5.0.0 dev: true - /node-gyp-build@4.7.1: + /node-gyp-build@4.8.0: resolution: { - integrity: sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==, + integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==, } hasBin: true dev: true @@ -5040,12 +5052,12 @@ packages: engines: { node: ">=6" } dev: true - /p-map@6.0.0: + /p-map@7.0.1: resolution: { - integrity: sha512-T8BatKGY+k5rU+Q/GTYgrEf2r4xRMevAN5mtXc2aPc4rS1j3s+vWTaO2Wag94neXuCAUAs8cxBL9EeB5EA6diw==, + integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==, } - engines: { node: ">=16" } + engines: { node: ">=18" } dev: true /p-try@2.2.0: @@ -5074,7 +5086,7 @@ packages: } dependencies: dot-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /parent-module@1.0.1: @@ -5100,12 +5112,12 @@ packages: lines-and-columns: 1.2.4 dev: true - /parse-ms@3.0.0: + /parse-ms@4.0.0: resolution: { - integrity: sha512-Tpb8Z7r7XbbtBTrM9UhpkzzaMrqA2VXMT3YChzYltwV3P3pM6t8wl7TvpMnSTosz1aQAdVib7kdoys7vYOPerw==, + integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==, } - engines: { node: ">=12" } + engines: { node: ">=18" } dev: true /pascal-case@3.1.2: @@ -5115,7 +5127,7 @@ packages: } dependencies: no-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /path-case@3.0.4: @@ -5125,7 +5137,7 @@ packages: } dependencies: dot-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /path-exists@4.0.0: @@ -5174,7 +5186,7 @@ packages: engines: { node: ">=16 || 14 >=14.17" } dependencies: lru-cache: 10.0.0 - minipass: 7.0.2 + minipass: 7.0.4 /path-type@4.0.0: resolution: @@ -5297,22 +5309,22 @@ packages: hasBin: true dev: true - /prettier@3.1.1: + /prettier@3.2.4: resolution: { - integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==, + integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==, } engines: { node: ">=14" } hasBin: true - /pretty-ms@8.0.0: + /pretty-ms@9.0.0: resolution: { - integrity: sha512-ASJqOugUF1bbzI35STMBUpZqdfYKlJugy6JBziGi2EE+AL5JPJGSzvpeVXojxrr0ViUYoToUjb5kjSEGf7Y83Q==, + integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==, } - engines: { node: ">=14.16" } + engines: { node: ">=18" } dependencies: - parse-ms: 3.0.0 + parse-ms: 4.0.0 dev: true /pseudomap@1.0.2: @@ -5322,10 +5334,10 @@ packages: } dev: true - /punycode@2.3.0: + /punycode@2.3.1: resolution: { - integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, } engines: { node: ">=6" } @@ -5536,10 +5548,10 @@ packages: engines: { iojs: ">=1.0.0", node: ">=0.10.0" } dev: true - /rfdc@1.3.0: + /rfdc@1.3.1: resolution: { - integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, + integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==, } dev: true @@ -5561,7 +5573,7 @@ packages: engines: { node: ">=14" } hasBin: true dependencies: - glob: 10.3.3 + glob: 10.3.10 dev: false /rollup@3.26.2: @@ -5584,10 +5596,10 @@ packages: queue-microtask: 1.2.3 dev: true - /safe-array-concat@1.0.1: + /safe-array-concat@1.1.0: resolution: { - integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==, + integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==, } engines: { node: ">=0.4" } dependencies: @@ -5604,11 +5616,12 @@ packages: } dev: true - /safe-regex-test@1.0.0: + /safe-regex-test@1.0.2: resolution: { - integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==, } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.5 get-intrinsic: 1.2.2 @@ -5665,7 +5678,7 @@ packages: } dependencies: no-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 upper-case-first: 2.0.2 dev: true @@ -5686,14 +5699,15 @@ packages: } dev: true - /set-function-length@1.1.1: + /set-function-length@1.2.0: resolution: { - integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, + integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==, } engines: { node: ">= 0.4" } dependencies: define-data-property: 1.1.1 + function-bind: 1.1.2 get-intrinsic: 1.2.2 gopd: 1.0.1 has-property-descriptors: 1.0.1 @@ -5831,7 +5845,7 @@ packages: } dependencies: dot-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /source-map-js@1.0.2: @@ -5861,10 +5875,10 @@ packages: spdx-license-ids: 3.0.16 dev: true - /spdx-exceptions@2.3.0: + /spdx-exceptions@2.4.0: resolution: { - integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, + integrity: sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==, } dev: true @@ -5874,7 +5888,7 @@ packages: integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, } dependencies: - spdx-exceptions: 2.3.0 + spdx-exceptions: 2.4.0 spdx-license-ids: 3.0.16 dev: true @@ -5966,10 +5980,10 @@ packages: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - /string-width@7.0.0: + /string-width@7.1.0: resolution: { - integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==, + integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==, } engines: { node: ">=18" } dependencies: @@ -6082,10 +6096,10 @@ packages: deepmerge: 4.3.1 dev: true - /style-dictionary@3.8.0: + /style-dictionary@3.9.2: resolution: { - integrity: sha512-wHlB/f5eO3mDcYv6WtOz6gvQC477jBKrwuIXe+PtHskTCBsJdAOvL8hCquczJxDui2TnwpeNE+2msK91JJomZg==, + integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==, } engines: { node: ">=12.0.0" } hasBin: true @@ -6094,9 +6108,9 @@ packages: change-case: 4.1.2 commander: 8.3.0 fs-extra: 10.1.0 - glob: 7.2.3 + glob: 10.3.10 json5: 2.2.3 - jsonc-parser: 3.2.0 + jsonc-parser: 3.2.1 lodash: 4.17.21 tinycolor2: 1.6.0 dev: true @@ -6286,10 +6300,10 @@ packages: engines: { node: ">=8" } dev: true - /tslib@2.6.0: + /tslib@2.6.2: resolution: { - integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==, + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, } /tty-table@4.2.3: @@ -6381,7 +6395,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - available-typed-arrays: 1.0.5 + available-typed-arrays: 1.0.6 call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 @@ -6443,10 +6457,10 @@ packages: engines: { node: ">= 4.0.0" } dev: true - /universalify@2.0.0: + /universalify@2.0.1: resolution: { - integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, } engines: { node: ">= 10.0.0" } dev: true @@ -6457,7 +6471,7 @@ packages: integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, } dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: true /upper-case@2.0.2: @@ -6466,7 +6480,7 @@ packages: integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, } dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: true /uri-js@4.4.1: @@ -6475,7 +6489,7 @@ packages: integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, } dependencies: - punycode: 2.3.0 + punycode: 2.3.1 /util-deprecate@1.0.2: resolution: @@ -6494,7 +6508,7 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite@4.4.4(@types/node@20.10.6): + /vite@4.4.4(@types/node@20.11.16): resolution: { integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==, @@ -6525,7 +6539,7 @@ packages: terser: optional: true dependencies: - "@types/node": 20.10.6 + "@types/node": 20.11.16 esbuild: 0.18.12 postcss: 8.4.26 rollup: 3.26.2 @@ -6609,18 +6623,18 @@ packages: path-exists: 4.0.0 dev: true - /which-typed-array@1.1.13: + /which-typed-array@1.1.14: resolution: { - integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, + integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==, } engines: { node: ">= 0.4" } dependencies: - available-typed-arrays: 1.0.5 + available-typed-arrays: 1.0.6 call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 dev: true /which@1.3.1: @@ -6694,7 +6708,7 @@ packages: engines: { node: ">=18" } dependencies: ansi-styles: 6.2.1 - string-width: 7.0.0 + string-width: 7.1.0 strip-ansi: 7.1.0 dev: true From bb54d3f0e9e2f2f023b433190d994354b77008f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 2 Feb 2024 18:00:29 +0000 Subject: [PATCH 077/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 57 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 59 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index c336c007..15426104 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -23,6 +23,7 @@ "neat-balloons-rhyme", "six-phones-rescue", "slimy-emus-enjoy", + "smooth-turtles-retire", "soft-moles-walk", "strange-rings-love", "tame-bobcats-beg", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index bc41e328..2fed2ec4 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,62 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.14 + +### Minor Changes + +- f004b0c: The tokens listed in the diff below had identical values between sets and so were merged to single values to simplify the data. + + ## Token Diff + + _Tokens values updated (46):_ + + - `accordion-disclosure-indicator-to-text` + - `accordion-edge-to-disclosure-indicator` + - `accordion-edge-to-text` + - `accordion-focus-indicator-gap` + - `accordion-top-to-text-compact-medium` + - `accordion-top-to-text-compact-small` + - `action-button-edge-to-hold-icon-extra-small` + - `action-button-edge-to-hold-icon-small` + - `asterisk-icon-size-75` + - `background-base-color` + - `background-layer-1-color` + - `color-area-border-rounding` + - `corner-radius-0` + - `corner-radius-100` + - `corner-radius-1000` + - `corner-radius-200` + - `corner-radius-300` + - `corner-radius-400` + - `corner-radius-500` + - `corner-radius-600` + - `corner-radius-700` + - `corner-radius-75` + - `corner-radius-800` + - `corner-radius-extra-large-default` + - `corner-radius-full` + - `corner-radius-large-default` + - `corner-radius-medium-default` + - `corner-radius-medium-size-extra-large` + - `corner-radius-medium-size-extra-small` + - `corner-radius-medium-size-large` + - `corner-radius-medium-size-medium` + - `corner-radius-medium-size-small` + - `corner-radius-none` + - `corner-radius-small-default` + - `corner-radius-small-size-extra-large` + - `corner-radius-small-size-large` + - `corner-radius-small-size-medium` + - `corner-radius-small-size-small` + - `drop-shadow-x` + - `field-label-top-margin-extra-large` + - `field-label-top-margin-large` + - `field-label-top-margin-medium` + - `field-label-top-margin-small` + - `gray-background-color-default` + - `status-light-dot-size-small` + - `table-edge-to-content` + ## 13.0.0-beta.13 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 9383b059..3041b5b4 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.13", + "version": "13.0.0-beta.14", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 36574547e056fb462c354231c523b0b85d56d3cb Mon Sep 17 00:00:00 2001 From: GarthDB Date: Tue, 13 Feb 2024 14:51:47 +0000 Subject: [PATCH 078/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 148 ++++++++++++++++++++-- 1 file changed, 134 insertions(+), 14 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 39334ecd..31831fed 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -133,12 +133,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", + "value": "22px", "uuid": "f4d6fe1a-70bd-473a-9fa5-477865ea898e" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", + "value": "30px", "uuid": "ca939c4d-9369-498c-81cb-61df1397f657" } } @@ -154,7 +154,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", + "value": "34px", "uuid": "ec2f3b6b-80db-4c43-bdd2-caee98796775" } } @@ -165,12 +165,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "29px", + "value": "30px", "uuid": "cef839a5-2ba7-4e47-9a85-d94260a8ff10" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "41px", + "value": "38px", "uuid": "5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea" } } @@ -181,7 +181,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "33px", + "value": "34px", "uuid": "f3102afd-e5df-4912-9203-8226ce37fed5" }, "mobile": { @@ -197,12 +197,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "14px", "uuid": "3bf75a24-5e95-4c18-9da2-b7088377fe21" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "18px", "uuid": "a1dbcaf0-bbcf-444d-9d22-7f86db20303a" } } @@ -213,12 +213,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", + "value": "16px", "uuid": "f97f0f1b-c0c2-410f-b116-86d30f4d52cf" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "20px", "uuid": "0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928" } } @@ -229,12 +229,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "18px", "uuid": "8301bfca-a086-4efd-a22f-1d348cbd6dcf" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", + "value": "22px", "uuid": "91b828ce-8ff9-4d32-958e-a8a23ef9b345" } } @@ -245,12 +245,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "20px", "uuid": "2372d602-78ce-45a7-9dff-152152e55117" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "26px", "uuid": "b7ae7b32-b347-4e09-9978-3b0b92a4dbab" } } @@ -6925,5 +6925,125 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "53fef925-59e3-4df5-9ac2-e2b4d34d9bca" + }, + "switch-handle-size-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "459a9b8c-b59b-4c9c-bc2d-c840d463040a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "8ccf8d0c-13a8-48da-a6dd-790ad728083f" + } + } + }, + "switch-handle-selected-size-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "507c0319-747b-448c-8962-5a73097ddfe2" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "14b85a33-6501-4366-90d3-e0c5375c522b" + } + } + }, + "switch-handle-selected-size-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "29e7e1f1-d789-4d3c-9288-a139c7ae07ad" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "12f8e465-8241-4b1a-91f8-27e91e5a01bf" + } + } + }, + "switch-handle-selected-size-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "83d7ed85-236a-4266-a57f-d33a5f1785ff" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "eadbe025-3d4a-4874-89ad-b6f667a62837" + } + } + }, + "switch-handle-selected-size-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "272949bf-1503-4e7b-80d5-859c1ce57169" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "63c42c0c-3976-4d4e-a86f-0234a3a72243" + } + } + }, + "switch-handle-size-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "6b885dfc-af50-4c44-8ee5-bf6b03624203" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "6263739c-dd33-4670-819a-d3aa0b9056b4" + } + } + }, + "switch-handle-size-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "2216638d-6dc7-4bfa-8364-99fe8eab2b3b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "91764817-6e5d-4273-b856-6751e40eb548" + } + } + }, + "switch-handle-size-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "cfa167e1-39e9-4d05-b757-bdd616830358" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "daee9fb3-c94c-4f91-90d5-99e40034c1fd" + } + } } } \ No newline at end of file From 4b78009a8e8112ec6622d88f8f5f85fe12cc9ee8 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 15 Feb 2024 09:54:46 -0700 Subject: [PATCH 079/295] chore: update deps, add changeset --- .changeset/wild-numbers-sip.md | 25 ++ .github/workflows/deploy-docs.yml | 2 +- .github/workflows/release.yml | 2 +- .moon/toolchain.yml | 2 +- package.json | 14 +- pnpm-lock.yaml | 571 ++++++++++++++++-------------- 6 files changed, 337 insertions(+), 279 deletions(-) create mode 100644 .changeset/wild-numbers-sip.md diff --git a/.changeset/wild-numbers-sip.md b/.changeset/wild-numbers-sip.md new file mode 100644 index 00000000..e4a45047 --- /dev/null +++ b/.changeset/wild-numbers-sip.md @@ -0,0 +1,25 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated values and added new tokens for Switch. + +## Design Motivation + +Added new tokens: switch-handle-size-_ and switch-handle-selected-size-_ for both desktop and mobile. +Update token values on: switch-control-width-_ and switch-control-height-_ for both desktop and mobile. + +The design for Switch in S2 has changed and now has a border when it's not selected. New handle sizes are added and control sizes have been updated. + +## Token Diff + +_Token values updated (8):_ + +- `switch-control-height-extra-large` +- `switch-control-height-large` +- `switch-control-height-medium` +- `switch-control-height-small` +- `switch-control-width-extra-large` +- `switch-control-width-large` +- `switch-control-width-medium` +- `switch-control-width-small` diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 25a2cd20..687d5ee0 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.14.0 + version: 8.15.3 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run site:export diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec43990d..4b020505 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.14.0 + version: 8.15.3 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run :build --query "projectSource~packages/*" diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 7faf11dc..69dce6c8 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "8.14.0" + version: "8.15.3" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index 2a3e74b5..428de7b5 100644 --- a/package.json +++ b/package.json @@ -23,16 +23,16 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@changesets/cli": "^2.27.1", - "@commitlint/cli": "^18.6.0", - "@commitlint/config-conventional": "^18.6.0", - "@moonrepo/cli": "^1.20.1", + "@commitlint/cli": "^18.6.1", + "@commitlint/config-conventional": "^18.6.2", + "@moonrepo/cli": "^1.21.3", "ava": "^6.1.1", - "husky": "^9.0.10", - "lint-staged": "^15.2.1", - "prettier": "^3.2.4" + "husky": "^9.0.11", + "lint-staged": "^15.2.2", + "prettier": "^3.2.5" }, "engines": { "node": "18.13.0" }, - "packageManager": "pnpm@8.14.0" + "packageManager": "pnpm@8.15.3" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 16293ba6..2e311d10 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,26 +11,26 @@ importers: specifier: ^2.27.1 version: 2.27.1 "@commitlint/cli": - specifier: ^18.6.0 - version: 18.6.0(@types/node@20.11.16)(typescript@5.3.3) + specifier: ^18.6.1 + version: 18.6.1(@types/node@20.11.19)(typescript@5.3.3) "@commitlint/config-conventional": - specifier: ^18.6.0 - version: 18.6.0 + specifier: ^18.6.2 + version: 18.6.2 "@moonrepo/cli": - specifier: ^1.20.1 - version: 1.20.1 + specifier: ^1.21.3 + version: 1.21.3 ava: specifier: ^6.1.1 version: 6.1.1 husky: - specifier: ^9.0.10 - version: 9.0.10 + specifier: ^9.0.11 + version: 9.0.11 lint-staged: - specifier: ^15.2.1 - version: 15.2.1 + specifier: ^15.2.2 + version: 15.2.2 prettier: - specifier: ^3.2.4 - version: 3.2.4 + specifier: ^3.2.5 + version: 3.2.5 docs/site: dependencies: @@ -39,7 +39,7 @@ importers: version: 5.0.31 "@spectrum-css/table": specifier: ^4.0.60 - version: 4.0.60(@spectrum-css/icon@5.1.0)(@spectrum-css/vars@9.0.8) + version: 4.0.60(@spectrum-css/icon@6.0.2)(@spectrum-css/vars@9.0.8) "@spectrum-css/tokens": specifier: ^11.0.0 version: 11.0.0 @@ -118,13 +118,13 @@ importers: devDependencies: "@types/node": specifier: ^20.4.2 - version: 20.11.16 + version: 20.11.19 typescript: specifier: ^5.1.6 version: 5.3.3 vite: specifier: ^4.4.4 - version: 4.4.4(@types/node@20.11.16) + version: 4.4.4(@types/node@20.11.19) packages/tokens: devDependencies: @@ -165,7 +165,7 @@ importers: version: 7.2.0 prettier: specifier: ^3.0.0 - version: 3.2.4 + version: 3.2.5 packages: /@babel/code-frame@7.23.5: @@ -227,7 +227,7 @@ packages: outdent: 0.5.0 prettier: 2.8.8 resolve-from: 5.0.0 - semver: 7.5.4 + semver: 7.6.0 dev: true /@changesets/assemble-release-plan@6.0.0: @@ -241,7 +241,7 @@ packages: "@changesets/get-dependents-graph": 2.0.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 - semver: 7.5.4 + semver: 7.6.0 dev: true /@changesets/changelog-git@0.2.0: @@ -275,7 +275,7 @@ packages: "@changesets/types": 6.0.0 "@changesets/write": 0.3.0 "@manypkg/get-packages": 1.1.3 - "@types/semver": 7.5.6 + "@types/semver": 7.5.7 ansi-colors: 4.1.3 chalk: 2.4.2 ci-info: 3.9.0 @@ -288,7 +288,7 @@ packages: p-limit: 2.3.0 preferred-pm: 3.1.2 resolve-from: 5.0.0 - semver: 7.5.4 + semver: 7.6.0 spawndamnit: 2.0.0 term-size: 2.2.1 tty-table: 4.2.3 @@ -328,7 +328,7 @@ packages: "@manypkg/get-packages": 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 - semver: 7.5.4 + semver: 7.6.0 dev: true /@changesets/get-release-plan@4.0.0: @@ -443,19 +443,19 @@ packages: prettier: 2.8.8 dev: true - /@commitlint/cli@18.6.0(@types/node@20.11.16)(typescript@5.3.3): + /@commitlint/cli@18.6.1(@types/node@20.11.19)(typescript@5.3.3): resolution: { - integrity: sha512-FiH23cr9QG8VdfbmvJJZmdfHGVMCouOOAzoXZ3Cd7czGC52RbycwNt8YCI7SA69pAl+t30vh8LMaO/N+kcel6w==, + integrity: sha512-5IDE0a+lWGdkOvKH892HHAZgbAjcj1mT5QrfA/SVbLJV/BbBMGyKN0W5mhgjekPJJwEQdVNvhl9PwUacY58Usw==, } engines: { node: ">=v18" } hasBin: true dependencies: - "@commitlint/format": 18.6.0 - "@commitlint/lint": 18.6.0 - "@commitlint/load": 18.6.0(@types/node@20.11.16)(typescript@5.3.3) - "@commitlint/read": 18.6.0 - "@commitlint/types": 18.6.0 + "@commitlint/format": 18.6.1 + "@commitlint/lint": 18.6.1 + "@commitlint/load": 18.6.1(@types/node@20.11.19)(typescript@5.3.3) + "@commitlint/read": 18.6.1 + "@commitlint/types": 18.6.1 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 @@ -466,35 +466,36 @@ packages: - typescript dev: true - /@commitlint/config-conventional@18.6.0: + /@commitlint/config-conventional@18.6.2: resolution: { - integrity: sha512-CDCOf2eJz9D/TL44IBks0stM9TmdLCNE2B48owIU3YCadwzts/bobXPScagIgPQF6hhKYMEdj5zpUDlmbwuqwQ==, + integrity: sha512-PcgSYg1AKGQIwDQKbaHtJsfqYy4uJTC7crLVZ83lfjcPaec4Pry2vLeaWej7ao2KsT20l9dWoMPpEGg8LWdUuA==, } engines: { node: ">=v18" } dependencies: + "@commitlint/types": 18.6.1 conventional-changelog-conventionalcommits: 7.0.2 dev: true - /@commitlint/config-validator@18.6.0: + /@commitlint/config-validator@18.6.1: resolution: { - integrity: sha512-Ptfa865arNozlkjxrYG3qt6wT9AlhNUHeuDyKEZiTL/l0ftncFhK/KN0t/EAMV2tec+0Mwxo0FmhbESj/bI+1g==, + integrity: sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.6.0 + "@commitlint/types": 18.6.1 ajv: 8.12.0 dev: true - /@commitlint/ensure@18.6.0: + /@commitlint/ensure@18.6.1: resolution: { - integrity: sha512-xY07NmOBJ7JuhX3tic021PaeLepZARIQyqpAQoNQZoml1keBFfB6MbA7XlWZv0ebbarUFE4yhKxOPw+WFv7/qw==, + integrity: sha512-BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.6.0 + "@commitlint/types": 18.6.1 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -502,63 +503,63 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule@18.4.4: + /@commitlint/execute-rule@18.6.1: resolution: { - integrity: sha512-a37Nd3bDQydtg9PCLLWM9ZC+GO7X5i4zJvrggJv5jBhaHsXeQ9ZWdO6ODYR+f0LxBXXNYK3geYXJrCWUCP8JEg==, + integrity: sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg==, } engines: { node: ">=v18" } dev: true - /@commitlint/format@18.6.0: + /@commitlint/format@18.6.1: resolution: { - integrity: sha512-8UNWfs2slPPSQiiVpLGJTnPHv7Jkd5KYxfbNXbmLL583bjom4RrylvyrCVnmZReA8nNad7pPXq6mDH4FNVj6xg==, + integrity: sha512-K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.6.0 + "@commitlint/types": 18.6.1 chalk: 4.1.2 dev: true - /@commitlint/is-ignored@18.6.0: + /@commitlint/is-ignored@18.6.1: resolution: { - integrity: sha512-Xjx/ZyyJ4FdLuz0FcOvqiqSFgiO2yYj3QN9XlvyrxqbXTxPVC7QFEXJYBVPulUSN/gR7WXH1Udw+HYYfD17xog==, + integrity: sha512-MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.6.0 - semver: 7.5.4 + "@commitlint/types": 18.6.1 + semver: 7.6.0 dev: true - /@commitlint/lint@18.6.0: + /@commitlint/lint@18.6.1: resolution: { - integrity: sha512-ycbuDWfyykPmslgiHzhz8dL6F0BJYltXLVfc+M49z0c+FNITM0v+r0Vd2+Tdtq06VTc894p2+YSmZhulY8Jn3Q==, + integrity: sha512-8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/is-ignored": 18.6.0 - "@commitlint/parse": 18.6.0 - "@commitlint/rules": 18.6.0 - "@commitlint/types": 18.6.0 + "@commitlint/is-ignored": 18.6.1 + "@commitlint/parse": 18.6.1 + "@commitlint/rules": 18.6.1 + "@commitlint/types": 18.6.1 dev: true - /@commitlint/load@18.6.0(@types/node@20.11.16)(typescript@5.3.3): + /@commitlint/load@18.6.1(@types/node@20.11.19)(typescript@5.3.3): resolution: { - integrity: sha512-RRssj7TmzT0bowoEKlgwg8uQ7ORXWkw7lYLsZZBMi9aInsJuGNLNWcMxJxRZbwxG3jkCidGUg85WmqJvRjsaDA==, + integrity: sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA==, } engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 18.6.0 - "@commitlint/execute-rule": 18.4.4 - "@commitlint/resolve-extends": 18.6.0 - "@commitlint/types": 18.6.0 + "@commitlint/config-validator": 18.6.1 + "@commitlint/execute-rule": 18.6.1 + "@commitlint/resolve-extends": 18.6.1 + "@commitlint/types": 18.6.1 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.3.3) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.16)(cosmiconfig@8.3.6)(typescript@5.3.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.19)(cosmiconfig@8.3.6)(typescript@5.3.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -568,90 +569,90 @@ packages: - typescript dev: true - /@commitlint/message@18.4.4: + /@commitlint/message@18.6.1: resolution: { - integrity: sha512-lHF95mMDYgAI1LBXveJUyg4eLaMXyOqJccCK3v55ZOEUsMPrDi8upqDjd/NmzWmESYihaOMBTAnxm+6oD1WoDQ==, + integrity: sha512-VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw==, } engines: { node: ">=v18" } dev: true - /@commitlint/parse@18.6.0: + /@commitlint/parse@18.6.1: resolution: { - integrity: sha512-Y/G++GJpATFw54O0jikc/h2ibyGHgghtPnwsOk3O/aU092ydJ5XEHYcd7xGNQYuLweLzQis2uEwRNk9AVIPbQQ==, + integrity: sha512-eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/types": 18.6.0 + "@commitlint/types": 18.6.1 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 dev: true - /@commitlint/read@18.6.0: + /@commitlint/read@18.6.1: resolution: { - integrity: sha512-w39ji8VfWhPKRquPhRHB3Yd8XIHwaNHgOh28YI1QEmZ59qVpuVUQo6h/NsVb+uoC6LbXZiofTZv2iFR084jKEA==, + integrity: sha512-ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w==, } engines: { node: ">=v18" } dependencies: - "@commitlint/top-level": 18.4.4 - "@commitlint/types": 18.6.0 + "@commitlint/top-level": 18.6.1 + "@commitlint/types": 18.6.1 git-raw-commits: 2.0.11 minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@18.6.0: + /@commitlint/resolve-extends@18.6.1: resolution: { - integrity: sha512-k2Xp+Fxeggki2i90vGrbiLDMefPius3zGSTFFlRAPKce/SWLbZtI+uqE9Mne23mHO5lmcSV8z5m6ziiJwGpOcg==, + integrity: sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ==, } engines: { node: ">=v18" } dependencies: - "@commitlint/config-validator": 18.6.0 - "@commitlint/types": 18.6.0 + "@commitlint/config-validator": 18.6.1 + "@commitlint/types": 18.6.1 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules@18.6.0: + /@commitlint/rules@18.6.1: resolution: { - integrity: sha512-pTalvCEvuCWrBWZA/YqO/3B3nZnY3Ncc+TmQsRajBdC1tkQIm5Iovdo4Ec7f2Dw1tVvpYMUUNAgcWqsY0WckWg==, + integrity: sha512-kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew==, } engines: { node: ">=v18" } dependencies: - "@commitlint/ensure": 18.6.0 - "@commitlint/message": 18.4.4 - "@commitlint/to-lines": 18.4.4 - "@commitlint/types": 18.6.0 + "@commitlint/ensure": 18.6.1 + "@commitlint/message": 18.6.1 + "@commitlint/to-lines": 18.6.1 + "@commitlint/types": 18.6.1 execa: 5.1.1 dev: true - /@commitlint/to-lines@18.4.4: + /@commitlint/to-lines@18.6.1: resolution: { - integrity: sha512-mwe2Roa59NCz/krniAdCygFabg7+fQCkIhXqBHw00XQ8Y7lw4poZLLxeGI3p3bLpcEOXdqIDrEGLwHmG5lBdwQ==, + integrity: sha512-Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q==, } engines: { node: ">=v18" } dev: true - /@commitlint/top-level@18.4.4: + /@commitlint/top-level@18.6.1: resolution: { - integrity: sha512-PBwW1drgeavl9CadB7IPRUk6rkUP/O8jEkxjlC+ofuh3pw0bzJdAT+Kw7M1Yc9KtTb9xTaqUB8uvRtaybHa/tQ==, + integrity: sha512-HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw==, } engines: { node: ">=v18" } dependencies: find-up: 5.0.0 dev: true - /@commitlint/types@18.6.0: + /@commitlint/types@18.6.1: resolution: { - integrity: sha512-oavoKLML/eJa2rJeyYSbyGAYzTxQ6voG5oeX3OrxpfrkRWhJfm4ACnhoRf5tgiybx2MZ+EVFqC1Lw3W8/uwpZA==, + integrity: sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg==, } engines: { node: ">=v18" } dependencies: @@ -1026,36 +1027,36 @@ packages: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.5.4 + semver: 7.6.0 tar: 6.2.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@moonrepo/cli@1.20.1: + /@moonrepo/cli@1.21.3: resolution: { - integrity: sha512-FWmLCPF+un4+PIkWs1hTl5PfN53WcE57CTrMtJmzIXK31fi4ZyLtXpXmgJ4QrN1s9s7DRYuZetuROOIgPOFktg==, + integrity: sha512-fWlm35VN4auYP26d2XafXwY7p7GDFvWqoVI5oX2c+TisP+a/34d6oqWraRckZXsnptx60zEzAGna4S9pknvR7Q==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.20.1 - "@moonrepo/core-linux-arm64-musl": 1.20.1 - "@moonrepo/core-linux-x64-gnu": 1.20.1 - "@moonrepo/core-linux-x64-musl": 1.20.1 - "@moonrepo/core-macos-arm64": 1.20.1 - "@moonrepo/core-macos-x64": 1.20.1 - "@moonrepo/core-windows-x64-msvc": 1.20.1 + "@moonrepo/core-linux-arm64-gnu": 1.21.3 + "@moonrepo/core-linux-arm64-musl": 1.21.3 + "@moonrepo/core-linux-x64-gnu": 1.21.3 + "@moonrepo/core-linux-x64-musl": 1.21.3 + "@moonrepo/core-macos-arm64": 1.21.3 + "@moonrepo/core-macos-x64": 1.21.3 + "@moonrepo/core-windows-x64-msvc": 1.21.3 dev: true - /@moonrepo/core-linux-arm64-gnu@1.20.1: + /@moonrepo/core-linux-arm64-gnu@1.21.3: resolution: { - integrity: sha512-Y5bbQVSOW7x7QvYncJ8rEBHYb5QxobtG7RVe1sz16dLuiyxMomd/kB3DzopRmup93JtlmCO76VnIvB5uEgRRkA==, + integrity: sha512-SRxDxj7L5lKKG3C8YVddn3wer+cBuyt6pFw1PkahUPS/E71KJ48v6MHIxOtmK/3Q7B+tcKnMGinKAqpIavTlug==, } cpu: [arm64] os: [linux] @@ -1063,10 +1064,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.20.1: + /@moonrepo/core-linux-arm64-musl@1.21.3: resolution: { - integrity: sha512-jXKg0xOTGtqk7AgRY2wBtKXDWa4CA1lciELTmj/+B9nUsslnob7MegY6ZdwtgoiClP5mmEiqTESo+iKnUwNdkQ==, + integrity: sha512-yoWtSeuFxVYOlAfGm66rV/VOsvw/4KgA4hvEJlH3aQ8toBfxU7Ail2Gzd43wfooZY8DAUOBIu1csXEMrMK4YuA==, } cpu: [arm64] os: [linux] @@ -1074,10 +1075,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.20.1: + /@moonrepo/core-linux-x64-gnu@1.21.3: resolution: { - integrity: sha512-bVfZY2/7k6sIeotszruPzOMoBRW4QT4ioaM8oB0+4zIYmpL6zqyBYb13iriAI/6snCROdkbN/OKuU21/1e7sHw==, + integrity: sha512-Ez3NIM+U++mHosJLLjSi6z+vbXA2IXS6tF4pIExo22ituIbqMjszuKUmx4QXObSypcokEu8iPVO0o2Qcw2ThQA==, } cpu: [x64] os: [linux] @@ -1085,10 +1086,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.20.1: + /@moonrepo/core-linux-x64-musl@1.21.3: resolution: { - integrity: sha512-kDbffABMZpfuvf1OO5BP8kvuy+Rk1ZK4jIQWO9mmZNDR0us3YK+olgYo26Lyl//3WfLDUsuxB6cVHCOUrc3I8Q==, + integrity: sha512-cHFgRkjEJNTGmxjsJZxRQLTGm1NjssB8l23IKL7ZI4CIa0ZcY1RLlHLawOal9bfrAFcZniRB7vakIIEbRuTfhg==, } cpu: [x64] os: [linux] @@ -1096,10 +1097,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.20.1: + /@moonrepo/core-macos-arm64@1.21.3: resolution: { - integrity: sha512-cF/0CRtqXbMU/hNg1HfQ2gDGHPfcRx6pxkNiwOhlYlowpLnfQtvRLvnSkg8h+sqDnTqxrKfQF2nlyHyD/g4LrQ==, + integrity: sha512-POSMs8x+gg4yTRFVmW5Bemad0kjJRbtD+2f+rwawqlnUzpLwmxf2ub7HJCUpx/IP0whjY1EwPOmNFOt5od9lAw==, } cpu: [arm64] os: [darwin] @@ -1107,10 +1108,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.20.1: + /@moonrepo/core-macos-x64@1.21.3: resolution: { - integrity: sha512-NoJKM5V2rvyBwgoURysk1D5fR1Ys+gMTm0l9JHtJxpE/415Nw52wGReFqj+drS7BdKetZcuq4qO3P0CNHncAJA==, + integrity: sha512-TqZjLZgQrHsTKJ/Wq3n575HsD47HrJXnLFv+tSogqgxAfA8AqRTXvX0/Z7kj9bEGO6IclMiw+53MX8ixj0QIjQ==, } cpu: [x64] os: [darwin] @@ -1118,10 +1119,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.20.1: + /@moonrepo/core-windows-x64-msvc@1.21.3: resolution: { - integrity: sha512-97/ojy9pG9W/QgrZuJQcyZcMV+SI/y3OcdpRE/VYlfeifulnsZSy9RiDGSrTiH4Q/SgGxcGj6nzd4q3OKCBowA==, + integrity: sha512-XAVsBr/afALJ19Ga6CYXaAg2y9E+uhOGJ7785B6GuWuNLlvfv5aLGgjsKj54siFIRXatMa1+232/1rQzMkiXxQ==, } cpu: [x64] os: [win32] @@ -1271,7 +1272,7 @@ packages: engines: { node: ">= 8" } dependencies: "@nodelib/fs.scandir": 2.1.5 - fastq: 1.17.0 + fastq: 1.17.1 dev: true /@pkgjs/parseargs@0.11.0: @@ -1294,23 +1295,23 @@ packages: picomatch: 2.3.1 dev: true - /@sindresorhus/merge-streams@1.0.0: + /@sindresorhus/merge-streams@2.2.1: resolution: { - integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==, + integrity: sha512-255V7MMIKw6aQ43Wbqp9HZ+VHn6acddERTLiiLnlcPLU9PdTq9Aijl12oklAgUEblLWye+vHLzmqBx6f2TGcZw==, } engines: { node: ">=18" } dev: true - /@spectrum-css/icon@5.1.0(@spectrum-css/vars@9.0.8): + /@spectrum-css/icon@6.0.2(@spectrum-css/tokens@11.0.0): resolution: { - integrity: sha512-sPUyZ8tmB4ETQZAuk8KnMvTAdLxVh1sGj4xYIh0fta5JNAcm1UWQKK6J5Ns097ZPPcXTVeKjZas29PHBNQ+kLA==, + integrity: sha512-n+oUEYVa7v3tW/XJgQZy5t9E/AmiXDpnfzGZvzkcb60mQOVhHTH9E7MS8+Iwgna9E7SfKUeb/P5o82LgFySamA==, } peerDependencies: - "@spectrum-css/vars": ">=9" + "@spectrum-css/tokens": ">=13.1" dependencies: - "@spectrum-css/vars": 9.0.8 + "@spectrum-css/tokens": 11.0.0 dev: false /@spectrum-css/page@5.0.31: @@ -1322,7 +1323,7 @@ packages: "@spectrum-css/vars": 9.0.8 dev: false - /@spectrum-css/table@4.0.60(@spectrum-css/icon@5.1.0)(@spectrum-css/vars@9.0.8): + /@spectrum-css/table@4.0.60(@spectrum-css/icon@6.0.2)(@spectrum-css/vars@9.0.8): resolution: { integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==, @@ -1331,7 +1332,7 @@ packages: "@spectrum-css/icon": ">=3" "@spectrum-css/vars": ">=9" dependencies: - "@spectrum-css/icon": 5.1.0(@spectrum-css/vars@9.0.8) + "@spectrum-css/icon": 6.0.2(@spectrum-css/tokens@11.0.0) "@spectrum-css/vars": 9.0.8 dev: false @@ -1695,10 +1696,10 @@ packages: } dev: true - /@types/node@20.11.16: + /@types/node@20.11.19: resolution: { - integrity: sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==, + integrity: sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==, } dependencies: undici-types: 5.26.5 @@ -1711,10 +1712,10 @@ packages: } dev: true - /@types/semver@7.5.6: + /@types/semver@7.5.7: resolution: { - integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==, + integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==, } dev: true @@ -1725,10 +1726,10 @@ packages: } dev: false - /@vercel/nft@0.26.3: + /@vercel/nft@0.26.4: resolution: { - integrity: sha512-h1z/NN9ppS4YOKwSgBoopJlhm7tS2Qb/9Ld1HXjDpvvTE7mY0xVD8nllXs+RihD9uTGJISOIMzp18Eg0EApaMA==, + integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==, } engines: { node: ">=16" } hasBin: true @@ -1924,14 +1925,15 @@ packages: } dev: true - /array-buffer-byte-length@1.0.0: + /array-buffer-byte-length@1.0.1: resolution: { - integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, + integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, } + engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 + call-bind: 1.0.7 + is-array-buffer: 3.0.4 dev: true /array-find-index@1.0.2: @@ -1964,25 +1966,26 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.22.4 es-shim-unscopables: 1.0.2 dev: true - /arraybuffer.prototype.slice@1.0.2: + /arraybuffer.prototype.slice@1.0.3: resolution: { - integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==, + integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, } engines: { node: ">= 0.4" } dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-array-buffer: 3.0.2 + es-abstract: 1.22.4 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.2 dev: true @@ -2030,7 +2033,7 @@ packages: "@ava/typescript": optional: true dependencies: - "@vercel/nft": 0.26.3 + "@vercel/nft": 0.26.4 acorn: 8.11.3 acorn-walk: 8.3.2 ansi-styles: 6.2.1 @@ -2048,9 +2051,9 @@ packages: concordance: 5.0.4 currently-unhandled: 0.4.1 debug: 4.3.4 - emittery: 1.0.2 + emittery: 1.0.3 figures: 6.0.1 - globby: 14.0.0 + globby: 14.0.1 ignore-by-default: 2.1.0 indent-string: 5.0.0 is-plain-object: 5.0.0 @@ -2162,15 +2165,18 @@ packages: streamsearch: 1.1.0 dev: false - /call-bind@1.0.5: + /call-bind@1.0.7: resolution: { - integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==, + integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, } + engines: { node: ">= 0.4" } dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.2.0 + get-intrinsic: 1.2.4 + set-function-length: 1.2.1 dev: true /callsites@3.1.0: @@ -2511,7 +2517,7 @@ packages: js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.5.4 + semver: 7.6.0 well-known-symbols: 2.0.0 dev: true @@ -2575,7 +2581,7 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.16)(cosmiconfig@8.3.6)(typescript@5.3.3): + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.19)(cosmiconfig@8.3.6)(typescript@5.3.3): resolution: { integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, @@ -2586,7 +2592,7 @@ packages: cosmiconfig: ">=8.2" typescript: ">=4" dependencies: - "@types/node": 20.11.16 + "@types/node": 20.11.19 cosmiconfig: 8.3.6(typescript@5.3.3) jiti: 1.21.0 typescript: 5.3.3 @@ -2753,16 +2759,16 @@ packages: clone: 1.0.4 dev: true - /define-data-property@1.1.1: + /define-data-property@1.1.4: resolution: { - integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==, + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.2.2 + es-define-property: 1.0.0 + es-errors: 1.3.0 gopd: 1.0.1 - has-property-descriptors: 1.0.1 dev: true /define-properties@1.2.1: @@ -2772,8 +2778,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 object-keys: 1.1.1 dev: true @@ -2836,10 +2842,10 @@ packages: integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, } - /emittery@1.0.2: + /emittery@1.0.3: resolution: { - integrity: sha512-PqHdP6JJrxiSXQzCAzII77dVsfyGWu+7V0ghqkaCej2shF1cnIPeFE9kKZcVTqvBjrRMDVOdNXKEYcjxkznS1g==, + integrity: sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==, } engines: { node: ">=14.16" } dev: true @@ -2883,47 +2889,49 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract@1.22.3: + /es-abstract@1.22.4: resolution: { - integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==, + integrity: sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==, } engines: { node: ">= 0.4" } dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 available-typed-arrays: 1.0.6 - call-bind: 1.0.5 + call-bind: 1.0.7 + es-define-property: 1.0.0 + es-errors: 1.3.0 es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 globalthis: 1.0.3 gopd: 1.0.1 - has-property-descriptors: 1.0.1 + has-property-descriptors: 1.0.2 has-proto: 1.0.1 has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 + hasown: 2.0.1 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 - is-typed-array: 1.1.12 + is-typed-array: 1.1.13 is-weakref: 1.0.2 object-inspect: 1.13.1 object-keys: 1.1.1 object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 + regexp.prototype.flags: 1.5.2 safe-array-concat: 1.1.0 - safe-regex-test: 1.0.2 + safe-regex-test: 1.0.3 string.prototype.trim: 1.2.8 string.prototype.trimend: 1.0.7 string.prototype.trimstart: 1.0.7 - typed-array-buffer: 1.0.0 + typed-array-buffer: 1.0.1 typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 @@ -2931,6 +2939,24 @@ packages: which-typed-array: 1.1.14 dev: true + /es-define-property@1.0.0: + resolution: + { + integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, + } + engines: { node: ">= 0.4" } + dependencies: + get-intrinsic: 1.2.4 + dev: true + + /es-errors@1.3.0: + resolution: + { + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, + } + engines: { node: ">= 0.4" } + dev: true + /es-set-tostringtag@2.0.2: resolution: { @@ -2938,9 +2964,9 @@ packages: } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 - hasown: 2.0.0 + hasown: 2.0.1 dev: true /es-shim-unscopables@1.0.2: @@ -2949,7 +2975,7 @@ packages: integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, } dependencies: - hasown: 2.0.0 + hasown: 2.0.1 dev: true /es-to-primitive@1.2.1: @@ -2997,10 +3023,10 @@ packages: "@esbuild/win32-x64": 0.18.12 dev: true - /escalade@3.1.1: + /escalade@3.1.2: resolution: { - integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, + integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, } engines: { node: ">=6" } dev: true @@ -3142,10 +3168,10 @@ packages: micromatch: 4.0.5 dev: true - /fastq@1.17.0: + /fastq@1.17.1: resolution: { - integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==, + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, } dependencies: reusify: 1.0.4 @@ -3322,9 +3348,9 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.22.4 functions-have-names: 1.2.3 dev: true @@ -3369,16 +3395,18 @@ packages: engines: { node: ">=18" } dev: true - /get-intrinsic@1.2.2: + /get-intrinsic@1.2.4: resolution: { - integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, + integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, } + engines: { node: ">= 0.4" } dependencies: + es-errors: 1.3.0 function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 - hasown: 2.0.0 + hasown: 2.0.1 dev: true /get-stream@6.0.1: @@ -3397,15 +3425,16 @@ packages: engines: { node: ">=16" } dev: true - /get-symbol-description@1.0.0: + /get-symbol-description@1.0.2: resolution: { - integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 dev: true /git-raw-commits@2.0.11: @@ -3503,14 +3532,14 @@ packages: slash: 3.0.0 dev: true - /globby@14.0.0: + /globby@14.0.1: resolution: { - integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==, + integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==, } engines: { node: ">=18" } dependencies: - "@sindresorhus/merge-streams": 1.0.0 + "@sindresorhus/merge-streams": 2.2.1 fast-glob: 3.3.2 ignore: 5.3.1 path-type: 5.0.0 @@ -3524,7 +3553,7 @@ packages: integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, } dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 dev: true /graceful-fs@4.2.11: @@ -3571,13 +3600,13 @@ packages: engines: { node: ">=8" } dev: true - /has-property-descriptors@1.0.1: + /has-property-descriptors@1.0.2: resolution: { - integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==, + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, } dependencies: - get-intrinsic: 1.2.2 + es-define-property: 1.0.0 dev: true /has-proto@1.0.1: @@ -3613,10 +3642,10 @@ packages: } dev: true - /hasown@2.0.0: + /hasown@2.0.1: resolution: { - integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, + integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==, } engines: { node: ">= 0.4" } dependencies: @@ -3686,10 +3715,10 @@ packages: engines: { node: ">=16.17.0" } dev: true - /husky@9.0.10: + /husky@9.0.11: resolution: { - integrity: sha512-TQGNknoiy6bURzIO77pPRu+XHi6zI7T93rX+QnJsoYFf3xdjKOur+IlfqzJGMHIK/wXrLg+GsvMs8Op7vI2jVA==, + integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==, } engines: { node: ">=18" } hasBin: true @@ -3780,16 +3809,16 @@ packages: } dev: true - /internal-slot@1.0.6: + /internal-slot@1.0.7: resolution: { - integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, + integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.2.2 - hasown: 2.0.0 - side-channel: 1.0.4 + es-errors: 1.3.0 + hasown: 2.0.1 + side-channel: 1.0.5 dev: true /irregular-plurals@3.5.0: @@ -3800,15 +3829,15 @@ packages: engines: { node: ">=8" } dev: true - /is-array-buffer@3.0.2: + /is-array-buffer@3.0.4: resolution: { - integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, + integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, } + engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 dev: true /is-arrayish@0.2.1: @@ -3834,7 +3863,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true @@ -3852,7 +3881,7 @@ packages: integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, } dependencies: - hasown: 2.0.0 + hasown: 2.0.1 dev: true /is-date-object@1.0.5: @@ -3972,7 +4001,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true @@ -3982,7 +4011,7 @@ packages: integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true /is-stream@2.0.1: @@ -4041,10 +4070,10 @@ packages: text-extensions: 2.4.0 dev: true - /is-typed-array@1.1.12: + /is-typed-array@1.1.13: resolution: { - integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, + integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, } engines: { node: ">= 0.4" } dependencies: @@ -4065,7 +4094,7 @@ packages: integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true /is-windows@1.0.2: @@ -4239,10 +4268,10 @@ packages: } dev: true - /lint-staged@15.2.1: + /lint-staged@15.2.2: resolution: { - integrity: sha512-dhwAPnM85VdshybV9FWI/9ghTvMLoQLEXgVMx+ua2DN7mdfzd/tRfoU2yhMcBac0RHkofoxdnnJUokr8s4zKmQ==, + integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==, } engines: { node: ">=18.12.0" } hasBin: true @@ -4878,7 +4907,7 @@ packages: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.13.1 - semver: 7.5.4 + semver: 7.6.0 validate-npm-package-license: 3.0.4 dev: true @@ -4944,7 +4973,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -5309,10 +5338,10 @@ packages: hasBin: true dev: true - /prettier@3.2.4: + /prettier@3.2.5: resolution: { - integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==, + integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==, } engines: { node: ">=14" } hasBin: true @@ -5447,15 +5476,16 @@ packages: } dev: true - /regexp.prototype.flags@1.5.1: + /regexp.prototype.flags@1.5.2: resolution: { - integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, + integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 + es-errors: 1.3.0 set-function-name: 2.0.1 dev: true @@ -5603,8 +5633,8 @@ packages: } engines: { node: ">=0.4" } dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 dev: true @@ -5616,15 +5646,15 @@ packages: } dev: true - /safe-regex-test@1.0.2: + /safe-regex-test@1.0.3: resolution: { - integrity: sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==, + integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 is-regex: 1.1.4 dev: true @@ -5660,10 +5690,10 @@ packages: hasBin: true dev: true - /semver@7.5.4: + /semver@7.6.0: resolution: { - integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, + integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==, } engines: { node: ">=10" } hasBin: true @@ -5699,18 +5729,19 @@ packages: } dev: true - /set-function-length@1.2.0: + /set-function-length@1.2.1: resolution: { - integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==, + integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==, } engines: { node: ">= 0.4" } dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 + es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 gopd: 1.0.1 - has-property-descriptors: 1.0.1 + has-property-descriptors: 1.0.2 dev: true /set-function-name@2.0.1: @@ -5720,9 +5751,9 @@ packages: } engines: { node: ">= 0.4" } dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 functions-have-names: 1.2.3 - has-property-descriptors: 1.0.1 + has-property-descriptors: 1.0.2 dev: true /shebang-command@1.2.0: @@ -5759,14 +5790,16 @@ packages: } engines: { node: ">=8" } - /side-channel@1.0.4: + /side-channel@1.0.5: resolution: { - integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==, } + engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 object-inspect: 1.13.1 dev: true @@ -5872,13 +5905,13 @@ packages: } dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.16 + spdx-license-ids: 3.0.17 dev: true - /spdx-exceptions@2.4.0: + /spdx-exceptions@2.5.0: resolution: { - integrity: sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==, + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, } dev: true @@ -5888,14 +5921,14 @@ packages: integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, } dependencies: - spdx-exceptions: 2.4.0 - spdx-license-ids: 3.0.16 + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.17 dev: true - /spdx-license-ids@3.0.16: + /spdx-license-ids@3.0.17: resolution: { - integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==, + integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==, } dev: true @@ -5999,9 +6032,9 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.22.4 dev: true /string.prototype.trimend@1.0.7: @@ -6010,9 +6043,9 @@ packages: integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.22.4 dev: true /string.prototype.trimstart@1.0.7: @@ -6021,9 +6054,9 @@ packages: integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.22.4 dev: true /string_decoder@1.3.0: @@ -6363,16 +6396,16 @@ packages: engines: { node: ">=14.16" } dev: true - /typed-array-buffer@1.0.0: + /typed-array-buffer@1.0.1: resolution: { - integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, + integrity: sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 + call-bind: 1.0.7 + es-errors: 1.3.0 + is-typed-array: 1.1.13 dev: true /typed-array-byte-length@1.0.0: @@ -6382,10 +6415,10 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 has-proto: 1.0.1 - is-typed-array: 1.1.12 + is-typed-array: 1.1.13 dev: true /typed-array-byte-offset@1.0.0: @@ -6396,10 +6429,10 @@ packages: engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.6 - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 has-proto: 1.0.1 - is-typed-array: 1.1.12 + is-typed-array: 1.1.13 dev: true /typed-array-length@1.0.4: @@ -6408,9 +6441,9 @@ packages: integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 - is-typed-array: 1.1.12 + is-typed-array: 1.1.13 dev: true /typescript@5.3.3: @@ -6428,7 +6461,7 @@ packages: integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, } dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -6508,7 +6541,7 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite@4.4.4(@types/node@20.11.16): + /vite@4.4.4(@types/node@20.11.19): resolution: { integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==, @@ -6539,7 +6572,7 @@ packages: terser: optional: true dependencies: - "@types/node": 20.11.16 + "@types/node": 20.11.19 esbuild: 0.18.12 postcss: 8.4.26 rollup: 3.26.2 @@ -6631,7 +6664,7 @@ packages: engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.6 - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.2 @@ -6822,7 +6855,7 @@ packages: engines: { node: ">=12" } dependencies: cliui: 8.0.1 - escalade: 3.1.1 + escalade: 3.1.2 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 From e0c6efe97d8138eb106ceb92ce5af26dbe8efc21 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 15 Feb 2024 23:19:36 +0000 Subject: [PATCH 080/295] [create-pull-request] automated change --- .../tokens/src/semantic-color-palette.json | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index 52071397..42e2e8e4 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -398,5 +398,25 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1600}", "uuid": "de206438-991f-4580-8aa1-1488acb03a09" + }, + "negative-subdued-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{negative-color-200}", + "uuid": "a553db3e-a051-4023-87eb-da6545b983b2" + }, + "negative-subdued-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{negative-color-300}", + "uuid": "9513cf13-8537-443f-81ce-f9d88292ba32" + }, + "negative-subdued-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{negative-color-300}", + "uuid": "1eea917c-52e7-4295-b0e1-d33c2e73a137" + }, + "negative-subdued-background-color-key-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{negative-color-300}", + "uuid": "4b6aaf76-e0ab-4be0-81c0-d5f64cacee88" } -} +} \ No newline at end of file From c7c1d818c011c7259516c1d2d5fa623d6ace500a Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 21 Feb 2024 12:01:03 -0700 Subject: [PATCH 081/295] chore: added changeset --- .changeset/wet-jobs-lie.md | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .changeset/wet-jobs-lie.md diff --git a/.changeset/wet-jobs-lie.md b/.changeset/wet-jobs-lie.md new file mode 100644 index 00000000..1ee32959 --- /dev/null +++ b/.changeset/wet-jobs-lie.md @@ -0,0 +1,39 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added new semantic color aliases to Tokens Studio, in the S2 color tokens, alias sets for both light and dark themes. + +New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets. + +## Design Motivation + +New values for tag component for S2. New negative-subdued background tokens were needed for negative and not selected tag components. + +## Token Diff + +_Tokens added (12):_ + +- `negative-subdued-background-color-default` +- `negative-subdued-background-color-down` +- `negative-subdued-background-color-hover` +- `negative-subdued-background-color-key-focus` +- `switch-handle-selected-size-extra-large` +- `switch-handle-selected-size-large` +- `switch-handle-selected-size-medium` +- `switch-handle-selected-size-small` +- `switch-handle-size-extra-large` +- `switch-handle-size-large` +- `switch-handle-size-medium` +- `switch-handle-size-small` + +_Token values updated (8):_ + +- `switch-control-height-extra-large` +- `switch-control-height-large` +- `switch-control-height-medium` +- `switch-control-height-small` +- `switch-control-width-extra-large` +- `switch-control-width-large` +- `switch-control-width-medium` +- `switch-control-width-small` From e7ca27282d73ecbfa971becfc38b732ebf980aca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 21 Feb 2024 19:02:50 +0000 Subject: [PATCH 082/295] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/tokens/CHANGELOG.md | 62 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 65 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 15426104..7f062035 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -29,6 +29,8 @@ "tame-bobcats-beg", "unlucky-buckets-shop", "warm-experts-beg", + "wet-jobs-lie", + "wild-numbers-sip", "wise-turtles-confess" ] } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 2fed2ec4..323f580c 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,67 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.15 + +### Minor Changes + +- c7c1d81: Added new semantic color aliases to Tokens Studio, in the S2 color tokens, alias sets for both light and dark themes. + + New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets. + + ## Design Motivation + + New values for tag component for S2. New negative-subdued background tokens were needed for negative and not selected tag components. + + ## Token Diff + + _Tokens added (12):_ + + - `negative-subdued-background-color-default` + - `negative-subdued-background-color-down` + - `negative-subdued-background-color-hover` + - `negative-subdued-background-color-key-focus` + - `switch-handle-selected-size-extra-large` + - `switch-handle-selected-size-large` + - `switch-handle-selected-size-medium` + - `switch-handle-selected-size-small` + - `switch-handle-size-extra-large` + - `switch-handle-size-large` + - `switch-handle-size-medium` + - `switch-handle-size-small` + + _Token values updated (8):_ + + - `switch-control-height-extra-large` + - `switch-control-height-large` + - `switch-control-height-medium` + - `switch-control-height-small` + - `switch-control-width-extra-large` + - `switch-control-width-large` + - `switch-control-width-medium` + - `switch-control-width-small` + +- 4b78009: Updated values and added new tokens for Switch. + + ## Design Motivation + + Added new tokens: switch-handle-size-_ and switch-handle-selected-size-_ for both desktop and mobile. + Update token values on: switch-control-width-_ and switch-control-height-_ for both desktop and mobile. + + The design for Switch in S2 has changed and now has a border when it's not selected. New handle sizes are added and control sizes have been updated. + + ## Token Diff + + _Token values updated (8):_ + + - `switch-control-height-extra-large` + - `switch-control-height-large` + - `switch-control-height-medium` + - `switch-control-height-small` + - `switch-control-width-extra-large` + - `switch-control-width-large` + - `switch-control-width-medium` + - `switch-control-width-small` + ## 13.0.0-beta.14 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 3041b5b4..8b4647d5 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.14", + "version": "13.0.0-beta.15", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 2d14626e4628baf469d975b8da220a5b7efee567 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 15 Feb 2024 23:19:22 +0000 Subject: [PATCH 083/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 105 ++++++++++++++++++++++ 1 file changed, 105 insertions(+) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 31831fed..5498f5c6 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -7045,5 +7045,110 @@ "uuid": "daee9fb3-c94c-4f91-90d5-99e40034c1fd" } } + }, + "tag-minimum-width-multiplier": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "value": "1", + "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f" + }, + "tag-maximum-width-multiplier": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "value": "7", + "uuid": "8771f506-a491-4222-be86-0e666ea2c711" + }, + "tag-label-to-clear-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "bfc9cd19-e115-4ff2-908d-6cd4725f68bc" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "2011748e-f950-4c6e-9eee-1c0d77b7ba36" + } + } + }, + "tag-label-to-clear-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "c964fe64-fcb6-4417-977d-b15880daf164" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "ff7424ba-5f65-46ff-b408-4ffb2cfc5035" + } + } + }, + "tag-label-to-clear-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "8533ad58-9e81-4154-8ad1-57213741e814" + } + } + }, + "tag-label-clear-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "7c1375da-c6c7-42b3-b60e-0ef6724c6303" + } + } + }, + "tag-edge-to-clear-icon-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "a27b0e7c-8840-4d08-8f88-39643589c554" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "6f913e5f-debc-4b7d-897d-c2704847c2e5" + } + } + }, + "tag-edge-to-clear-icon-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "e4e422af-181f-47b5-b165-f514a0a6f41c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "a2f75bb4-0ce4-4993-9a43-09cd2b7376bf" + } + } + }, + "tag-edge-to-clear-icon-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "896b20fc-c13e-4785-a252-00857208d51c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "b046b12c-5c39-4018-8ccc-9a5cb08eb6e5" + } + } } } \ No newline at end of file From 80a3fec48e28e332bd906ae13a5556256afbcf1b Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 21 Feb 2024 12:12:20 -0700 Subject: [PATCH 084/295] chore: changeset --- .changeset/olive-schools-warn.md | 23 +++++++++++++++++++++++ .changeset/wet-jobs-lie.md | 2 -- 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 .changeset/olive-schools-warn.md diff --git a/.changeset/olive-schools-warn.md b/.changeset/olive-schools-warn.md new file mode 100644 index 00000000..f8d06a11 --- /dev/null +++ b/.changeset/olive-schools-warn.md @@ -0,0 +1,23 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets. + +## Design Motivation + +New values for tag component for S2. + +## Token Diff + +_Tokens added (9):_ + +- `tag-edge-to-clear-icon-large` +- `tag-edge-to-clear-icon-medium` +- `tag-edge-to-clear-icon-small` +- `tag-label-clear-icon-large` +- `tag-label-to-clear-icon-large` +- `tag-label-to-clear-icon-medium` +- `tag-label-to-clear-icon-small` +- `tag-maximum-width-multiplier` +- `tag-minimum-width-multiplier` diff --git a/.changeset/wet-jobs-lie.md b/.changeset/wet-jobs-lie.md index 1ee32959..e7c860ba 100644 --- a/.changeset/wet-jobs-lie.md +++ b/.changeset/wet-jobs-lie.md @@ -4,8 +4,6 @@ Added new semantic color aliases to Tokens Studio, in the S2 color tokens, alias sets for both light and dark themes. -New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets. - ## Design Motivation New values for tag component for S2. New negative-subdued background tokens were needed for negative and not selected tag components. From d36daec258884f34c0a750c6b22d45c43c2fd8a9 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 21 Feb 2024 12:17:11 -0700 Subject: [PATCH 085/295] refactor: fixed formatting issue with tag-label-to-clear-icon-large --- .changeset/wet-jobs-lie.md | 21 +-------------- .changeset/wild-numbers-sip.md | 15 +++++++++-- packages/tokens/CHANGELOG.md | 32 +++++------------------ packages/tokens/src/layout-component.json | 9 ++----- 4 files changed, 23 insertions(+), 54 deletions(-) diff --git a/.changeset/wet-jobs-lie.md b/.changeset/wet-jobs-lie.md index e7c860ba..8adf1d55 100644 --- a/.changeset/wet-jobs-lie.md +++ b/.changeset/wet-jobs-lie.md @@ -10,28 +10,9 @@ New values for tag component for S2. New negative-subdued background tokens were ## Token Diff -_Tokens added (12):_ +_Tokens added (4):_ - `negative-subdued-background-color-default` - `negative-subdued-background-color-down` - `negative-subdued-background-color-hover` - `negative-subdued-background-color-key-focus` -- `switch-handle-selected-size-extra-large` -- `switch-handle-selected-size-large` -- `switch-handle-selected-size-medium` -- `switch-handle-selected-size-small` -- `switch-handle-size-extra-large` -- `switch-handle-size-large` -- `switch-handle-size-medium` -- `switch-handle-size-small` - -_Token values updated (8):_ - -- `switch-control-height-extra-large` -- `switch-control-height-large` -- `switch-control-height-medium` -- `switch-control-height-small` -- `switch-control-width-extra-large` -- `switch-control-width-large` -- `switch-control-width-medium` -- `switch-control-width-small` diff --git a/.changeset/wild-numbers-sip.md b/.changeset/wild-numbers-sip.md index e4a45047..6a412d8c 100644 --- a/.changeset/wild-numbers-sip.md +++ b/.changeset/wild-numbers-sip.md @@ -6,13 +6,24 @@ Updated values and added new tokens for Switch. ## Design Motivation -Added new tokens: switch-handle-size-_ and switch-handle-selected-size-_ for both desktop and mobile. -Update token values on: switch-control-width-_ and switch-control-height-_ for both desktop and mobile. +Added new tokens: `switch-handle-size-_` and `switch-handle-selected-size-_` for both desktop and mobile. +Update token values on: `switch-control-width-_` and `switch-control-height-_` for both desktop and mobile. The design for Switch in S2 has changed and now has a border when it's not selected. New handle sizes are added and control sizes have been updated. ## Token Diff +_Tokens added (8):_ + +- `switch-handle-selected-size-extra-large` +- `switch-handle-selected-size-large` +- `switch-handle-selected-size-medium` +- `switch-handle-selected-size-small` +- `switch-handle-size-extra-large` +- `switch-handle-size-large` +- `switch-handle-size-medium` +- `switch-handle-size-small` + _Token values updated (8):_ - `switch-control-height-extra-large` diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 323f580c..643bb055 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -5,12 +5,16 @@ ### Minor Changes - c7c1d81: Added new semantic color aliases to Tokens Studio, in the S2 color tokens, alias sets for both light and dark themes. - - New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets. +- 4b78009: Updated values and added new tokens for Switch. ## Design Motivation - New values for tag component for S2. New negative-subdued background tokens were needed for negative and not selected tag components. + New negative-subdued background tokens were needed for negative and not selected tag components. + + Added new tokens: `switch-handle-size-_` and `switch-handle-selected-size-_` for both desktop and mobile. + Update token values on: `switch-control-width-_` and `switch-control-height-_` for both desktop and mobile. + + The design for Switch in S2 has changed and now has a border when it's not selected. New handle sizes are added and control sizes have been updated. ## Token Diff @@ -40,28 +44,6 @@ - `switch-control-width-medium` - `switch-control-width-small` -- 4b78009: Updated values and added new tokens for Switch. - - ## Design Motivation - - Added new tokens: switch-handle-size-_ and switch-handle-selected-size-_ for both desktop and mobile. - Update token values on: switch-control-width-_ and switch-control-height-_ for both desktop and mobile. - - The design for Switch in S2 has changed and now has a border when it's not selected. New handle sizes are added and control sizes have been updated. - - ## Token Diff - - _Token values updated (8):_ - - - `switch-control-height-extra-large` - - `switch-control-height-large` - - `switch-control-height-medium` - - `switch-control-height-small` - - `switch-control-width-extra-large` - - `switch-control-width-large` - - `switch-control-width-medium` - - `switch-control-width-small` - ## 13.0.0-beta.14 ### Minor Changes diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 5498f5c6..e8f7e77d 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -7093,12 +7093,7 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "8533ad58-9e81-4154-8ad1-57213741e814" - } - } - }, - "tag-label-clear-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { + }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", @@ -7151,4 +7146,4 @@ } } } -} \ No newline at end of file +} From 413764f24d9d872c577c3b2139198693ee6f0f97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 21 Feb 2024 19:34:41 +0000 Subject: [PATCH 086/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 24 ++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 7f062035..c0cdaca5 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -21,6 +21,7 @@ "happy-students-vanish", "lemon-dragons-raise", "neat-balloons-rhyme", + "olive-schools-warn", "six-phones-rescue", "slimy-emus-enjoy", "smooth-turtles-retire", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 643bb055..c80e623c 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,29 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.16 + +### Minor Changes + +- 80a3fec: New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets. + + ## Design Motivation + + New values for tag component for S2. + + ## Token Diff + + _Tokens added (9):_ + + - `tag-edge-to-clear-icon-large` + - `tag-edge-to-clear-icon-medium` + - `tag-edge-to-clear-icon-small` + - `tag-label-clear-icon-large` + - `tag-label-to-clear-icon-large` + - `tag-label-to-clear-icon-medium` + - `tag-label-to-clear-icon-small` + - `tag-maximum-width-multiplier` + - `tag-minimum-width-multiplier` + ## 13.0.0-beta.15 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 8b4647d5..1580b2d4 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.15", + "version": "13.0.0-beta.16", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From a494c5993dc3dd0fe035e7d07cb8be2effac92c9 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Tue, 27 Feb 2024 22:19:22 +0000 Subject: [PATCH 087/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index e8f7e77d..3ba45641 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3348,9 +3348,14 @@ }, "color-slider-border-rounding": { "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "991541a2-df44-4f32-90a5-de698adf5db3" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-medium-size-small}", + "uuid": "991541a2-df44-4f32-90a5-de698adf5db3" + } + } }, "floating-action-button-drop-shadow-blur": { "component": "floating-action-button", @@ -7146,4 +7151,4 @@ } } } -} +} \ No newline at end of file From cb97222d21850cbbe539003499cd4036c5f578cc Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Tue, 27 Feb 2024 15:22:14 -0700 Subject: [PATCH 088/295] fix: cleaned up color-slider-border-rounding token --- packages/tokens/src/layout-component.json | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 3ba45641..9d858661 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3348,14 +3348,9 @@ }, "color-slider-border-rounding": { "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-size-small}", - "uuid": "991541a2-df44-4f32-90a5-de698adf5db3" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-medium-size-small}", + "uuid": "991541a2-df44-4f32-90a5-de698adf5db3" }, "floating-action-button-drop-shadow-blur": { "component": "floating-action-button", @@ -7151,4 +7146,4 @@ } } } -} \ No newline at end of file +} From 912e30737b4b6727479a8b436d0fb7193c3970d9 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Tue, 27 Feb 2024 15:26:32 -0700 Subject: [PATCH 089/295] chore: added changeset --- .changeset/sweet-pillows-protect.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .changeset/sweet-pillows-protect.md diff --git a/.changeset/sweet-pillows-protect.md b/.changeset/sweet-pillows-protect.md new file mode 100644 index 00000000..00f7f981 --- /dev/null +++ b/.changeset/sweet-pillows-protect.md @@ -0,0 +1,15 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated `color-slider-border-rounding` token to use 7px instead of 4px in desktop only. +This token value update is the same value used by alias token: `corner-radius-medium-size-small`. + +## Motivation and context + +S2 color slider design updates. + +## Token Diff + +*Token values updated (1):* + - `color-slider-border-rounding` From 2d5377529af7bba6d0d64032aa993ae436042971 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Tue, 27 Feb 2024 21:08:37 +0000 Subject: [PATCH 090/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 42c4e388..2c6fe5c4 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -89,7 +89,7 @@ "color-slider-border-color": { "component": "color-slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", + "value": "{gray-1000}", "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" }, "color-slider-border-opacity": { @@ -264,4 +264,4 @@ "value": "0.15", "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" } -} +} \ No newline at end of file From 9072ae78cc74d9154627d39f9fa22a85b7e5610f Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Tue, 27 Feb 2024 14:35:14 -0700 Subject: [PATCH 091/295] chore: added changeset --- .changeset/blue-parrots-hug.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .changeset/blue-parrots-hug.md diff --git a/.changeset/blue-parrots-hug.md b/.changeset/blue-parrots-hug.md new file mode 100644 index 00000000..0cc89866 --- /dev/null +++ b/.changeset/blue-parrots-hug.md @@ -0,0 +1,14 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Color-slider-border-color token was updated to reference gray-1000 instead of gray-900 in both light and dark themes. + +## Design Motivation + +S2 color slider design changes. + +## Token Diff + +*Token values updated (1):* + - `color-slider-border-color` From 7b867e2e4392dd2c52b2068022e74dca6120997f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 27 Feb 2024 22:30:17 +0000 Subject: [PATCH 092/295] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/tokens/CHANGELOG.md | 19 +++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index c0cdaca5..46ba455c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -10,6 +10,7 @@ "transform-tokens-json": "0.0.1" }, "changesets": [ + "blue-parrots-hug", "brown-years-perform", "clever-onions-compete", "dirty-pets-attend", @@ -27,6 +28,7 @@ "smooth-turtles-retire", "soft-moles-walk", "strange-rings-love", + "sweet-pillows-protect", "tame-bobcats-beg", "unlucky-buckets-shop", "warm-experts-beg", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index c80e623c..dff42b49 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,24 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.17 + +### Minor Changes + +- 9072ae7: `color-slider-border-color` token was updated to reference `gray-1000` instead of `gray-90`0 in both light and dark themes. +- 912e307: Updated `color-slider-border-rounding` token to use 7px instead of 4px in desktop only. + This token value update is the same value used by alias token: `corner-radius-medium-size-small`. + + ## Design Motivation + + S2 color slider design changes. + + ## Token Diff + + _Token values updated (2):_ + + - `color-slider-border-color` + - `color-slider-border-rounding` + ## 13.0.0-beta.16 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 1580b2d4..05cc97f0 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.16", + "version": "13.0.0-beta.17", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From f22105bac3fe09e1933da0e028e1344f9f008adc Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 29 Feb 2024 21:00:02 +0000 Subject: [PATCH 093/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 216 +++++++++++++++++++++---- 1 file changed, 188 insertions(+), 28 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 4aa09cfe..6e001003 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -144,7 +144,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", + "value": "{gray-500}", "uuid": "bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef" }, "wireframe": { @@ -164,7 +164,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", + "value": "{gray-400}", "uuid": "2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5" }, "wireframe": { @@ -184,7 +184,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", + "value": "{gray-400}", "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" }, "wireframe": { @@ -204,7 +204,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", + "value": "{gray-400}", "uuid": "a1e08db6-3a72-4b8e-9475-b54a7b9be506" }, "wireframe": { @@ -229,7 +229,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-600}", + "value": "{accent-color-700}", "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" }, "wireframe": { @@ -249,7 +249,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-500}", + "value": "{accent-color-600}", "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" }, "wireframe": { @@ -269,7 +269,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-500}", + "value": "{accent-color-600}", "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" }, "wireframe": { @@ -289,7 +289,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-500}", + "value": "{accent-color-600}", "uuid": "af809118-7a97-409c-925f-8d7636a791c8" }, "wireframe": { @@ -314,7 +314,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-600}", + "value": "{informative-color-700}", "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" }, "wireframe": { @@ -334,7 +334,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-500}", + "value": "{informative-color-600}", "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" }, "wireframe": { @@ -354,7 +354,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-500}", + "value": "{informative-color-600}", "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" }, "wireframe": { @@ -374,7 +374,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-500}", + "value": "{informative-color-600}", "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" }, "wireframe": { @@ -394,7 +394,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-600}", + "value": "{negative-color-700}", "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" }, "wireframe": { @@ -414,7 +414,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-500}", + "value": "{negative-color-600}", "uuid": "648da867-549e-47c3-9312-e9cfda288705" }, "wireframe": { @@ -434,7 +434,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-500}", + "value": "{negative-color-600}", "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" }, "wireframe": { @@ -454,7 +454,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-500}", + "value": "{negative-color-600}", "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" }, "wireframe": { @@ -474,7 +474,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-600}", + "value": "{positive-color-700}", "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" }, "wireframe": { @@ -494,7 +494,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-500}", + "value": "{positive-color-600}", "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" }, "wireframe": { @@ -514,7 +514,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-500}", + "value": "{positive-color-600}", "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" }, "wireframe": { @@ -534,7 +534,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-500}", + "value": "{positive-color-600}", "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" }, "wireframe": { @@ -549,7 +549,7 @@ "sets": { "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-800}", + "value": "{notice-color-900}", "uuid": "323428c1-792d-41b4-8a17-a12f1ac00e2a" }, "light": { @@ -580,9 +580,19 @@ "uuid": "579e401c-de49-41af-a8c7-a0a070c31979" }, "gray-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-700}", + "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-500}", + "uuid": "a3e71134-b44f-4b52-a84d-4841e01505e6" + } + } }, "red-background-color-default": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -614,7 +624,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-800}", + "value": "{orange-900}", "uuid": "3e9a6c2a-bd09-4d28-a95c-920109c1852f" }, "wireframe": { @@ -634,7 +644,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1000}", + "value": "{yellow-1100}", "uuid": "61c5e375-bff3-479f-8c32-2d2a5edb906c" }, "wireframe": { @@ -654,7 +664,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-900}", + "value": "{chartreuse-1000}", "uuid": "5df9a029-dc91-4078-a198-574486948834" }, "wireframe": { @@ -674,7 +684,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-800}", + "value": "{celery-900}", "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" }, "wireframe": { @@ -1453,5 +1463,155 @@ "uuid": "6a60aa01-d789-4d39-9867-2264e66d419c" } } + }, + "brown-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-800}", + "uuid": "12fd4bac-b0ef-4285-a0e4-5947526a91a9" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-900}", + "uuid": "a25ac05c-c108-4caf-a77e-79b4fd36ee91" + } + } + }, + "cinnamon-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-800}", + "uuid": "86aa8b9c-b124-45ba-a359-a58295d28509" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-900}", + "uuid": "24026c61-470e-41b9-a247-58605b54706d" + } + } + }, + "pink-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-800}", + "uuid": "4be32a08-c731-4c59-b376-ba0ef134e14e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-900}", + "uuid": "496cef67-3a25-4d99-8545-e8aa9a7f0adc" + } + } + }, + "silver-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-800}", + "uuid": "35f96ec6-0eae-4c55-aa54-134f03feda7d" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-900}", + "uuid": "f7d55707-b9db-4711-b93f-dcc03932516c" + } + } + }, + "turquoise-visual-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-800}", + "uuid": "2c31e5bc-cf23-42d6-85e8-9947e305d1ff" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-900}", + "uuid": "04c6819d-5049-4e18-bb83-95239fa3d8c2" + } + } + }, + "brown-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-900}", + "uuid": "168c3534-c54e-415b-a623-27c2a8caea8c" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-700}", + "uuid": "c6dcdb8e-4966-4de6-a74a-fffa0793d58e" + } + } + }, + "cinnamon-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-900}", + "uuid": "6dc7df67-2cfb-440f-9b1c-b7262a7cc2d3" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-700}", + "uuid": "d442e5b5-5083-443d-ba60-12c60406c452" + } + } + }, + "pink-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-900}", + "uuid": "78fc6322-a961-429a-bd40-3e1c1bf2c4e9" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-700}", + "uuid": "3a363aa8-cf27-48a1-8c61-b1f1eaff6110" + } + } + }, + "silver-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-900}", + "uuid": "13d332e4-45b0-4549-a1a3-a608034960a1" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-700}", + "uuid": "a6e04390-003e-4565-bf96-e0fb8a791cb9" + } + } + }, + "turquoise-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-900}", + "uuid": "e763acbc-2c17-46c5-8484-1d8536e7ef10" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-700}", + "uuid": "6beacbfc-6d61-4567-86fe-39771550cf20" + } + } } } \ No newline at end of file From 7a1af6183a8569da89fa93c6c1dc98a44dd05e34 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 29 Feb 2024 15:25:19 -0700 Subject: [PATCH 094/295] feat: added wireframe to new colors --- packages/tokens/src/color-aliases.json | 57 +++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 6e001003..693d665e 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -591,6 +591,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-500}", "uuid": "a3e71134-b44f-4b52-a84d-4841e01505e6" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-700}", + "uuid": "c41bb795-182e-45c0-afea-4ae2148e37a4" } } }, @@ -1476,6 +1481,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{brown-900}", "uuid": "a25ac05c-c108-4caf-a77e-79b4fd36ee91" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-800}", + "uuid": "986418d6-3e22-441d-ba7f-732ee47aad04" } } }, @@ -1491,6 +1501,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cinnamon-900}", "uuid": "24026c61-470e-41b9-a247-58605b54706d" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-800}", + "uuid": "0535836b-ff76-4619-8e53-20f400b9996c" } } }, @@ -1506,6 +1521,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{pink-900}", "uuid": "496cef67-3a25-4d99-8545-e8aa9a7f0adc" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-800}", + "uuid": "b2fc4b00-4b9e-4e57-9892-0b4a59df4868" } } }, @@ -1521,6 +1541,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{silver-900}", "uuid": "f7d55707-b9db-4711-b93f-dcc03932516c" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-800}", + "uuid": "dca6ce31-57d3-4bb9-8d6a-cc2c66a3a3f4" } } }, @@ -1536,6 +1561,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{turquoise-900}", "uuid": "04c6819d-5049-4e18-bb83-95239fa3d8c2" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-800}", + "uuid": "47319d06-bec7-4520-893c-f4442b85cfd5" } } }, @@ -1551,6 +1581,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{brown-700}", "uuid": "c6dcdb8e-4966-4de6-a74a-fffa0793d58e" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-900}", + "uuid": "5f0767be-3be9-4d10-a708-740565e1c457" } } }, @@ -1566,6 +1601,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cinnamon-700}", "uuid": "d442e5b5-5083-443d-ba60-12c60406c452" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-900}", + "uuid": "d2c78c57-304d-4d62-87b0-2adb4085552f" } } }, @@ -1581,6 +1621,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{pink-700}", "uuid": "3a363aa8-cf27-48a1-8c61-b1f1eaff6110" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-900}", + "uuid": "636ebb71-7386-4a6a-b0c3-5778dd993b22" } } }, @@ -1596,6 +1641,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{silver-700}", "uuid": "a6e04390-003e-4565-bf96-e0fb8a791cb9" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-900}", + "uuid": "422a0b99-1222-4c78-ac55-615992ed607c" } } }, @@ -1611,7 +1661,12 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{turquoise-700}", "uuid": "6beacbfc-6d61-4567-86fe-39771550cf20" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-900}", + "uuid": "73e40908-216f-406e-993f-287477753e65" } } } -} \ No newline at end of file +} From ee2fb49ef4c84c7d23a534b7a78ae4894dfa0ab5 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 29 Feb 2024 15:29:20 -0700 Subject: [PATCH 095/295] chore: update deps --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/release.yml | 2 +- .lintstagedrc.json | 2 +- .moon/toolchain.yml | 2 +- package.json | 10 +- pnpm-lock.yaml | 5069 +++++++++-------------------- 6 files changed, 1535 insertions(+), 3552 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 687d5ee0..e838c36e 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -33,7 +33,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.15.3 + version: 8.15.4 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run site:export diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4b020505..aae7058a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - uses: pnpm/action-setup@v2 with: - version: 8.15.3 + version: 8.15.4 - uses: moonrepo/setup-moon-action@v1 - run: moon setup - run: moon run :build --query "projectSource~packages/*" diff --git a/.lintstagedrc.json b/.lintstagedrc.json index be745b8b..012355bf 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,3 +1,3 @@ { - "**/*.{js,jsx,ts,tsx,json,yml,yaml,md}": ["prettier --write"] + "!(pnpm-lock)**/*.{js,jsx,ts,tsx,json,yml,yaml,md}": ["prettier --write"] } diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 69dce6c8..4357410b 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "8.15.3" + version: "8.15.4" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index 428de7b5..73af3c2e 100644 --- a/package.json +++ b/package.json @@ -23,10 +23,10 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@changesets/cli": "^2.27.1", - "@commitlint/cli": "^18.6.1", - "@commitlint/config-conventional": "^18.6.2", - "@moonrepo/cli": "^1.21.3", - "ava": "^6.1.1", + "@commitlint/cli": "^19.0.3", + "@commitlint/config-conventional": "^19.0.3", + "@moonrepo/cli": "^1.22.2", + "ava": "^6.1.2", "husky": "^9.0.11", "lint-staged": "^15.2.2", "prettier": "^3.2.5" @@ -34,5 +34,5 @@ "engines": { "node": "18.13.0" }, - "packageManager": "pnpm@8.15.3" + "packageManager": "pnpm@8.15.4" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2e311d10..a512087f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,27 +1,28 @@ -lockfileVersion: "6.0" +lockfileVersion: '6.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false importers: + .: devDependencies: - "@changesets/cli": + '@changesets/cli': specifier: ^2.27.1 version: 2.27.1 - "@commitlint/cli": - specifier: ^18.6.1 - version: 18.6.1(@types/node@20.11.19)(typescript@5.3.3) - "@commitlint/config-conventional": - specifier: ^18.6.2 - version: 18.6.2 - "@moonrepo/cli": - specifier: ^1.21.3 - version: 1.21.3 + '@commitlint/cli': + specifier: ^19.0.3 + version: 19.0.3(@types/node@20.11.24)(typescript@5.3.3) + '@commitlint/config-conventional': + specifier: ^19.0.3 + version: 19.0.3 + '@moonrepo/cli': + specifier: ^1.22.2 + version: 1.22.2 ava: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 husky: specifier: ^9.0.11 version: 9.0.11 @@ -34,16 +35,16 @@ importers: docs/site: dependencies: - "@spectrum-css/page": + '@spectrum-css/page': specifier: ^5.0.31 version: 5.0.31 - "@spectrum-css/table": + '@spectrum-css/table': specifier: ^4.0.60 - version: 4.0.60(@spectrum-css/icon@6.0.2)(@spectrum-css/vars@9.0.8) - "@spectrum-css/tokens": + version: 4.0.60(@spectrum-css/icon@6.0.4)(@spectrum-css/vars@9.0.8) + '@spectrum-css/tokens': specifier: ^11.0.0 version: 11.0.0 - "@spectrum-css/typography": + '@spectrum-css/typography': specifier: ^5.0.27 version: 5.0.27(@spectrum-css/tokens@11.0.0) ajv: @@ -67,56 +68,56 @@ importers: docs/visualizer: dependencies: - "@spectrum-web-components/action-button": + '@spectrum-web-components/action-button': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/button": + '@spectrum-web-components/button': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/button-group": + '@spectrum-web-components/button-group': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/field-group": + '@spectrum-web-components/field-group': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/field-label": + '@spectrum-web-components/field-label': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/link": + '@spectrum-web-components/link': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/overlay": + '@spectrum-web-components/overlay': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/popover": + '@spectrum-web-components/popover': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/search": + '@spectrum-web-components/search': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/slider": + '@spectrum-web-components/slider': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/switch": + '@spectrum-web-components/switch': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/textfield": + '@spectrum-web-components/textfield': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/theme": + '@spectrum-web-components/theme': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/toast": + '@spectrum-web-components/toast': specifier: ^0.34.0 version: 0.34.0 - "@spectrum-web-components/tooltip": + '@spectrum-web-components/tooltip': specifier: ^0.34.0 version: 0.34.0 lit: specifier: ^2.7.6 version: 2.7.6 devDependencies: - "@types/node": + '@types/node': specifier: ^20.4.2 version: 20.11.19 typescript: @@ -168,59 +169,45 @@ importers: version: 3.2.5 packages: + /@babel/code-frame@7.23.5: - resolution: - { - integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/highlight": 7.23.4 + '@babel/highlight': 7.23.4 chalk: 2.4.2 dev: true /@babel/helper-validator-identifier@7.22.20: - resolution: - { - integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} dev: true /@babel/highlight@7.23.4: - resolution: - { - integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + engines: {node: '>=6.9.0'} dependencies: - "@babel/helper-validator-identifier": 7.22.20 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/runtime@7.23.9: - resolution: - { - integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==, - } - engines: { node: ">=6.9.0" } + /@babel/runtime@7.24.0: + resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==} + engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.1 dev: true /@changesets/apply-release-plan@7.0.0: - resolution: - { - integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==, - } - dependencies: - "@babel/runtime": 7.23.9 - "@changesets/config": 3.0.0 - "@changesets/get-version-range-type": 0.4.0 - "@changesets/git": 3.0.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==} + dependencies: + '@babel/runtime': 7.24.0 + '@changesets/config': 3.0.0 + '@changesets/get-version-range-type': 0.4.0 + '@changesets/git': 3.0.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -231,51 +218,42 @@ packages: dev: true /@changesets/assemble-release-plan@6.0.0: - resolution: - { - integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==, - } - dependencies: - "@babel/runtime": 7.23.9 - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.0.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==} + dependencies: + '@babel/runtime': 7.24.0 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 semver: 7.6.0 dev: true /@changesets/changelog-git@0.2.0: - resolution: - { - integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==, - } + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} dependencies: - "@changesets/types": 6.0.0 + '@changesets/types': 6.0.0 dev: true /@changesets/cli@2.27.1: - resolution: - { - integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==, - } + resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==} hasBin: true dependencies: - "@babel/runtime": 7.23.9 - "@changesets/apply-release-plan": 7.0.0 - "@changesets/assemble-release-plan": 6.0.0 - "@changesets/changelog-git": 0.2.0 - "@changesets/config": 3.0.0 - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.0.0 - "@changesets/get-release-plan": 4.0.0 - "@changesets/git": 3.0.0 - "@changesets/logger": 0.1.0 - "@changesets/pre": 2.0.0 - "@changesets/read": 0.6.0 - "@changesets/types": 6.0.0 - "@changesets/write": 0.3.0 - "@manypkg/get-packages": 1.1.3 - "@types/semver": 7.5.7 + '@babel/runtime': 7.24.0 + '@changesets/apply-release-plan': 7.0.0 + '@changesets/assemble-release-plan': 6.0.0 + '@changesets/changelog-git': 0.2.0 + '@changesets/config': 3.0.0 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/get-release-plan': 4.0.0 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/types': 6.0.0 + '@changesets/write': 0.3.0 + '@manypkg/get-packages': 1.1.3 + '@types/semver': 7.5.8 ansi-colors: 4.1.3 chalk: 2.4.2 ci-info: 3.9.0 @@ -286,7 +264,7 @@ packages: meow: 6.1.1 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.1.2 + preferred-pm: 3.1.3 resolve-from: 5.0.0 semver: 7.6.0 spawndamnit: 2.0.0 @@ -295,207 +273,153 @@ packages: dev: true /@changesets/config@3.0.0: - resolution: - { - integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==, - } - dependencies: - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.0.0 - "@changesets/logger": 0.1.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==} + dependencies: + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.0.0 + '@changesets/logger': 0.1.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 dev: true /@changesets/errors@0.2.0: - resolution: - { - integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, - } + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} dependencies: extendable-error: 0.1.7 dev: true /@changesets/get-dependents-graph@2.0.0: - resolution: - { - integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==, - } + resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==} dependencies: - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.0 dev: true /@changesets/get-release-plan@4.0.0: - resolution: - { - integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==, - } + resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==} dependencies: - "@babel/runtime": 7.23.9 - "@changesets/assemble-release-plan": 6.0.0 - "@changesets/config": 3.0.0 - "@changesets/pre": 2.0.0 - "@changesets/read": 0.6.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@babel/runtime': 7.24.0 + '@changesets/assemble-release-plan': 6.0.0 + '@changesets/config': 3.0.0 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 dev: true /@changesets/get-version-range-type@0.4.0: - resolution: - { - integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, - } + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} dev: true /@changesets/git@3.0.0: - resolution: - { - integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, - } - dependencies: - "@babel/runtime": 7.23.9 - "@changesets/errors": 0.2.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + dependencies: + '@babel/runtime': 7.24.0 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.5 spawndamnit: 2.0.0 dev: true /@changesets/logger@0.1.0: - resolution: - { - integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==, - } + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} dependencies: chalk: 2.4.2 dev: true /@changesets/parse@0.4.0: - resolution: - { - integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==, - } + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} dependencies: - "@changesets/types": 6.0.0 + '@changesets/types': 6.0.0 js-yaml: 3.14.1 dev: true /@changesets/pre@2.0.0: - resolution: - { - integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, - } - dependencies: - "@babel/runtime": 7.23.9 - "@changesets/errors": 0.2.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + dependencies: + '@babel/runtime': 7.24.0 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 dev: true /@changesets/read@0.6.0: - resolution: - { - integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, - } - dependencies: - "@babel/runtime": 7.23.9 - "@changesets/git": 3.0.0 - "@changesets/logger": 0.1.0 - "@changesets/parse": 0.4.0 - "@changesets/types": 6.0.0 + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + dependencies: + '@babel/runtime': 7.24.0 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/parse': 0.4.0 + '@changesets/types': 6.0.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 dev: true /@changesets/types@4.1.0: - resolution: - { - integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, - } + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} dev: true /@changesets/types@6.0.0: - resolution: - { - integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==, - } + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} dev: true /@changesets/write@0.3.0: - resolution: - { - integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==, - } + resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==} dependencies: - "@babel/runtime": 7.23.9 - "@changesets/types": 6.0.0 + '@babel/runtime': 7.24.0 + '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 dev: true - /@commitlint/cli@18.6.1(@types/node@20.11.19)(typescript@5.3.3): - resolution: - { - integrity: sha512-5IDE0a+lWGdkOvKH892HHAZgbAjcj1mT5QrfA/SVbLJV/BbBMGyKN0W5mhgjekPJJwEQdVNvhl9PwUacY58Usw==, - } - engines: { node: ">=v18" } + /@commitlint/cli@19.0.3(@types/node@20.11.24)(typescript@5.3.3): + resolution: {integrity: sha512-mGhh/aYPib4Vy4h+AGRloMY+CqkmtdeKPV9poMcZeImF5e3knQ5VYaSeAM0mEzps1dbKsHvABwaDpafLUuM96g==} + engines: {node: '>=v18'} hasBin: true dependencies: - "@commitlint/format": 18.6.1 - "@commitlint/lint": 18.6.1 - "@commitlint/load": 18.6.1(@types/node@20.11.19)(typescript@5.3.3) - "@commitlint/read": 18.6.1 - "@commitlint/types": 18.6.1 - execa: 5.1.1 - lodash.isfunction: 3.0.9 - resolve-from: 5.0.0 - resolve-global: 1.0.0 + '@commitlint/format': 19.0.3 + '@commitlint/lint': 19.0.3 + '@commitlint/load': 19.0.3(@types/node@20.11.24)(typescript@5.3.3) + '@commitlint/read': 19.0.3 + '@commitlint/types': 19.0.3 + execa: 8.0.1 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - typescript dev: true - /@commitlint/config-conventional@18.6.2: - resolution: - { - integrity: sha512-PcgSYg1AKGQIwDQKbaHtJsfqYy4uJTC7crLVZ83lfjcPaec4Pry2vLeaWej7ao2KsT20l9dWoMPpEGg8LWdUuA==, - } - engines: { node: ">=v18" } + /@commitlint/config-conventional@19.0.3: + resolution: {integrity: sha512-vh0L8XeLaEzTe8VCxSd0gAFvfTK0RFolrzw4o431bIuWJfi/yRCHJlsDwus7wW2eJaFFDR0VFXJyjGyDQhi4vA==} + engines: {node: '>=v18'} dependencies: - "@commitlint/types": 18.6.1 + '@commitlint/types': 19.0.3 conventional-changelog-conventionalcommits: 7.0.2 dev: true - /@commitlint/config-validator@18.6.1: - resolution: - { - integrity: sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw==, - } - engines: { node: ">=v18" } + /@commitlint/config-validator@19.0.3: + resolution: {integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==} + engines: {node: '>=v18'} dependencies: - "@commitlint/types": 18.6.1 + '@commitlint/types': 19.0.3 ajv: 8.12.0 dev: true - /@commitlint/ensure@18.6.1: - resolution: - { - integrity: sha512-BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ==, - } - engines: { node: ">=v18" } + /@commitlint/ensure@19.0.3: + resolution: {integrity: sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==} + engines: {node: '>=v18'} dependencies: - "@commitlint/types": 18.6.1 + '@commitlint/types': 19.0.3 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -503,168 +427,126 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule@18.6.1: - resolution: - { - integrity: sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg==, - } - engines: { node: ">=v18" } + /@commitlint/execute-rule@19.0.0: + resolution: {integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==} + engines: {node: '>=v18'} dev: true - /@commitlint/format@18.6.1: - resolution: - { - integrity: sha512-K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg==, - } - engines: { node: ">=v18" } + /@commitlint/format@19.0.3: + resolution: {integrity: sha512-QjjyGyoiVWzx1f5xOteKHNLFyhyweVifMgopozSgx1fGNrGV8+wp7k6n1t6StHdJ6maQJ+UUtO2TcEiBFRyR6Q==} + engines: {node: '>=v18'} dependencies: - "@commitlint/types": 18.6.1 - chalk: 4.1.2 + '@commitlint/types': 19.0.3 + chalk: 5.3.0 dev: true - /@commitlint/is-ignored@18.6.1: - resolution: - { - integrity: sha512-MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA==, - } - engines: { node: ">=v18" } + /@commitlint/is-ignored@19.0.3: + resolution: {integrity: sha512-MqDrxJaRSVSzCbPsV6iOKG/Lt52Y+PVwFVexqImmYYFhe51iVJjK2hRhOG2jUAGiUHk4jpdFr0cZPzcBkSzXDQ==} + engines: {node: '>=v18'} dependencies: - "@commitlint/types": 18.6.1 + '@commitlint/types': 19.0.3 semver: 7.6.0 dev: true - /@commitlint/lint@18.6.1: - resolution: - { - integrity: sha512-8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ==, - } - engines: { node: ">=v18" } + /@commitlint/lint@19.0.3: + resolution: {integrity: sha512-uHPyRqIn57iIplYa5xBr6oNu5aPXKGC4WLeuHfqQHclwIqbJ33g3yA5fIA+/NYnp5ZM2EFiujqHFaVUYj6HlKA==} + engines: {node: '>=v18'} dependencies: - "@commitlint/is-ignored": 18.6.1 - "@commitlint/parse": 18.6.1 - "@commitlint/rules": 18.6.1 - "@commitlint/types": 18.6.1 + '@commitlint/is-ignored': 19.0.3 + '@commitlint/parse': 19.0.3 + '@commitlint/rules': 19.0.3 + '@commitlint/types': 19.0.3 dev: true - /@commitlint/load@18.6.1(@types/node@20.11.19)(typescript@5.3.3): - resolution: - { - integrity: sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA==, - } - engines: { node: ">=v18" } + /@commitlint/load@19.0.3(@types/node@20.11.24)(typescript@5.3.3): + resolution: {integrity: sha512-18Tk/ZcDFRKIoKfEcl7kC+bYkEQ055iyKmGsYDoYWpKf6FUvBrP9bIWapuy/MB+kYiltmP9ITiUx6UXtqC9IRw==} + engines: {node: '>=v18'} dependencies: - "@commitlint/config-validator": 18.6.1 - "@commitlint/execute-rule": 18.6.1 - "@commitlint/resolve-extends": 18.6.1 - "@commitlint/types": 18.6.1 - chalk: 4.1.2 + '@commitlint/config-validator': 19.0.3 + '@commitlint/execute-rule': 19.0.0 + '@commitlint/resolve-extends': 19.0.3 + '@commitlint/types': 19.0.3 + chalk: 5.3.0 cosmiconfig: 8.3.6(typescript@5.3.3) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.19)(cosmiconfig@8.3.6)(typescript@5.3.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.24)(cosmiconfig@8.3.6)(typescript@5.3.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 - resolve-from: 5.0.0 transitivePeerDependencies: - - "@types/node" + - '@types/node' - typescript dev: true - /@commitlint/message@18.6.1: - resolution: - { - integrity: sha512-VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw==, - } - engines: { node: ">=v18" } + /@commitlint/message@19.0.0: + resolution: {integrity: sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==} + engines: {node: '>=v18'} dev: true - /@commitlint/parse@18.6.1: - resolution: - { - integrity: sha512-eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ==, - } - engines: { node: ">=v18" } + /@commitlint/parse@19.0.3: + resolution: {integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==} + engines: {node: '>=v18'} dependencies: - "@commitlint/types": 18.6.1 + '@commitlint/types': 19.0.3 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 dev: true - /@commitlint/read@18.6.1: - resolution: - { - integrity: sha512-ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w==, - } - engines: { node: ">=v18" } + /@commitlint/read@19.0.3: + resolution: {integrity: sha512-b5AflTyAXkUx5qKw4TkjjcOccXZHql3JqMi522knTQktq2AubKXFz60Sws+K4FsefwPws6fGz9mqiI/NvsvxFA==} + engines: {node: '>=v18'} dependencies: - "@commitlint/top-level": 18.6.1 - "@commitlint/types": 18.6.1 - git-raw-commits: 2.0.11 + '@commitlint/top-level': 19.0.0 + '@commitlint/types': 19.0.3 + git-raw-commits: 4.0.0 minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@18.6.1: - resolution: - { - integrity: sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ==, - } - engines: { node: ">=v18" } + /@commitlint/resolve-extends@19.0.3: + resolution: {integrity: sha512-18BKmta8OC8+Ub+Q3QGM9l27VjQaXobloVXOrMvu8CpEwJYv62vC/t7Ka5kJnsW0tU9q1eMqJFZ/nN9T/cOaIA==} + engines: {node: '>=v18'} dependencies: - "@commitlint/config-validator": 18.6.1 - "@commitlint/types": 18.6.1 - import-fresh: 3.3.0 + '@commitlint/config-validator': 19.0.3 + '@commitlint/types': 19.0.3 + global-directory: 4.0.1 + import-meta-resolve: 4.0.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 - resolve-global: 1.0.0 dev: true - /@commitlint/rules@18.6.1: - resolution: - { - integrity: sha512-kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew==, - } - engines: { node: ">=v18" } + /@commitlint/rules@19.0.3: + resolution: {integrity: sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==} + engines: {node: '>=v18'} dependencies: - "@commitlint/ensure": 18.6.1 - "@commitlint/message": 18.6.1 - "@commitlint/to-lines": 18.6.1 - "@commitlint/types": 18.6.1 - execa: 5.1.1 + '@commitlint/ensure': 19.0.3 + '@commitlint/message': 19.0.0 + '@commitlint/to-lines': 19.0.0 + '@commitlint/types': 19.0.3 + execa: 8.0.1 dev: true - /@commitlint/to-lines@18.6.1: - resolution: - { - integrity: sha512-Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q==, - } - engines: { node: ">=v18" } + /@commitlint/to-lines@19.0.0: + resolution: {integrity: sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==} + engines: {node: '>=v18'} dev: true - /@commitlint/top-level@18.6.1: - resolution: - { - integrity: sha512-HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw==, - } - engines: { node: ">=v18" } + /@commitlint/top-level@19.0.0: + resolution: {integrity: sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==} + engines: {node: '>=v18'} dependencies: - find-up: 5.0.0 + find-up: 7.0.0 dev: true - /@commitlint/types@18.6.1: - resolution: - { - integrity: sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg==, - } - engines: { node: ">=v18" } + /@commitlint/types@19.0.3: + resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==} + engines: {node: '>=v18'} dependencies: - chalk: 4.1.2 + '@types/conventional-commits-parser': 5.0.0 + chalk: 5.3.0 dev: true /@esbuild/android-arm64@0.18.12: - resolution: - { - integrity: sha512-BMAlczRqC/LUt2P97E4apTBbkvS9JTJnp2DKFbCwpZ8vBvXVbNdqmvzW/OsdtI/+mGr+apkkpqGM8WecLkPgrA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-BMAlczRqC/LUt2P97E4apTBbkvS9JTJnp2DKFbCwpZ8vBvXVbNdqmvzW/OsdtI/+mGr+apkkpqGM8WecLkPgrA==} + engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true @@ -672,11 +554,8 @@ packages: optional: true /@esbuild/android-arm@0.18.12: - resolution: - { - integrity: sha512-LIxaNIQfkFZbTLb4+cX7dozHlAbAshhFE5PKdro0l+FnCpx1GDJaQ2WMcqm+ToXKMt8p8Uojk/MFRuGyz3V5Sw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-LIxaNIQfkFZbTLb4+cX7dozHlAbAshhFE5PKdro0l+FnCpx1GDJaQ2WMcqm+ToXKMt8p8Uojk/MFRuGyz3V5Sw==} + engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true @@ -684,11 +563,8 @@ packages: optional: true /@esbuild/android-x64@0.18.12: - resolution: - { - integrity: sha512-zU5MyluNsykf5cOJ0LZZZjgAHbhPJ1cWfdH1ZXVMXxVMhEV0VZiZXQdwBBVvmvbF28EizeK7obG9fs+fpmS0eQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-zU5MyluNsykf5cOJ0LZZZjgAHbhPJ1cWfdH1ZXVMXxVMhEV0VZiZXQdwBBVvmvbF28EizeK7obG9fs+fpmS0eQ==} + engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true @@ -696,11 +572,8 @@ packages: optional: true /@esbuild/darwin-arm64@0.18.12: - resolution: - { - integrity: sha512-zUZMep7YONnp6954QOOwEBwFX9svlKd3ov6PkxKd53LGTHsp/gy7vHaPGhhjBmEpqXEXShi6dddjIkmd+NgMsA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-zUZMep7YONnp6954QOOwEBwFX9svlKd3ov6PkxKd53LGTHsp/gy7vHaPGhhjBmEpqXEXShi6dddjIkmd+NgMsA==} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true @@ -708,11 +581,8 @@ packages: optional: true /@esbuild/darwin-x64@0.18.12: - resolution: - { - integrity: sha512-ohqLPc7i67yunArPj1+/FeeJ7AgwAjHqKZ512ADk3WsE3FHU9l+m5aa7NdxXr0HmN1bjDlUslBjWNbFlD9y12Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ohqLPc7i67yunArPj1+/FeeJ7AgwAjHqKZ512ADk3WsE3FHU9l+m5aa7NdxXr0HmN1bjDlUslBjWNbFlD9y12Q==} + engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true @@ -720,11 +590,8 @@ packages: optional: true /@esbuild/freebsd-arm64@0.18.12: - resolution: - { - integrity: sha512-GIIHtQXqgeOOqdG16a/A9N28GpkvjJnjYMhOnXVbn3EDJcoItdR58v/pGN31CHjyXDc8uCcRnFWmqaJt24AYJg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-GIIHtQXqgeOOqdG16a/A9N28GpkvjJnjYMhOnXVbn3EDJcoItdR58v/pGN31CHjyXDc8uCcRnFWmqaJt24AYJg==} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true @@ -732,11 +599,8 @@ packages: optional: true /@esbuild/freebsd-x64@0.18.12: - resolution: - { - integrity: sha512-zK0b9a1/0wZY+6FdOS3BpZcPc1kcx2G5yxxfEJtEUzVxI6n/FrC2Phsxj/YblPuBchhBZ/1wwn7AyEBUyNSa6g==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-zK0b9a1/0wZY+6FdOS3BpZcPc1kcx2G5yxxfEJtEUzVxI6n/FrC2Phsxj/YblPuBchhBZ/1wwn7AyEBUyNSa6g==} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true @@ -744,11 +608,8 @@ packages: optional: true /@esbuild/linux-arm64@0.18.12: - resolution: - { - integrity: sha512-JKgG8Q/LL/9sw/iHHxQyVMoQYu3rU3+a5Z87DxC+wAu3engz+EmctIrV+FGOgI6gWG1z1+5nDDbXiRMGQZXqiw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-JKgG8Q/LL/9sw/iHHxQyVMoQYu3rU3+a5Z87DxC+wAu3engz+EmctIrV+FGOgI6gWG1z1+5nDDbXiRMGQZXqiw==} + engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true @@ -756,11 +617,8 @@ packages: optional: true /@esbuild/linux-arm@0.18.12: - resolution: - { - integrity: sha512-y75OijvrBE/1XRrXq1jtrJfG26eHeMoqLJ2dwQNwviwTuTtHGCojsDO6BJNF8gU+3jTn1KzJEMETytwsFSvc+Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-y75OijvrBE/1XRrXq1jtrJfG26eHeMoqLJ2dwQNwviwTuTtHGCojsDO6BJNF8gU+3jTn1KzJEMETytwsFSvc+Q==} + engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true @@ -768,11 +626,8 @@ packages: optional: true /@esbuild/linux-ia32@0.18.12: - resolution: - { - integrity: sha512-yoRIAqc0B4lDIAAEFEIu9ttTRFV84iuAl0KNCN6MhKLxNPfzwCBvEMgwco2f71GxmpBcTtn7KdErueZaM2rEvw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-yoRIAqc0B4lDIAAEFEIu9ttTRFV84iuAl0KNCN6MhKLxNPfzwCBvEMgwco2f71GxmpBcTtn7KdErueZaM2rEvw==} + engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true @@ -780,11 +635,8 @@ packages: optional: true /@esbuild/linux-loong64@0.18.12: - resolution: - { - integrity: sha512-qYgt3dHPVvf/MgbIBpJ4Sup/yb9DAopZ3a2JgMpNKIHUpOdnJ2eHBo/aQdnd8dJ21X/+sS58wxHtA9lEazYtXQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-qYgt3dHPVvf/MgbIBpJ4Sup/yb9DAopZ3a2JgMpNKIHUpOdnJ2eHBo/aQdnd8dJ21X/+sS58wxHtA9lEazYtXQ==} + engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true @@ -792,11 +644,8 @@ packages: optional: true /@esbuild/linux-mips64el@0.18.12: - resolution: - { - integrity: sha512-wHphlMLK4ufNOONqukELfVIbnGQJrHJ/mxZMMrP2jYrPgCRZhOtf0kC4yAXBwnfmULimV1qt5UJJOw4Kh13Yfg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-wHphlMLK4ufNOONqukELfVIbnGQJrHJ/mxZMMrP2jYrPgCRZhOtf0kC4yAXBwnfmULimV1qt5UJJOw4Kh13Yfg==} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true @@ -804,11 +653,8 @@ packages: optional: true /@esbuild/linux-ppc64@0.18.12: - resolution: - { - integrity: sha512-TeN//1Ft20ZZW41+zDSdOI/Os1bEq5dbvBvYkberB7PHABbRcsteeoNVZFlI0YLpGdlBqohEpjrn06kv8heCJg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-TeN//1Ft20ZZW41+zDSdOI/Os1bEq5dbvBvYkberB7PHABbRcsteeoNVZFlI0YLpGdlBqohEpjrn06kv8heCJg==} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true @@ -816,11 +662,8 @@ packages: optional: true /@esbuild/linux-riscv64@0.18.12: - resolution: - { - integrity: sha512-AgUebVS4DoAblBgiB2ACQ/8l4eGE5aWBb8ZXtkXHiET9mbj7GuWt3OnsIW/zX+XHJt2RYJZctbQ2S/mDjbp0UA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-AgUebVS4DoAblBgiB2ACQ/8l4eGE5aWBb8ZXtkXHiET9mbj7GuWt3OnsIW/zX+XHJt2RYJZctbQ2S/mDjbp0UA==} + engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true @@ -828,11 +671,8 @@ packages: optional: true /@esbuild/linux-s390x@0.18.12: - resolution: - { - integrity: sha512-dJ3Rb3Ei2u/ysSXd6pzleGtfDdc2MuzKt8qc6ls8vreP1G3B7HInX3i7gXS4BGeVd24pp0yqyS7bJ5NHaI9ing==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-dJ3Rb3Ei2u/ysSXd6pzleGtfDdc2MuzKt8qc6ls8vreP1G3B7HInX3i7gXS4BGeVd24pp0yqyS7bJ5NHaI9ing==} + engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true @@ -840,11 +680,8 @@ packages: optional: true /@esbuild/linux-x64@0.18.12: - resolution: - { - integrity: sha512-OrNJMGQbPaVyHHcDF8ybNSwu7TDOfX8NGpXCbetwOSP6txOJiWlgQnRymfC9ocR1S0Y5PW0Wb1mV6pUddqmvmQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-OrNJMGQbPaVyHHcDF8ybNSwu7TDOfX8NGpXCbetwOSP6txOJiWlgQnRymfC9ocR1S0Y5PW0Wb1mV6pUddqmvmQ==} + engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true @@ -852,11 +689,8 @@ packages: optional: true /@esbuild/netbsd-x64@0.18.12: - resolution: - { - integrity: sha512-55FzVCAiwE9FK8wWeCRuvjazNRJ1QqLCYGZVB6E8RuQuTeStSwotpSW4xoRGwp3a1wUsaVCdYcj5LGCASVJmMg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-55FzVCAiwE9FK8wWeCRuvjazNRJ1QqLCYGZVB6E8RuQuTeStSwotpSW4xoRGwp3a1wUsaVCdYcj5LGCASVJmMg==} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true @@ -864,11 +698,8 @@ packages: optional: true /@esbuild/openbsd-x64@0.18.12: - resolution: - { - integrity: sha512-qnluf8rfb6Y5Lw2tirfK2quZOBbVqmwxut7GPCIJsM8lc4AEUj9L8y0YPdLaPK0TECt4IdyBdBD/KRFKorlK3g==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-qnluf8rfb6Y5Lw2tirfK2quZOBbVqmwxut7GPCIJsM8lc4AEUj9L8y0YPdLaPK0TECt4IdyBdBD/KRFKorlK3g==} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true @@ -876,11 +707,8 @@ packages: optional: true /@esbuild/sunos-x64@0.18.12: - resolution: - { - integrity: sha512-+RkKpVQR7bICjTOPUpkTBTaJ4TFqQBX5Ywyd/HSdDkQGn65VPkTsR/pL4AMvuMWy+wnXgIl4EY6q4mVpJal8Kg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-+RkKpVQR7bICjTOPUpkTBTaJ4TFqQBX5Ywyd/HSdDkQGn65VPkTsR/pL4AMvuMWy+wnXgIl4EY6q4mVpJal8Kg==} + engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true @@ -888,11 +716,8 @@ packages: optional: true /@esbuild/win32-arm64@0.18.12: - resolution: - { - integrity: sha512-GNHuciv0mFM7ouzsU0+AwY+7eV4Mgo5WnbhfDCQGtpvOtD1vbOiRjPYG6dhmMoFyBjj+pNqQu2X+7DKn0KQ/Gw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-GNHuciv0mFM7ouzsU0+AwY+7eV4Mgo5WnbhfDCQGtpvOtD1vbOiRjPYG6dhmMoFyBjj+pNqQu2X+7DKn0KQ/Gw==} + engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true @@ -900,11 +725,8 @@ packages: optional: true /@esbuild/win32-ia32@0.18.12: - resolution: - { - integrity: sha512-kR8cezhYipbbypGkaqCTWIeu4zID17gamC8YTPXYtcN3E5BhhtTnwKBn9I0PJur/T6UVwIEGYzkffNL0lFvxEw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-kR8cezhYipbbypGkaqCTWIeu4zID17gamC8YTPXYtcN3E5BhhtTnwKBn9I0PJur/T6UVwIEGYzkffNL0lFvxEw==} + engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true @@ -912,11 +734,8 @@ packages: optional: true /@esbuild/win32-x64@0.18.12: - resolution: - { - integrity: sha512-O0UYQVkvfM/jO8a4OwoV0mAKSJw+mjWTAd1MJd/1FCX6uiMdLmMRPK/w6e9OQ0ob2WGxzIm9va/KG0Ja4zIOgg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-O0UYQVkvfM/jO8a4OwoV0mAKSJw+mjWTAd1MJd/1FCX6uiMdLmMRPK/w6e9OQ0ob2WGxzIm9va/KG0Ja4zIOgg==} + engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true @@ -924,36 +743,24 @@ packages: optional: true /@floating-ui/core@1.3.1: - resolution: - { - integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==, - } + resolution: {integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==} dev: false /@floating-ui/dom@1.4.5: - resolution: - { - integrity: sha512-96KnRWkRnuBSSFbj0sFGwwOUd8EkiecINVl0O9wiZlZ64EkpyAOG3Xc2vKKNJmru0Z7RqWNymA+6b8OZqjgyyw==, - } + resolution: {integrity: sha512-96KnRWkRnuBSSFbj0sFGwwOUd8EkiecINVl0O9wiZlZ64EkpyAOG3Xc2vKKNJmru0Z7RqWNymA+6b8OZqjgyyw==} dependencies: - "@floating-ui/core": 1.3.1 + '@floating-ui/core': 1.3.1 dev: false /@internationalized/number@3.2.1: - resolution: - { - integrity: sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==, - } + resolution: {integrity: sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==} dependencies: - "@swc/helpers": 0.5.1 + '@swc/helpers': 0.5.1 dev: false /@isaacs/cliui@8.0.2: - resolution: - { - integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} dependencies: string-width: 5.1.2 string-width-cjs: /string-width@4.2.3 @@ -963,61 +770,43 @@ packages: wrap-ansi-cjs: /wrap-ansi@7.0.0 /@lit-labs/observers@2.0.0: - resolution: - { - integrity: sha512-NMbCjJEqp8V9TpTtt8HhzFVymx/WGpTD7iU+FMKSis4u3iBWwu2UYh6KChwFTEPW9xMum70r2IBnaViBINaGTA==, - } + resolution: {integrity: sha512-NMbCjJEqp8V9TpTtt8HhzFVymx/WGpTD7iU+FMKSis4u3iBWwu2UYh6KChwFTEPW9xMum70r2IBnaViBINaGTA==} dependencies: - "@lit/reactive-element": 1.6.2 + '@lit/reactive-element': 1.6.2 dev: false /@lit-labs/ssr-dom-shim@1.1.1: - resolution: - { - integrity: sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==, - } + resolution: {integrity: sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==} dev: false /@lit/reactive-element@1.6.2: - resolution: - { - integrity: sha512-rDfl+QnCYjuIGf5xI2sVJWdYIi56CTCwWa+nidKYX6oIuBYwUbT/vX4qbUDlHiZKJ/3FRNQ/tWJui44p6/stSA==, - } + resolution: {integrity: sha512-rDfl+QnCYjuIGf5xI2sVJWdYIi56CTCwWa+nidKYX6oIuBYwUbT/vX4qbUDlHiZKJ/3FRNQ/tWJui44p6/stSA==} dependencies: - "@lit-labs/ssr-dom-shim": 1.1.1 + '@lit-labs/ssr-dom-shim': 1.1.1 dev: false /@manypkg/find-root@1.1.0: - resolution: - { - integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, - } + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - "@babel/runtime": 7.23.9 - "@types/node": 12.20.55 + '@babel/runtime': 7.24.0 + '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 dev: true /@manypkg/get-packages@1.1.3: - resolution: - { - integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, - } - dependencies: - "@babel/runtime": 7.23.9 - "@changesets/types": 4.1.0 - "@manypkg/find-root": 1.1.0 + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + dependencies: + '@babel/runtime': 7.24.0 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 dev: true /@mapbox/node-pre-gyp@1.0.11: - resolution: - { - integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==, - } + resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==} hasBin: true dependencies: detect-libc: 2.0.2 @@ -1034,96 +823,72 @@ packages: - supports-color dev: true - /@moonrepo/cli@1.21.3: - resolution: - { - integrity: sha512-fWlm35VN4auYP26d2XafXwY7p7GDFvWqoVI5oX2c+TisP+a/34d6oqWraRckZXsnptx60zEzAGna4S9pknvR7Q==, - } + /@moonrepo/cli@1.22.2: + resolution: {integrity: sha512-xZ+bFuVDcH52tlSDYn/2Ez6/avT2XbeeJ8sXaGe0Zhk07gh32lNzpZGtoS5aT94ME7abJlltfKEIdNFDbTRtPA==} hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.21.3 - "@moonrepo/core-linux-arm64-musl": 1.21.3 - "@moonrepo/core-linux-x64-gnu": 1.21.3 - "@moonrepo/core-linux-x64-musl": 1.21.3 - "@moonrepo/core-macos-arm64": 1.21.3 - "@moonrepo/core-macos-x64": 1.21.3 - "@moonrepo/core-windows-x64-msvc": 1.21.3 - dev: true - - /@moonrepo/core-linux-arm64-gnu@1.21.3: - resolution: - { - integrity: sha512-SRxDxj7L5lKKG3C8YVddn3wer+cBuyt6pFw1PkahUPS/E71KJ48v6MHIxOtmK/3Q7B+tcKnMGinKAqpIavTlug==, - } + '@moonrepo/core-linux-arm64-gnu': 1.22.2 + '@moonrepo/core-linux-arm64-musl': 1.22.2 + '@moonrepo/core-linux-x64-gnu': 1.22.2 + '@moonrepo/core-linux-x64-musl': 1.22.2 + '@moonrepo/core-macos-arm64': 1.22.2 + '@moonrepo/core-macos-x64': 1.22.2 + '@moonrepo/core-windows-x64-msvc': 1.22.2 + dev: true + + /@moonrepo/core-linux-arm64-gnu@1.22.2: + resolution: {integrity: sha512-Qp9ZVcN0nQ6wpN2vNxURDQdLk+2pSo7KUQbKTuExH+GuoApY/aReAw7ZRwKuIM3pJq5WfaiNYz76LhXtlX3rhw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.21.3: - resolution: - { - integrity: sha512-yoWtSeuFxVYOlAfGm66rV/VOsvw/4KgA4hvEJlH3aQ8toBfxU7Ail2Gzd43wfooZY8DAUOBIu1csXEMrMK4YuA==, - } + /@moonrepo/core-linux-arm64-musl@1.22.2: + resolution: {integrity: sha512-P0My0v0kMU2byLOcuLYoHVrA52TS+zIfSUJrG0PFy4xO6K5dzGrXNRPrP3/0RC9WhFCWeD3F9sFU2PCV/V48bg==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.21.3: - resolution: - { - integrity: sha512-Ez3NIM+U++mHosJLLjSi6z+vbXA2IXS6tF4pIExo22ituIbqMjszuKUmx4QXObSypcokEu8iPVO0o2Qcw2ThQA==, - } + /@moonrepo/core-linux-x64-gnu@1.22.2: + resolution: {integrity: sha512-A5xJ7oeygo2O7I/ZFxbSOZ520D1JAW0pG2x09pk4DHXWK1dxX4llzqp/TbHZfwxB+UvNxhl9/9VeGWe2DwWMsQ==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.21.3: - resolution: - { - integrity: sha512-cHFgRkjEJNTGmxjsJZxRQLTGm1NjssB8l23IKL7ZI4CIa0ZcY1RLlHLawOal9bfrAFcZniRB7vakIIEbRuTfhg==, - } + /@moonrepo/core-linux-x64-musl@1.22.2: + resolution: {integrity: sha512-We5ttPaPRTkLifTPc5dY9L5CTgh5x4i10Ti3cZHjXw0G9cu24dqygmU8JYqF2mUljQLS65dKC4dyyMv9ajwisA==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@moonrepo/core-macos-arm64@1.21.3: - resolution: - { - integrity: sha512-POSMs8x+gg4yTRFVmW5Bemad0kjJRbtD+2f+rwawqlnUzpLwmxf2ub7HJCUpx/IP0whjY1EwPOmNFOt5od9lAw==, - } + /@moonrepo/core-macos-arm64@1.22.2: + resolution: {integrity: sha512-uWOm9TPDP7dtPtNq6n7mQgCn+feb0U7zFLKGbHNwKVi9e2PWJnN8vDUkH9LRthphVs1Qj4XnTixfDBSDybzNJw==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@moonrepo/core-macos-x64@1.21.3: - resolution: - { - integrity: sha512-TqZjLZgQrHsTKJ/Wq3n575HsD47HrJXnLFv+tSogqgxAfA8AqRTXvX0/Z7kj9bEGO6IclMiw+53MX8ixj0QIjQ==, - } + /@moonrepo/core-macos-x64@1.22.2: + resolution: {integrity: sha512-LGK2ufbfq9JWTe2pgBw05hg2WuT2uAsfk1kFyqCMl2Zi69fV0slw5GQMX4pHNHnO8Tuw/G9WwK/oV2B6qEPmqw==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.21.3: - resolution: - { - integrity: sha512-XAVsBr/afALJ19Ga6CYXaAg2y9E+uhOGJ7785B6GuWuNLlvfv5aLGgjsKj54siFIRXatMa1+232/1rQzMkiXxQ==, - } + /@moonrepo/core-windows-x64-msvc@1.22.2: + resolution: {integrity: sha512-9vrZDtoX4COdYxHR1NK26WWToXfh9SRpud3HXiAdPqwabfhGD5owUVO5CcUaYj3nYxdZyNxtxoNIcQlRtsXS7g==} cpu: [x64] os: [win32] requiresBuild: true @@ -1131,18 +896,12 @@ packages: optional: true /@next/env@13.4.10: - resolution: - { - integrity: sha512-3G1yD/XKTSLdihyDSa8JEsaWOELY+OWe08o0LUYzfuHp1zHDA8SObQlzKt+v+wrkkPcnPweoLH1ImZeUa0A1NQ==, - } + resolution: {integrity: sha512-3G1yD/XKTSLdihyDSa8JEsaWOELY+OWe08o0LUYzfuHp1zHDA8SObQlzKt+v+wrkkPcnPweoLH1ImZeUa0A1NQ==} dev: false /@next/swc-darwin-arm64@13.4.10: - resolution: - { - integrity: sha512-4bsdfKmmg7mgFGph0UorD1xWfZ5jZEw4kKRHYEeTK9bT1QnMbPVPlVXQRIiFPrhoDQnZUoa6duuPUJIEGLV1Jg==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-4bsdfKmmg7mgFGph0UorD1xWfZ5jZEw4kKRHYEeTK9bT1QnMbPVPlVXQRIiFPrhoDQnZUoa6duuPUJIEGLV1Jg==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] requiresBuild: true @@ -1150,11 +909,8 @@ packages: optional: true /@next/swc-darwin-x64@13.4.10: - resolution: - { - integrity: sha512-ngXhUBbcZIWZWqNbQSNxQrB9T1V+wgfCzAor2olYuo/YpaL6mUYNUEgeBMhr8qwV0ARSgKaOp35lRvB7EmCRBg==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-ngXhUBbcZIWZWqNbQSNxQrB9T1V+wgfCzAor2olYuo/YpaL6mUYNUEgeBMhr8qwV0ARSgKaOp35lRvB7EmCRBg==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] requiresBuild: true @@ -1162,11 +918,8 @@ packages: optional: true /@next/swc-linux-arm64-gnu@13.4.10: - resolution: - { - integrity: sha512-SjCZZCOmHD4uyM75MVArSAmF5Y+IJSGroPRj2v9/jnBT36SYFTORN8Ag/lhw81W9EeexKY/CUg2e9mdebZOwsg==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-SjCZZCOmHD4uyM75MVArSAmF5Y+IJSGroPRj2v9/jnBT36SYFTORN8Ag/lhw81W9EeexKY/CUg2e9mdebZOwsg==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true @@ -1174,11 +927,8 @@ packages: optional: true /@next/swc-linux-arm64-musl@13.4.10: - resolution: - { - integrity: sha512-F+VlcWijX5qteoYIOxNiBbNE8ruaWuRlcYyIRK10CugqI/BIeCDzEDyrHIHY8AWwbkTwe6GRHabMdE688Rqq4Q==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-F+VlcWijX5qteoYIOxNiBbNE8ruaWuRlcYyIRK10CugqI/BIeCDzEDyrHIHY8AWwbkTwe6GRHabMdE688Rqq4Q==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true @@ -1186,11 +936,8 @@ packages: optional: true /@next/swc-linux-x64-gnu@13.4.10: - resolution: - { - integrity: sha512-WDv1YtAV07nhfy3i1visr5p/tjiH6CeXp4wX78lzP1jI07t4PnHHG1WEDFOduXh3WT4hG6yN82EQBQHDi7hBrQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-WDv1YtAV07nhfy3i1visr5p/tjiH6CeXp4wX78lzP1jI07t4PnHHG1WEDFOduXh3WT4hG6yN82EQBQHDi7hBrQ==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true @@ -1198,11 +945,8 @@ packages: optional: true /@next/swc-linux-x64-musl@13.4.10: - resolution: - { - integrity: sha512-zFkzqc737xr6qoBgDa3AwC7jPQzGLjDlkNmt/ljvQJ/Veri5ECdHjZCUuiTUfVjshNIIpki6FuP0RaQYK9iCRg==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-zFkzqc737xr6qoBgDa3AwC7jPQzGLjDlkNmt/ljvQJ/Veri5ECdHjZCUuiTUfVjshNIIpki6FuP0RaQYK9iCRg==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true @@ -1210,11 +954,8 @@ packages: optional: true /@next/swc-win32-arm64-msvc@13.4.10: - resolution: - { - integrity: sha512-IboRS8IWz5mWfnjAdCekkl8s0B7ijpWeDwK2O8CdgZkoCDY0ZQHBSGiJ2KViAG6+BJVfLvcP+a2fh6cdyBr9QQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-IboRS8IWz5mWfnjAdCekkl8s0B7ijpWeDwK2O8CdgZkoCDY0ZQHBSGiJ2KViAG6+BJVfLvcP+a2fh6cdyBr9QQ==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] requiresBuild: true @@ -1222,11 +963,8 @@ packages: optional: true /@next/swc-win32-ia32-msvc@13.4.10: - resolution: - { - integrity: sha512-bSA+4j8jY4EEiwD/M2bol4uVEu1lBlgsGdvM+mmBm/BbqofNBfaZ2qwSbwE2OwbAmzNdVJRFRXQZ0dkjopTRaQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-bSA+4j8jY4EEiwD/M2bol4uVEu1lBlgsGdvM+mmBm/BbqofNBfaZ2qwSbwE2OwbAmzNdVJRFRXQZ0dkjopTRaQ==} + engines: {node: '>= 10'} cpu: [ia32] os: [win32] requiresBuild: true @@ -1234,11 +972,8 @@ packages: optional: true /@next/swc-win32-x64-msvc@13.4.10: - resolution: - { - integrity: sha512-g2+tU63yTWmcVQKDGY0MV1PjjqgZtwM4rB1oVVi/v0brdZAcrcTV+04agKzWtvWroyFz6IqtT0MoZJA7PNyLVw==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-g2+tU63yTWmcVQKDGY0MV1PjjqgZtwM4rB1oVVi/v0brdZAcrcTV+04agKzWtvWroyFz6IqtT0MoZJA7PNyLVw==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] requiresBuild: true @@ -1246,496 +981,364 @@ packages: optional: true /@nodelib/fs.scandir@2.1.5: - resolution: - { - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} dependencies: - "@nodelib/fs.stat": 2.0.5 + '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 dev: true /@nodelib/fs.stat@2.0.5: - resolution: - { - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} dev: true /@nodelib/fs.walk@1.2.8: - resolution: - { - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} dependencies: - "@nodelib/fs.scandir": 2.1.5 + '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 dev: true /@pkgjs/parseargs@0.11.0: - resolution: - { - integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} requiresBuild: true optional: true /@rollup/pluginutils@4.2.1: - resolution: - { - integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, - } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 dev: true - /@sindresorhus/merge-streams@2.2.1: - resolution: - { - integrity: sha512-255V7MMIKw6aQ43Wbqp9HZ+VHn6acddERTLiiLnlcPLU9PdTq9Aijl12oklAgUEblLWye+vHLzmqBx6f2TGcZw==, - } - engines: { node: ">=18" } + /@sindresorhus/merge-streams@2.3.0: + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} dev: true - /@spectrum-css/icon@6.0.2(@spectrum-css/tokens@11.0.0): - resolution: - { - integrity: sha512-n+oUEYVa7v3tW/XJgQZy5t9E/AmiXDpnfzGZvzkcb60mQOVhHTH9E7MS8+Iwgna9E7SfKUeb/P5o82LgFySamA==, - } + /@spectrum-css/icon@6.0.4(@spectrum-css/tokens@11.0.0): + resolution: {integrity: sha512-JDU9y1pEbUsNnJe6CyxCrxoklGQeECG5kmXu22ixPpzYwQBYQANV/AdoH77GD+bNbJZunyVjJVdySmaeNQkTiw==} peerDependencies: - "@spectrum-css/tokens": ">=13.1" + '@spectrum-css/tokens': '>=13.1' dependencies: - "@spectrum-css/tokens": 11.0.0 + '@spectrum-css/tokens': 11.0.0 dev: false /@spectrum-css/page@5.0.31: - resolution: - { - integrity: sha512-F61w7EmFZ5VVTk6AuvfFGNbviqM+I0GkvOPgZXfWP+gL5beWzbd+ecsMKoFpeDwlH3ai87r4jg1fuI4LhvJFJA==, - } + resolution: {integrity: sha512-F61w7EmFZ5VVTk6AuvfFGNbviqM+I0GkvOPgZXfWP+gL5beWzbd+ecsMKoFpeDwlH3ai87r4jg1fuI4LhvJFJA==} dependencies: - "@spectrum-css/vars": 9.0.8 + '@spectrum-css/vars': 9.0.8 dev: false - /@spectrum-css/table@4.0.60(@spectrum-css/icon@6.0.2)(@spectrum-css/vars@9.0.8): - resolution: - { - integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==, - } + /@spectrum-css/table@4.0.60(@spectrum-css/icon@6.0.4)(@spectrum-css/vars@9.0.8): + resolution: {integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==} peerDependencies: - "@spectrum-css/icon": ">=3" - "@spectrum-css/vars": ">=9" + '@spectrum-css/icon': '>=3' + '@spectrum-css/vars': '>=9' dependencies: - "@spectrum-css/icon": 6.0.2(@spectrum-css/tokens@11.0.0) - "@spectrum-css/vars": 9.0.8 + '@spectrum-css/icon': 6.0.4(@spectrum-css/tokens@11.0.0) + '@spectrum-css/vars': 9.0.8 dev: false /@spectrum-css/tokens@11.0.0: - resolution: - { - integrity: sha512-C1PtYG3TRngneVbFxcd3Ksj8ZnnKuh1HZCSm+tHf1blx/8O44OQfHk2b36sOQMMDvysVXpaKU2LxttsEjrgSpw==, - } + resolution: {integrity: sha512-C1PtYG3TRngneVbFxcd3Ksj8ZnnKuh1HZCSm+tHf1blx/8O44OQfHk2b36sOQMMDvysVXpaKU2LxttsEjrgSpw==} dev: false /@spectrum-css/typography@5.0.27(@spectrum-css/tokens@11.0.0): - resolution: - { - integrity: sha512-olI3i90+TICneBPpa5bjvEuhzZCfbzZePFpJX4OIjJ9lVfW+B4PjFTnTzyYAWiWYwJrmTh1E51cvOeZb+S+5/g==, - } + resolution: {integrity: sha512-olI3i90+TICneBPpa5bjvEuhzZCfbzZePFpJX4OIjJ9lVfW+B4PjFTnTzyYAWiWYwJrmTh1E51cvOeZb+S+5/g==} peerDependencies: - "@spectrum-css/tokens": ">=9" + '@spectrum-css/tokens': '>=9' dependencies: - "@spectrum-css/tokens": 11.0.0 + '@spectrum-css/tokens': 11.0.0 dev: false /@spectrum-css/vars@9.0.8: - resolution: - { - integrity: sha512-rGfd7jqXOdR69bEjrRP58ynuIeJU0czPfwQvzhtCzg7jKVukV+efNHqrs086sC6xutB3W4TF71K/dZMr3oyTyg==, - } + resolution: {integrity: sha512-rGfd7jqXOdR69bEjrRP58ynuIeJU0czPfwQvzhtCzg7jKVukV+efNHqrs086sC6xutB3W4TF71K/dZMr3oyTyg==} dev: false /@spectrum-web-components/action-button@0.34.0: - resolution: - { - integrity: sha512-lqv3Uhgo+JW7Q2XpuKq086IcOMYnQ0A09bnBwPQQeTv5tz8dI807nj5HI2Bed/lHA60zOpM8ZN19tpMy3VmlcQ==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/button": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-ui": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 + resolution: {integrity: sha512-lqv3Uhgo+JW7Q2XpuKq086IcOMYnQ0A09bnBwPQQeTv5tz8dI807nj5HI2Bed/lHA60zOpM8ZN19tpMy3VmlcQ==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/button': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-ui': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 dev: false /@spectrum-web-components/base@0.34.0: - resolution: - { - integrity: sha512-/2J7BT0lKkGeFv4SE5vmGxUtBE9NBo7oa8M1nYTgahm6OL/wN6O5/7qZIY+H2iCTy9719bO/BUa+7A7N5wiLFg==, - } + resolution: {integrity: sha512-/2J7BT0lKkGeFv4SE5vmGxUtBE9NBo7oa8M1nYTgahm6OL/wN6O5/7qZIY+H2iCTy9719bO/BUa+7A7N5wiLFg==} dependencies: lit: 2.7.6 dev: false /@spectrum-web-components/button-group@0.34.0: - resolution: - { - integrity: sha512-4HYPW2Jl2cZ69PEjW4ldTFATiCkJ5PX+3y8S2K0wpbD+ISygVUU535+SwsKKZKic4oWamQX8PE8uPckaB/zZ6g==, - } + resolution: {integrity: sha512-4HYPW2Jl2cZ69PEjW4ldTFATiCkJ5PX+3y8S2K0wpbD+ISygVUU535+SwsKKZKic4oWamQX8PE8uPckaB/zZ6g==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/button": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/button': 0.34.0 dev: false /@spectrum-web-components/button@0.34.0: - resolution: - { - integrity: sha512-mUJMMCPxxQ2Xi05alJW6o9QTBWj92IJL42ZpSvgZrLULXEXBcDVmg7nd4mERbCRM5SZLGojOZ9PHZ7HEtjW5qg==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/clear-button": 0.34.0 - "@spectrum-web-components/close-button": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-ui": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 + resolution: {integrity: sha512-mUJMMCPxxQ2Xi05alJW6o9QTBWj92IJL42ZpSvgZrLULXEXBcDVmg7nd4mERbCRM5SZLGojOZ9PHZ7HEtjW5qg==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/clear-button': 0.34.0 + '@spectrum-web-components/close-button': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-ui': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 dev: false /@spectrum-web-components/checkbox@0.34.0: - resolution: - { - integrity: sha512-9dwhqWLXd3JB3rGr8PDPkQiLlFbzAQx/I4xdjTXHfJoZsFBx/iM4UvRcFG1SOVeK8mBFY2U88UclxeCiGN7zwA==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-ui": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 + resolution: {integrity: sha512-9dwhqWLXd3JB3rGr8PDPkQiLlFbzAQx/I4xdjTXHfJoZsFBx/iM4UvRcFG1SOVeK8mBFY2U88UclxeCiGN7zwA==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-ui': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 dev: false /@spectrum-web-components/clear-button@0.34.0: - resolution: - { - integrity: sha512-I4L8mO1m1K0D1vVn+/H3MPc3WeHLpZMBCFs91ZN7lm6/J7ia97LO26sTcHo/GXdv7QCCvPJBkhfEEyXBazie6w==, - } + resolution: {integrity: sha512-I4L8mO1m1K0D1vVn+/H3MPc3WeHLpZMBCFs91ZN7lm6/J7ia97LO26sTcHo/GXdv7QCCvPJBkhfEEyXBazie6w==} dependencies: - "@spectrum-web-components/base": 0.34.0 + '@spectrum-web-components/base': 0.34.0 dev: false /@spectrum-web-components/close-button@0.34.0: - resolution: - { - integrity: sha512-F6YP27raO0Fs8eespvzAdvaWB9TFeH0rMczt4hA8IzuMzCdB72ERGDw7LtNEHZa06uYW6Q2witT1qMBeVi7R0Q==, - } + resolution: {integrity: sha512-F6YP27raO0Fs8eespvzAdvaWB9TFeH0rMczt4hA8IzuMzCdB72ERGDw7LtNEHZa06uYW6Q2witT1qMBeVi7R0Q==} dependencies: - "@spectrum-web-components/base": 0.34.0 + '@spectrum-web-components/base': 0.34.0 dev: false /@spectrum-web-components/field-group@0.34.0: - resolution: - { - integrity: sha512-eUxypL6ofrJv7B3Tl4SV8tNQ71xyvkcuHYi3M744P1m64dkCfYN6igbpvuLJU76xlMpwO1wOpPPfOqykkQI3nA==, - } + resolution: {integrity: sha512-eUxypL6ofrJv7B3Tl4SV8tNQ71xyvkcuHYi3M744P1m64dkCfYN6igbpvuLJU76xlMpwO1wOpPPfOqykkQI3nA==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/help-text": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/help-text': 0.34.0 dev: false /@spectrum-web-components/field-label@0.34.0: - resolution: - { - integrity: sha512-+/ucuhXVJ0uVxPFKQGj7tBQ2TAJQvPF+zZ9elNLrG3oDsq55WxK54NfEqIuC/YLeNZLCGx9KMFivlIjMW+PhXA==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-ui": 0.34.0 - "@spectrum-web-components/reactive-controllers": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 + resolution: {integrity: sha512-+/ucuhXVJ0uVxPFKQGj7tBQ2TAJQvPF+zZ9elNLrG3oDsq55WxK54NfEqIuC/YLeNZLCGx9KMFivlIjMW+PhXA==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-ui': 0.34.0 + '@spectrum-web-components/reactive-controllers': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 dev: false /@spectrum-web-components/help-text@0.34.0: - resolution: - { - integrity: sha512-VsFBgae+6dKDJcdf6UNMr3/aFPsyaUmeBubIV92kS52nHKTi1dKlYWtnAcvxFY6n3iH4iOn943FVkImuXboRkQ==, - } + resolution: {integrity: sha512-VsFBgae+6dKDJcdf6UNMr3/aFPsyaUmeBubIV92kS52nHKTi1dKlYWtnAcvxFY6n3iH4iOn943FVkImuXboRkQ==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/icons-workflow": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/icons-workflow': 0.34.0 dev: false /@spectrum-web-components/icon@0.34.0: - resolution: - { - integrity: sha512-gASDbootZDmXYiRaqd1jlUoXapCI0U/s1ZNqaakAWm+vGoZB6T3b5eV2fUO0aHP8/UCAt+F07T1jTPo/ygaQMA==, - } + resolution: {integrity: sha512-gASDbootZDmXYiRaqd1jlUoXapCI0U/s1ZNqaakAWm+vGoZB6T3b5eV2fUO0aHP8/UCAt+F07T1jTPo/ygaQMA==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/iconset": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/iconset': 0.34.0 dev: false /@spectrum-web-components/icons-ui@0.34.0: - resolution: - { - integrity: sha512-zom55CdjSxpff1f5VVbvqFy3KN7PIXw2M+3RjogKF1Yl5TRt5OUGl6cMBT+vmsBJ9ZOs5g4l0POepJ2Zdom/JQ==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/iconset": 0.34.0 + resolution: {integrity: sha512-zom55CdjSxpff1f5VVbvqFy3KN7PIXw2M+3RjogKF1Yl5TRt5OUGl6cMBT+vmsBJ9ZOs5g4l0POepJ2Zdom/JQ==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/iconset': 0.34.0 dev: false /@spectrum-web-components/icons-workflow@0.34.0: - resolution: - { - integrity: sha512-Vsa9lzzgC86+NMrW/qYCnAHUw5vk0+FfXpFcCCc3lPYVJQD4ByCQYZ2U+uF/n85o1A88xeuMjaZsGIMHxDMPbA==, - } + resolution: {integrity: sha512-Vsa9lzzgC86+NMrW/qYCnAHUw5vk0+FfXpFcCCc3lPYVJQD4ByCQYZ2U+uF/n85o1A88xeuMjaZsGIMHxDMPbA==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 dev: false /@spectrum-web-components/iconset@0.34.0: - resolution: - { - integrity: sha512-/pvVyBcJnhrfiIAjnXxwVGMrls6/8uvsSFCt0WFAFaiw5p5/njcuDJRNMo65EctiCQs1ApksA6E6s3rXj7S8TQ==, - } + resolution: {integrity: sha512-/pvVyBcJnhrfiIAjnXxwVGMrls6/8uvsSFCt0WFAFaiw5p5/njcuDJRNMo65EctiCQs1ApksA6E6s3rXj7S8TQ==} dependencies: - "@spectrum-web-components/base": 0.34.0 + '@spectrum-web-components/base': 0.34.0 dev: false /@spectrum-web-components/link@0.34.0: - resolution: - { - integrity: sha512-LAF808Z2hWfkUBUJBUzOFS1TxH1chCK5o3fbv0oc/dBwqdgQ18qx8iHWscyvyLz6jLtViWa7VA5zXsxPh9yQpA==, - } + resolution: {integrity: sha512-LAF808Z2hWfkUBUJBUzOFS1TxH1chCK5o3fbv0oc/dBwqdgQ18qx8iHWscyvyLz6jLtViWa7VA5zXsxPh9yQpA==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 dev: false /@spectrum-web-components/number-field@0.34.0: - resolution: - { - integrity: sha512-l6bDKNFMpyYjW+rmZcjQQdrjzVwwhzerREMnNNZ1BFBA9ZE4knaJBpJ6P3jcH+461LBrXqctRZ3qZse5Yi4NFw==, - } - dependencies: - "@internationalized/number": 3.2.1 - "@spectrum-web-components/action-button": 0.34.0 - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-ui": 0.34.0 - "@spectrum-web-components/reactive-controllers": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 - "@spectrum-web-components/textfield": 0.34.0 + resolution: {integrity: sha512-l6bDKNFMpyYjW+rmZcjQQdrjzVwwhzerREMnNNZ1BFBA9ZE4knaJBpJ6P3jcH+461LBrXqctRZ3qZse5Yi4NFw==} + dependencies: + '@internationalized/number': 3.2.1 + '@spectrum-web-components/action-button': 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-ui': 0.34.0 + '@spectrum-web-components/reactive-controllers': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 + '@spectrum-web-components/textfield': 0.34.0 dev: false /@spectrum-web-components/overlay@0.34.0: - resolution: - { - integrity: sha512-7oFtlCO82/hmMPZy1i0u5l99KBEBSVd7J1cwh4Zi6U+mjNfXDLG3f6h39Cmzlhr5fLvCUdOo7NocrbTTNTUTkg==, - } - dependencies: - "@floating-ui/dom": 1.4.5 - "@spectrum-web-components/action-button": 0.34.0 - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 - "@spectrum-web-components/theme": 0.34.0 + resolution: {integrity: sha512-7oFtlCO82/hmMPZy1i0u5l99KBEBSVd7J1cwh4Zi6U+mjNfXDLG3f6h39Cmzlhr5fLvCUdOo7NocrbTTNTUTkg==} + dependencies: + '@floating-ui/dom': 1.4.5 + '@spectrum-web-components/action-button': 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 + '@spectrum-web-components/theme': 0.34.0 dev: false /@spectrum-web-components/popover@0.34.0: - resolution: - { - integrity: sha512-7K9bdx7wqBaYn2S3Qay+R2sLo6PGT6bcFSLMDV+AbvDmt+B4gC2btgkmwzjRXe1aaJI5py0d0O3mEAmHcJy7Zw==, - } + resolution: {integrity: sha512-7K9bdx7wqBaYn2S3Qay+R2sLo6PGT6bcFSLMDV+AbvDmt+B4gC2btgkmwzjRXe1aaJI5py0d0O3mEAmHcJy7Zw==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/overlay": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/overlay': 0.34.0 dev: false /@spectrum-web-components/reactive-controllers@0.34.0: - resolution: - { - integrity: sha512-hAv6gbYhFfLY5f6nRL0YT5qjXLG8IzFx9LbNQVzYpVd7afLa0WZN0EuomgGQ+i0t35VTMnstypNtN3q4FUuV2w==, - } + resolution: {integrity: sha512-hAv6gbYhFfLY5f6nRL0YT5qjXLG8IzFx9LbNQVzYpVd7afLa0WZN0EuomgGQ+i0t35VTMnstypNtN3q4FUuV2w==} dependencies: lit: 2.7.6 dev: false /@spectrum-web-components/search@0.34.0: - resolution: - { - integrity: sha512-QLLrj213SWZuUA9UglVF7ekD2V6gL4yizVehzXB3nTU1hoHRnaGwKpyJKGBGDbF3mCB2CYbhIf0qOd4U2snv6w==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/button": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-workflow": 0.34.0 - "@spectrum-web-components/textfield": 0.34.0 + resolution: {integrity: sha512-QLLrj213SWZuUA9UglVF7ekD2V6gL4yizVehzXB3nTU1hoHRnaGwKpyJKGBGDbF3mCB2CYbhIf0qOd4U2snv6w==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/button': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-workflow': 0.34.0 + '@spectrum-web-components/textfield': 0.34.0 dev: false /@spectrum-web-components/shared@0.34.0: - resolution: - { - integrity: sha512-FGCLiOCJC2/lKdcBh6TcYfxOHF2nKca2RaCDZ2jRJ1fKRx9B48F80lSnSxlwtK7N1XZ8svvKGwJEFWNNvBMH2w==, - } + resolution: {integrity: sha512-FGCLiOCJC2/lKdcBh6TcYfxOHF2nKca2RaCDZ2jRJ1fKRx9B48F80lSnSxlwtK7N1XZ8svvKGwJEFWNNvBMH2w==} dependencies: - "@lit-labs/observers": 2.0.0 - "@spectrum-web-components/base": 0.34.0 + '@lit-labs/observers': 2.0.0 + '@spectrum-web-components/base': 0.34.0 focus-visible: 5.2.0 dev: false /@spectrum-web-components/slider@0.34.0: - resolution: - { - integrity: sha512-IJnHXPV+SxM4OUa/0qC9rTj1k2ZxPo6LiwCHyUWs+WXwLkBlT+MM0/ypuWAhiJ+xgEQuCn8gVV3umU6t0BTQtg==, - } - dependencies: - "@internationalized/number": 3.2.1 - "@lit-labs/observers": 2.0.0 - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/field-label": 0.34.0 - "@spectrum-web-components/number-field": 0.34.0 - "@spectrum-web-components/reactive-controllers": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 - "@spectrum-web-components/theme": 0.34.0 + resolution: {integrity: sha512-IJnHXPV+SxM4OUa/0qC9rTj1k2ZxPo6LiwCHyUWs+WXwLkBlT+MM0/ypuWAhiJ+xgEQuCn8gVV3umU6t0BTQtg==} + dependencies: + '@internationalized/number': 3.2.1 + '@lit-labs/observers': 2.0.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/field-label': 0.34.0 + '@spectrum-web-components/number-field': 0.34.0 + '@spectrum-web-components/reactive-controllers': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 + '@spectrum-web-components/theme': 0.34.0 dev: false /@spectrum-web-components/styles@0.34.0: - resolution: - { - integrity: sha512-47r0xPT+y7raAK2gc6yRJLsjvuArpM4xOh3JAvvy8G1qAnuJOrf8YC2UZvd5ITkLjFlBCM9Lees47Ap5dCJONQ==, - } + resolution: {integrity: sha512-47r0xPT+y7raAK2gc6yRJLsjvuArpM4xOh3JAvvy8G1qAnuJOrf8YC2UZvd5ITkLjFlBCM9Lees47Ap5dCJONQ==} dependencies: - "@spectrum-web-components/base": 0.34.0 + '@spectrum-web-components/base': 0.34.0 dev: false /@spectrum-web-components/switch@0.34.0: - resolution: - { - integrity: sha512-ob44g7kzml19jFPN20rgOAOwjumyJC4TpIMZpPOGJVu3X5r4n1D8OjttNVaVd0EzG8C5bB27Or6JsOqv0/lF3g==, - } + resolution: {integrity: sha512-ob44g7kzml19jFPN20rgOAOwjumyJC4TpIMZpPOGJVu3X5r4n1D8OjttNVaVd0EzG8C5bB27Or6JsOqv0/lF3g==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/checkbox": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/checkbox': 0.34.0 dev: false /@spectrum-web-components/textfield@0.34.0: - resolution: - { - integrity: sha512-RPODpW7zmpSa4otI40Pn7EW5z/TLVkQOZT3eF6LPnk+ffdOmGJvutL5JB9R8U15jLUFNSt05E6XFqnNxPSRllQ==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/help-text": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-ui": 0.34.0 - "@spectrum-web-components/icons-workflow": 0.34.0 - "@spectrum-web-components/shared": 0.34.0 + resolution: {integrity: sha512-RPODpW7zmpSa4otI40Pn7EW5z/TLVkQOZT3eF6LPnk+ffdOmGJvutL5JB9R8U15jLUFNSt05E6XFqnNxPSRllQ==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/help-text': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-ui': 0.34.0 + '@spectrum-web-components/icons-workflow': 0.34.0 + '@spectrum-web-components/shared': 0.34.0 dev: false /@spectrum-web-components/theme@0.34.0: - resolution: - { - integrity: sha512-sOG4teMXjzBhbJMuYIRh+ACGqwwDQnjziBXLUtAVaTixjPG0t9KYHpFHvidRybnZGhsmtzCu4vGydfnMNBAI7g==, - } + resolution: {integrity: sha512-sOG4teMXjzBhbJMuYIRh+ACGqwwDQnjziBXLUtAVaTixjPG0t9KYHpFHvidRybnZGhsmtzCu4vGydfnMNBAI7g==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/styles": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/styles': 0.34.0 dev: false /@spectrum-web-components/toast@0.34.0: - resolution: - { - integrity: sha512-GRNR/MJcQV3ukYvfAC44UB0vPfGe4SzIUThWmOrXclzV3QigqP/Rpcu4vVsFlvSJiDe64/7ivuuVtI86ZSOILA==, - } - dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/button": 0.34.0 - "@spectrum-web-components/icon": 0.34.0 - "@spectrum-web-components/icons-workflow": 0.34.0 + resolution: {integrity: sha512-GRNR/MJcQV3ukYvfAC44UB0vPfGe4SzIUThWmOrXclzV3QigqP/Rpcu4vVsFlvSJiDe64/7ivuuVtI86ZSOILA==} + dependencies: + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/button': 0.34.0 + '@spectrum-web-components/icon': 0.34.0 + '@spectrum-web-components/icons-workflow': 0.34.0 dev: false /@spectrum-web-components/tooltip@0.34.0: - resolution: - { - integrity: sha512-Hm9REQJstvY/GUPOPn/Fv2gtPXE6+RemqA8Aq5tx9VAcXH8Ktj5tGef47dWL+gdVY0F/HIyy+ERJMREvNhMKng==, - } + resolution: {integrity: sha512-Hm9REQJstvY/GUPOPn/Fv2gtPXE6+RemqA8Aq5tx9VAcXH8Ktj5tGef47dWL+gdVY0F/HIyy+ERJMREvNhMKng==} dependencies: - "@spectrum-web-components/base": 0.34.0 - "@spectrum-web-components/overlay": 0.34.0 + '@spectrum-web-components/base': 0.34.0 + '@spectrum-web-components/overlay': 0.34.0 dev: false /@swc/helpers@0.5.1: - resolution: - { - integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==, - } + resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} dependencies: tslib: 2.6.2 dev: false + /@types/conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} + dependencies: + '@types/node': 20.11.24 + dev: true + /@types/minimist@1.2.5: - resolution: - { - integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, - } + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} dev: true /@types/node@12.20.55: - resolution: - { - integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, - } + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true /@types/node@20.11.19: - resolution: - { - integrity: sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==, - } + resolution: {integrity: sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==} + dependencies: + undici-types: 5.26.5 + dev: true + + /@types/node@20.11.24: + resolution: {integrity: sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==} dependencies: undici-types: 5.26.5 dev: true /@types/normalize-package-data@2.4.4: - resolution: - { - integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, - } + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} dev: true - /@types/semver@7.5.7: - resolution: - { - integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==, - } + /@types/semver@7.5.8: + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} dev: true /@types/trusted-types@2.0.3: - resolution: - { - integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==, - } + resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==} dev: false /@vercel/nft@0.26.4: - resolution: - { - integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==} + engines: {node: '>=16'} hasBin: true dependencies: - "@mapbox/node-pre-gyp": 1.0.11 - "@rollup/pluginutils": 4.2.1 + '@mapbox/node-pre-gyp': 1.0.11 + '@rollup/pluginutils': 4.2.1 acorn: 8.11.3 acorn-import-attributes: 1.9.2(acorn@8.11.3) async-sema: 3.1.1 @@ -1752,10 +1355,7 @@ packages: dev: true /JSONStream@1.3.5: - resolution: - { - integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, - } + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true dependencies: jsonparse: 1.3.1 @@ -1763,17 +1363,11 @@ packages: dev: true /abbrev@1.1.1: - resolution: - { - integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, - } + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} dev: true /acorn-import-attributes@1.9.2(acorn@8.11.3): - resolution: - { - integrity: sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==, - } + resolution: {integrity: sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==} peerDependencies: acorn: ^8 dependencies: @@ -1781,28 +1375,19 @@ packages: dev: true /acorn-walk@8.3.2: - resolution: - { - integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + engines: {node: '>=0.4.0'} dev: true /acorn@8.11.3: - resolution: - { - integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} hasBin: true dev: true /agent-base@6.0.2: - resolution: - { - integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} dependencies: debug: 4.3.4 transitivePeerDependencies: @@ -1810,10 +1395,7 @@ packages: dev: true /ajv-formats@2.1.1(ajv@8.12.0): - resolution: - { - integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, - } + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -1823,10 +1405,7 @@ packages: ajv: 8.12.0 /ajv@8.12.0: - resolution: - { - integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, - } + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -1834,206 +1413,140 @@ packages: uri-js: 4.4.1 /ansi-colors@4.1.3: - resolution: - { - integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} dev: true /ansi-escapes@6.2.0: - resolution: - { - integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==} + engines: {node: '>=14.16'} dependencies: type-fest: 3.13.1 dev: true /ansi-regex@5.0.1: - resolution: - { - integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} /ansi-regex@6.0.1: - resolution: - { - integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} /ansi-styles@3.2.1: - resolution: - { - integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 dev: true /ansi-styles@4.3.0: - resolution: - { - integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} dependencies: color-convert: 2.0.1 /ansi-styles@6.2.1: - resolution: - { - integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} /aproba@2.0.0: - resolution: - { - integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==, - } + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} dev: true /are-we-there-yet@2.0.0: - resolution: - { - integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} + engines: {node: '>=10'} dependencies: delegates: 1.0.0 readable-stream: 3.6.2 dev: true /argparse@1.0.10: - resolution: - { - integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, - } + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 dev: true /argparse@2.0.1: - resolution: - { - integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, - } + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true /array-buffer-byte-length@1.0.1: - resolution: - { - integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 is-array-buffer: 3.0.4 dev: true /array-find-index@1.0.2: - resolution: - { - integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} dev: true /array-ify@1.0.0: - resolution: - { - integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, - } + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true /array-union@2.1.0: - resolution: - { - integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} dev: true /array.prototype.flat@1.3.2: - resolution: - { - integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.4 + es-abstract: 1.22.5 es-shim-unscopables: 1.0.2 dev: true /arraybuffer.prototype.slice@1.0.3: - resolution: - { - integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.4 + es-abstract: 1.22.5 es-errors: 1.3.0 get-intrinsic: 1.2.4 is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.2 + is-shared-array-buffer: 1.0.3 dev: true /arrgv@1.0.2: - resolution: - { - integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==} + engines: {node: '>=8.0.0'} dev: true /arrify@1.0.1: - resolution: - { - integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} dev: true /arrify@3.0.0: - resolution: - { - integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==} + engines: {node: '>=12'} dev: true /async-sema@3.1.1: - resolution: - { - integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, - } - dev: true - - /ava@6.1.1: - resolution: - { - integrity: sha512-A+DG0Ag0e5zvt262Ze0pG5QH7EBmhn+DB9uK7WkUtJVAtGjZFeKTpUOKx339DMGn53+FB24pCJC5klX2WU4VOw==, - } - engines: { node: ^18.18 || ^20.8 || ^21 } + resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + dev: true + + /ava@6.1.2: + resolution: {integrity: sha512-WcpxJ8yZ7mk9ABTinD0IAjcemovSeVGjuuwZx0JS9johREWFeLTl8UP6wd7l6nmnrWqkKZdwaD71a/ocH4qPKw==} + engines: {node: ^18.18 || ^20.8 || ^21} hasBin: true peerDependencies: - "@ava/typescript": "*" + '@ava/typescript': '*' peerDependenciesMeta: - "@ava/typescript": + '@ava/typescript': optional: true dependencies: - "@vercel/nft": 0.26.4 + '@vercel/nft': 0.26.4 acorn: 8.11.3 acorn-walk: 8.3.2 ansi-styles: 6.2.1 @@ -2078,99 +1591,68 @@ packages: - supports-color dev: true - /available-typed-arrays@1.0.6: - resolution: - { - integrity: sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==, - } - engines: { node: ">= 0.4" } + /available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + dependencies: + possible-typed-array-names: 1.0.0 dev: true /balanced-match@1.0.2: - resolution: - { - integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, - } + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} /better-path-resolve@1.0.0: - resolution: - { - integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} dependencies: is-windows: 1.0.2 dev: true /bindings@1.5.0: - resolution: - { - integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, - } + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} dependencies: file-uri-to-path: 1.0.0 dev: true /blueimp-md5@2.19.0: - resolution: - { - integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==, - } + resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} dev: true /brace-expansion@1.1.11: - resolution: - { - integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, - } + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 dev: true /brace-expansion@2.0.1: - resolution: - { - integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, - } + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 /braces@3.0.2: - resolution: - { - integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} dependencies: fill-range: 7.0.1 dev: true /breakword@1.0.6: - resolution: - { - integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==, - } + resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} dependencies: wcwidth: 1.0.1 dev: true /busboy@1.6.0: - resolution: - { - integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, - } - engines: { node: ">=10.16.0" } + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} dependencies: streamsearch: 1.1.0 dev: false /call-bind@1.0.7: - resolution: - { - integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -2180,37 +1662,25 @@ packages: dev: true /callsites@3.1.0: - resolution: - { - integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} dev: true /callsites@4.1.0: - resolution: - { - integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==} + engines: {node: '>=12.20'} dev: true /camel-case@4.1.2: - resolution: - { - integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, - } + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 tslib: 2.6.2 dev: true /camelcase-keys@6.2.2: - resolution: - { - integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} dependencies: camelcase: 5.3.1 map-obj: 4.3.0 @@ -2218,25 +1688,16 @@ packages: dev: true /camelcase@5.3.1: - resolution: - { - integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} dev: true /caniuse-lite@1.0.30001515: - resolution: - { - integrity: sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA==, - } + resolution: {integrity: sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA==} dev: false /capital-case@1.0.4: - resolution: - { - integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==, - } + resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} dependencies: no-case: 3.0.4 tslib: 2.6.2 @@ -2244,21 +1705,15 @@ packages: dev: true /cbor@9.0.2: - resolution: - { - integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==} + engines: {node: '>=16'} dependencies: nofilter: 3.1.0 dev: true /chalk@2.4.2: - resolution: - { - integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 @@ -2266,29 +1721,20 @@ packages: dev: true /chalk@4.1.2: - resolution: - { - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true /chalk@5.3.0: - resolution: - { - integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==, - } - engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true /change-case@4.1.2: - resolution: - { - integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, - } + resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} dependencies: camel-case: 4.1.2 capital-case: 1.0.4 @@ -2305,83 +1751,53 @@ packages: dev: true /chardet@0.7.0: - resolution: - { - integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, - } + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} dev: true /chownr@2.0.0: - resolution: - { - integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} dev: true /chunkd@2.0.1: - resolution: - { - integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==, - } + resolution: {integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==} dev: true /ci-info@3.9.0: - resolution: - { - integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} dev: true /ci-info@4.0.0: - resolution: - { - integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + engines: {node: '>=8'} dev: true /ci-parallel-vars@1.0.1: - resolution: - { - integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==, - } + resolution: {integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==} dev: true /cli-cursor@4.0.0: - resolution: - { - integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: restore-cursor: 4.0.0 dev: true /cli-truncate@4.0.0: - resolution: - { - integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + engines: {node: '>=18'} dependencies: slice-ansi: 5.0.0 string-width: 7.1.0 dev: true /client-only@0.0.1: - resolution: - { - integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, - } + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} dev: false /cliui@6.0.0: - resolution: - { - integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, - } + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -2389,11 +1805,8 @@ packages: dev: true /cliui@8.0.1: - resolution: - { - integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -2401,115 +1814,73 @@ packages: dev: true /clone@1.0.4: - resolution: - { - integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} dev: true /code-excerpt@4.0.0: - resolution: - { - integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: convert-to-spaces: 2.0.1 dev: true /color-convert@1.9.3: - resolution: - { - integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, - } + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 dev: true /color-convert@2.0.1: - resolution: - { - integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, - } - engines: { node: ">=7.0.0" } + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 /color-name@1.1.3: - resolution: - { - integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, - } + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} dev: true /color-name@1.1.4: - resolution: - { - integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, - } + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} /color-support@1.1.3: - resolution: - { - integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==, - } + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true dev: true /colorette@2.0.20: - resolution: - { - integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, - } + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} dev: true /commander@11.1.0: - resolution: - { - integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} dev: true /commander@8.3.0: - resolution: - { - integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} dev: true /common-path-prefix@3.0.0: - resolution: - { - integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, - } + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} dev: true /compare-func@2.0.0: - resolution: - { - integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, - } + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 dev: true /concat-map@0.0.1: - resolution: - { - integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, - } + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true /concordance@5.0.4: - resolution: - { - integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==, - } - engines: { node: ">=10.18.0 <11 || >=12.14.0 <13 || >=14" } + resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} + engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} dependencies: date-time: 3.1.0 esutils: 2.0.3 @@ -2522,17 +1893,11 @@ packages: dev: true /console-control-strings@1.1.0: - resolution: - { - integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==, - } + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} dev: true /constant-case@3.0.4: - resolution: - { - integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==, - } + resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} dependencies: no-case: 3.0.4 tslib: 2.6.2 @@ -2540,31 +1905,22 @@ packages: dev: true /conventional-changelog-angular@7.0.0: - resolution: - { - integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} dependencies: compare-func: 2.0.0 dev: true /conventional-changelog-conventionalcommits@7.0.2: - resolution: - { - integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} + engines: {node: '>=16'} dependencies: compare-func: 2.0.0 dev: true /conventional-commits-parser@5.0.0: - resolution: - { - integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} + engines: {node: '>=16'} hasBin: true dependencies: JSONStream: 1.3.5 @@ -2574,38 +1930,29 @@ packages: dev: true /convert-to-spaces@2.0.1: - resolution: - { - integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dev: true - - /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.19)(cosmiconfig@8.3.6)(typescript@5.3.3): - resolution: - { - integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, - } - engines: { node: ">=v16" } + resolution: {integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.24)(cosmiconfig@8.3.6)(typescript@5.3.3): + resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} + engines: {node: '>=v16'} peerDependencies: - "@types/node": "*" - cosmiconfig: ">=8.2" - typescript: ">=4" + '@types/node': '*' + cosmiconfig: '>=8.2' + typescript: '>=4' dependencies: - "@types/node": 20.11.19 + '@types/node': 20.11.24 cosmiconfig: 8.3.6(typescript@5.3.3) jiti: 1.21.0 typescript: 5.3.3 dev: true /cosmiconfig@8.3.6(typescript@5.3.3): - resolution: - { - integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} peerDependencies: - typescript: ">=4.9.5" + typescript: '>=4.9.5' peerDependenciesMeta: typescript: optional: true @@ -2618,10 +1965,7 @@ packages: dev: true /cross-spawn@5.1.0: - resolution: - { - integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, - } + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -2629,43 +1973,28 @@ packages: dev: true /cross-spawn@7.0.3: - resolution: - { - integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 /csv-generate@3.4.3: - resolution: - { - integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==, - } + resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} dev: true /csv-parse@4.16.3: - resolution: - { - integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==, - } + resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} dev: true /csv-stringify@5.6.5: - resolution: - { - integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==, - } + resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} dev: true /csv@5.5.3: - resolution: - { - integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==, - } - engines: { node: ">= 0.1.90" } + resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} + engines: {node: '>= 0.1.90'} dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 @@ -2674,41 +2003,29 @@ packages: dev: true /currently-unhandled@0.4.1: - resolution: - { - integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} dependencies: array-find-index: 1.0.2 dev: true - /dargs@7.0.0: - resolution: - { - integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==, - } - engines: { node: ">=8" } + /dargs@8.1.0: + resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} + engines: {node: '>=12'} dev: true /date-time@3.1.0: - resolution: - { - integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} + engines: {node: '>=6'} dependencies: time-zone: 1.0.0 dev: true /debug@4.3.4: - resolution: - { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true @@ -2717,54 +2034,36 @@ packages: dev: true /decamelize-keys@1.1.1: - resolution: - { - integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 map-obj: 1.0.1 dev: true /decamelize@1.2.0: - resolution: - { - integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} dev: true /deep-object-diff@1.1.9: - resolution: - { - integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==, - } + resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} dev: true /deepmerge@4.3.1: - resolution: - { - integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} dev: true /defaults@1.0.4: - resolution: - { - integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, - } + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 dev: true /define-data-property@1.1.4: - resolution: - { - integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -2772,11 +2071,8 @@ packages: dev: true /define-properties@1.2.1: - resolution: - { - integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 @@ -2784,125 +2080,83 @@ packages: dev: true /delegates@1.0.0: - resolution: - { - integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, - } + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} dev: true /detect-indent@6.1.0: - resolution: - { - integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} dev: true /detect-libc@2.0.2: - resolution: - { - integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} + engines: {node: '>=8'} dev: true /dir-glob@3.0.1: - resolution: - { - integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dependencies: path-type: 4.0.0 dev: true /dot-case@3.0.4: - resolution: - { - integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, - } + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 tslib: 2.6.2 dev: true /dot-prop@5.3.0: - resolution: - { - integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} dependencies: is-obj: 2.0.0 dev: true /eastasianwidth@0.2.0: - resolution: - { - integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, - } + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} /emittery@1.0.3: - resolution: - { - integrity: sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==} + engines: {node: '>=14.16'} dev: true /emoji-regex@10.3.0: - resolution: - { - integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, - } + resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} dev: true /emoji-regex@8.0.0: - resolution: - { - integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, - } + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} /emoji-regex@9.2.2: - resolution: - { - integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, - } + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} /enquirer@2.4.1: - resolution: - { - integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 dev: true /error-ex@1.3.2: - resolution: - { - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, - } + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 dev: true - /es-abstract@1.22.4: - resolution: - { - integrity: sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==, - } - engines: { node: ">= 0.4" } + /es-abstract@1.22.5: + resolution: {integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.1 arraybuffer.prototype.slice: 1.0.3 - available-typed-arrays: 1.0.6 + available-typed-arrays: 1.0.7 call-bind: 1.0.7 es-define-property: 1.0.0 es-errors: 1.3.0 - es-set-tostringtag: 2.0.2 + es-set-tostringtag: 2.0.3 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 get-intrinsic: 1.2.4 @@ -2910,15 +2164,15 @@ packages: globalthis: 1.0.3 gopd: 1.0.1 has-property-descriptors: 1.0.2 - has-proto: 1.0.1 + has-proto: 1.0.3 has-symbols: 1.0.3 hasown: 2.0.1 internal-slot: 1.0.7 is-array-buffer: 3.0.4 is-callable: 1.2.7 - is-negative-zero: 2.0.2 + is-negative-zero: 2.0.3 is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 + is-shared-array-buffer: 1.0.3 is-string: 1.0.7 is-typed-array: 1.1.13 is-weakref: 1.0.2 @@ -2931,38 +2185,29 @@ packages: string.prototype.trim: 1.2.8 string.prototype.trimend: 1.0.7 string.prototype.trimstart: 1.0.7 - typed-array-buffer: 1.0.1 - typed-array-byte-length: 1.0.0 - typed-array-byte-offset: 1.0.0 - typed-array-length: 1.0.4 + typed-array-buffer: 1.0.2 + typed-array-byte-length: 1.0.1 + typed-array-byte-offset: 1.0.2 + typed-array-length: 1.0.5 unbox-primitive: 1.0.2 which-typed-array: 1.1.14 dev: true /es-define-property@1.0.0: - resolution: - { - integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.4 dev: true /es-errors@1.3.0: - resolution: - { - integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} dev: true - /es-set-tostringtag@2.0.2: - resolution: - { - integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==, - } - engines: { node: ">= 0.4" } + /es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 @@ -2970,20 +2215,14 @@ packages: dev: true /es-shim-unscopables@1.0.2: - resolution: - { - integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, - } + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: hasown: 2.0.1 dev: true /es-to-primitive@1.2.1: - resolution: - { - integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 @@ -2991,150 +2230,96 @@ packages: dev: true /esbuild@0.18.12: - resolution: - { - integrity: sha512-XuOVLDdtsDslXStStduT41op21Ytmf4/BDS46aa3xPJ7X5h2eMWBF1oAe3QjUH3bDksocNXgzGUZ7XHIBya6Tg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-XuOVLDdtsDslXStStduT41op21Ytmf4/BDS46aa3xPJ7X5h2eMWBF1oAe3QjUH3bDksocNXgzGUZ7XHIBya6Tg==} + engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.18.12 - "@esbuild/android-arm64": 0.18.12 - "@esbuild/android-x64": 0.18.12 - "@esbuild/darwin-arm64": 0.18.12 - "@esbuild/darwin-x64": 0.18.12 - "@esbuild/freebsd-arm64": 0.18.12 - "@esbuild/freebsd-x64": 0.18.12 - "@esbuild/linux-arm": 0.18.12 - "@esbuild/linux-arm64": 0.18.12 - "@esbuild/linux-ia32": 0.18.12 - "@esbuild/linux-loong64": 0.18.12 - "@esbuild/linux-mips64el": 0.18.12 - "@esbuild/linux-ppc64": 0.18.12 - "@esbuild/linux-riscv64": 0.18.12 - "@esbuild/linux-s390x": 0.18.12 - "@esbuild/linux-x64": 0.18.12 - "@esbuild/netbsd-x64": 0.18.12 - "@esbuild/openbsd-x64": 0.18.12 - "@esbuild/sunos-x64": 0.18.12 - "@esbuild/win32-arm64": 0.18.12 - "@esbuild/win32-ia32": 0.18.12 - "@esbuild/win32-x64": 0.18.12 + '@esbuild/android-arm': 0.18.12 + '@esbuild/android-arm64': 0.18.12 + '@esbuild/android-x64': 0.18.12 + '@esbuild/darwin-arm64': 0.18.12 + '@esbuild/darwin-x64': 0.18.12 + '@esbuild/freebsd-arm64': 0.18.12 + '@esbuild/freebsd-x64': 0.18.12 + '@esbuild/linux-arm': 0.18.12 + '@esbuild/linux-arm64': 0.18.12 + '@esbuild/linux-ia32': 0.18.12 + '@esbuild/linux-loong64': 0.18.12 + '@esbuild/linux-mips64el': 0.18.12 + '@esbuild/linux-ppc64': 0.18.12 + '@esbuild/linux-riscv64': 0.18.12 + '@esbuild/linux-s390x': 0.18.12 + '@esbuild/linux-x64': 0.18.12 + '@esbuild/netbsd-x64': 0.18.12 + '@esbuild/openbsd-x64': 0.18.12 + '@esbuild/sunos-x64': 0.18.12 + '@esbuild/win32-arm64': 0.18.12 + '@esbuild/win32-ia32': 0.18.12 + '@esbuild/win32-x64': 0.18.12 dev: true /escalade@3.1.2: - resolution: - { - integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} dev: true /escape-string-regexp@1.0.5: - resolution: - { - integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} dev: true /escape-string-regexp@2.0.0: - resolution: - { - integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} dev: true /escape-string-regexp@5.0.0: - resolution: - { - integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} dev: true /esprima@4.0.1: - resolution: - { - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} hasBin: true dev: true /estree-walker@2.0.2: - resolution: - { - integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, - } + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} dev: true /esutils@2.0.3: - resolution: - { - integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} dev: true /eventemitter3@5.0.1: - resolution: - { - integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, - } - dev: true - - /execa@5.1.1: - resolution: - { - integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, - } - engines: { node: ">=10" } - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} dev: true /execa@8.0.1: - resolution: - { - integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, - } - engines: { node: ">=16.17" } + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} dependencies: cross-spawn: 7.0.3 get-stream: 8.0.1 human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.2.0 + npm-run-path: 5.3.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 dev: true /extendable-error@0.1.7: - resolution: - { - integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, - } + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} dev: true /external-editor@3.1.0: - resolution: - { - integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 @@ -3142,140 +2327,104 @@ packages: dev: true /fast-deep-equal@3.1.3: - resolution: - { - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, - } + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} /fast-diff@1.3.0: - resolution: - { - integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, - } + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} dev: true /fast-glob@3.3.2: - resolution: - { - integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, - } - engines: { node: ">=8.6.0" } - dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 dev: true /fastq@1.17.1: - resolution: - { - integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, - } + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} dependencies: reusify: 1.0.4 dev: true /figures@6.0.1: - resolution: - { - integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==} + engines: {node: '>=18'} dependencies: is-unicode-supported: 2.0.0 dev: true /file-uri-to-path@1.0.0: - resolution: - { - integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, - } + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} dev: true /fill-range@7.0.1: - resolution: - { - integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 dev: true /find-up-simple@1.0.0: - resolution: - { - integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} dev: true /find-up@4.1.0: - resolution: - { - integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 dev: true /find-up@5.0.0: - resolution: - { - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 dev: true + /find-up@7.0.0: + resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} + engines: {node: '>=18'} + dependencies: + locate-path: 7.2.0 + path-exists: 5.0.0 + unicorn-magic: 0.1.0 + dev: true + /find-yarn-workspace-root2@1.2.16: - resolution: - { - integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, - } + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} dependencies: micromatch: 4.0.5 pkg-dir: 4.2.0 dev: true /focus-visible@5.2.0: - resolution: - { - integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==, - } + resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==} dev: false /for-each@0.3.3: - resolution: - { - integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, - } + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 dev: true /foreground-child@3.1.1: - resolution: - { - integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 /fs-extra@10.1.0: - resolution: - { - integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -3283,11 +2432,8 @@ packages: dev: true /fs-extra@7.0.1: - resolution: - { - integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, - } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 @@ -3295,11 +2441,8 @@ packages: dev: true /fs-extra@8.1.0: - resolution: - { - integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, - } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 @@ -3307,66 +2450,45 @@ packages: dev: true /fs-minipass@2.1.0: - resolution: - { - integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: true /fs.realpath@1.0.0: - resolution: - { - integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, - } + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true /fsevents@2.3.3: - resolution: - { - integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, - } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true dev: true optional: true /function-bind@1.1.2: - resolution: - { - integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, - } + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} dev: true /function.prototype.name@1.1.6: - resolution: - { - integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.4 + es-abstract: 1.22.5 functions-have-names: 1.2.3 dev: true /functions-have-names@1.2.3: - resolution: - { - integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, - } + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true /gauge@3.0.2: - resolution: - { - integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} + engines: {node: '>=10'} dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -3380,101 +2502,64 @@ packages: dev: true /get-caller-file@2.0.5: - resolution: - { - integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, - } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} dev: true /get-east-asian-width@1.2.0: - resolution: - { - integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} + engines: {node: '>=18'} dev: true /get-intrinsic@1.2.4: - resolution: - { - integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 function-bind: 1.1.2 - has-proto: 1.0.1 + has-proto: 1.0.3 has-symbols: 1.0.3 hasown: 2.0.1 dev: true - /get-stream@6.0.1: - resolution: - { - integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, - } - engines: { node: ">=10" } - dev: true - /get-stream@8.0.1: - resolution: - { - integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} dev: true /get-symbol-description@1.0.2: - resolution: - { - integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 dev: true - /git-raw-commits@2.0.11: - resolution: - { - integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==, - } - engines: { node: ">=10" } + /git-raw-commits@4.0.0: + resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} + engines: {node: '>=16'} hasBin: true dependencies: - dargs: 7.0.0 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 + dargs: 8.1.0 + meow: 12.1.1 + split2: 4.2.0 dev: true /glob-parent@5.1.2: - resolution: - { - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 dev: true /glob-to-regexp@0.4.1: - resolution: - { - integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, - } + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} dev: false /glob@10.3.10: - resolution: - { - integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: foreground-child: 3.1.1 @@ -3484,10 +2569,7 @@ packages: path-scurry: 1.10.1 /glob@7.2.3: - resolution: - { - integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, - } + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -3497,32 +2579,23 @@ packages: path-is-absolute: 1.0.1 dev: true - /global-dirs@0.1.1: - resolution: - { - integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==, - } - engines: { node: ">=4" } + /global-directory@4.0.1: + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} + engines: {node: '>=18'} dependencies: - ini: 1.3.8 + ini: 4.1.1 dev: true /globalthis@1.0.3: - resolution: - { - integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 dev: true /globby@11.1.0: - resolution: - { - integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -3533,13 +2606,10 @@ packages: dev: true /globby@14.0.1: - resolution: - { - integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} + engines: {node: '>=18'} dependencies: - "@sindresorhus/merge-streams": 2.2.1 + '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.2 ignore: 5.3.1 path-type: 5.0.0 @@ -3548,143 +2618,85 @@ packages: dev: true /gopd@1.0.1: - resolution: - { - integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, - } + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.4 dev: true /graceful-fs@4.2.11: - resolution: - { - integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, - } + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} /grapheme-splitter@1.0.4: - resolution: - { - integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, - } + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true /hard-rejection@2.1.0: - resolution: - { - integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} dev: true /has-bigints@1.0.2: - resolution: - { - integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, - } + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true /has-flag@3.0.0: - resolution: - { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} dev: true /has-flag@4.0.0: - resolution: - { - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} dev: true /has-property-descriptors@1.0.2: - resolution: - { - integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, - } + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} dependencies: es-define-property: 1.0.0 dev: true - /has-proto@1.0.1: - resolution: - { - integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, - } - engines: { node: ">= 0.4" } + /has-proto@1.0.3: + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} dev: true /has-symbols@1.0.3: - resolution: - { - integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} dev: true /has-tostringtag@1.0.2: - resolution: - { - integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true /has-unicode@2.0.1: - resolution: - { - integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==, - } + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: true /hasown@2.0.1: - resolution: - { - integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==} + engines: {node: '>= 0.4'} dependencies: function-bind: 1.1.2 dev: true /header-case@2.0.4: - resolution: - { - integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, - } + resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} dependencies: capital-case: 1.0.4 tslib: 2.6.2 dev: true /hosted-git-info@2.8.9: - resolution: - { - integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, - } - dev: true - - /hosted-git-info@4.1.0: - resolution: - { - integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==, - } - engines: { node: ">=10" } - dependencies: - lru-cache: 6.0.0 + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true /https-proxy-agent@5.0.1: - resolution: - { - integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -3693,469 +2705,303 @@ packages: dev: true /human-id@1.0.2: - resolution: - { - integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, - } - dev: true - - /human-signals@2.1.0: - resolution: - { - integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, - } - engines: { node: ">=10.17.0" } + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} dev: true /human-signals@5.0.0: - resolution: - { - integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, - } - engines: { node: ">=16.17.0" } + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} dev: true /husky@9.0.11: - resolution: - { - integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==} + engines: {node: '>=18'} hasBin: true dev: true /iconv-lite@0.4.24: - resolution: - { - integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 dev: true /ignore-by-default@2.1.0: - resolution: - { - integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==, - } - engines: { node: ">=10 <11 || >=12 <13 || >=14" } + resolution: {integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==} + engines: {node: '>=10 <11 || >=12 <13 || >=14'} dev: true /ignore@5.3.1: - resolution: - { - integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} dev: true /import-fresh@3.3.0: - resolution: - { - integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 dev: true + /import-meta-resolve@4.0.0: + resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} + dev: true + /imurmurhash@0.1.4: - resolution: - { - integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, - } - engines: { node: ">=0.8.19" } + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} dev: true /indent-string@4.0.0: - resolution: - { - integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} dev: true /indent-string@5.0.0: - resolution: - { - integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + engines: {node: '>=12'} dev: true /inflight@1.0.6: - resolution: - { - integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, - } + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true /inherits@2.0.4: - resolution: - { - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, - } + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true - /ini@1.3.8: - resolution: - { - integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, - } + /ini@4.1.1: + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true /internal-slot@1.0.7: - resolution: - { - integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 hasown: 2.0.1 - side-channel: 1.0.5 + side-channel: 1.0.6 dev: true /irregular-plurals@3.5.0: - resolution: - { - integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==} + engines: {node: '>=8'} dev: true /is-array-buffer@3.0.4: - resolution: - { - integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 dev: true /is-arrayish@0.2.1: - resolution: - { - integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, - } + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true /is-bigint@1.0.4: - resolution: - { - integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, - } + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 dev: true /is-boolean-object@1.1.2: - resolution: - { - integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true /is-callable@1.2.7: - resolution: - { - integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} dev: true /is-core-module@2.13.1: - resolution: - { - integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, - } + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: hasown: 2.0.1 dev: true /is-date-object@1.0.5: - resolution: - { - integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 dev: true /is-extglob@2.1.1: - resolution: - { - integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} dev: true /is-fullwidth-code-point@3.0.0: - resolution: - { - integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} /is-fullwidth-code-point@4.0.0: - resolution: - { - integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} dev: true /is-fullwidth-code-point@5.0.0: - resolution: - { - integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} + engines: {node: '>=18'} dependencies: get-east-asian-width: 1.2.0 dev: true /is-glob@4.0.3: - resolution: - { - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 dev: true - /is-negative-zero@2.0.2: - resolution: - { - integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, - } - engines: { node: ">= 0.4" } + /is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} dev: true /is-number-object@1.0.7: - resolution: - { - integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 dev: true /is-number@7.0.0: - resolution: - { - integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} dev: true /is-obj@2.0.0: - resolution: - { - integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} dev: true /is-plain-obj@1.1.0: - resolution: - { - integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} dev: true /is-plain-object@5.0.0: - resolution: - { - integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} dev: true /is-promise@4.0.0: - resolution: - { - integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==, - } + resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} dev: true /is-regex@1.1.4: - resolution: - { - integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true - /is-shared-array-buffer@1.0.2: - resolution: - { - integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, - } + /is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 dev: true - /is-stream@2.0.1: - resolution: - { - integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, - } - engines: { node: ">=8" } - dev: true - /is-stream@3.0.0: - resolution: - { - integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true /is-string@1.0.7: - resolution: - { - integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 dev: true /is-subdir@1.2.0: - resolution: - { - integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} dependencies: better-path-resolve: 1.0.0 dev: true /is-symbol@1.0.4: - resolution: - { - integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true /is-text-path@2.0.0: - resolution: - { - integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} + engines: {node: '>=8'} dependencies: text-extensions: 2.4.0 dev: true /is-typed-array@1.1.13: - resolution: - { - integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.14 dev: true /is-unicode-supported@2.0.0: - resolution: - { - integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} + engines: {node: '>=18'} dev: true /is-weakref@1.0.2: - resolution: - { - integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, - } + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.7 dev: true /is-windows@1.0.2: - resolution: - { - integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} dev: true /isarray@2.0.5: - resolution: - { - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, - } + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true /isexe@2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} /jackspeak@2.3.6: - resolution: - { - integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} dependencies: - "@isaacs/cliui": 8.0.2 + '@isaacs/cliui': 8.0.2 optionalDependencies: - "@pkgjs/parseargs": 0.11.0 + '@pkgjs/parseargs': 0.11.0 /jiti@1.21.0: - resolution: - { - integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, - } + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} hasBin: true dev: true /js-string-escape@1.0.1: - resolution: - { - integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} + engines: {node: '>= 0.8'} dev: true /js-tokens@4.0.0: - resolution: - { - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, - } + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} /js-yaml@3.14.1: - resolution: - { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, - } + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true dependencies: argparse: 1.0.10 @@ -4163,58 +3009,37 @@ packages: dev: true /js-yaml@4.1.0: - resolution: - { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, - } + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true dependencies: argparse: 2.0.1 dev: true /json-parse-even-better-errors@2.3.1: - resolution: - { - integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, - } + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true /json-schema-traverse@1.0.0: - resolution: - { - integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, - } + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} /json5@2.2.3: - resolution: - { - integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} hasBin: true dev: true /jsonc-parser@3.2.1: - resolution: - { - integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==, - } + resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} dev: true /jsonfile@4.0.0: - resolution: - { - integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, - } + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.11 dev: true /jsonfile@6.1.0: - resolution: - { - integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, - } + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.1 optionalDependencies: @@ -4222,58 +3047,37 @@ packages: dev: true /jsonparse@1.3.1: - resolution: - { - integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, - } - engines: { "0": node >= 0.2.0 } + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} dev: true /jsonpath-plus@7.2.0: - resolution: - { - integrity: sha512-zBfiUPM5nD0YZSBT/o/fbCUlCcepMIdP0CJZxM1+KgA4f2T206f6VAg9e7mX35+KlMaIc5qXW34f3BnwJ3w+RA==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-zBfiUPM5nD0YZSBT/o/fbCUlCcepMIdP0CJZxM1+KgA4f2T206f6VAg9e7mX35+KlMaIc5qXW34f3BnwJ3w+RA==} + engines: {node: '>=12.0.0'} dev: false /kind-of@6.0.3: - resolution: - { - integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} dev: true /kleur@4.1.5: - resolution: - { - integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} dev: true /lilconfig@3.0.0: - resolution: - { - integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + engines: {node: '>=14'} dev: true /lines-and-columns@1.2.4: - resolution: - { - integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, - } + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true /lint-staged@15.2.2: - resolution: - { - integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==, - } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==} + engines: {node: '>=18.12.0'} hasBin: true dependencies: chalk: 5.3.0 @@ -4291,11 +3095,8 @@ packages: dev: true /listr2@8.0.1: - resolution: - { - integrity: sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==, - } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==} + engines: {node: '>=18.0.0'} dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 @@ -4306,50 +3107,35 @@ packages: dev: true /lit-element@3.3.2: - resolution: - { - integrity: sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==, - } + resolution: {integrity: sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==} dependencies: - "@lit-labs/ssr-dom-shim": 1.1.1 - "@lit/reactive-element": 1.6.2 + '@lit-labs/ssr-dom-shim': 1.1.1 + '@lit/reactive-element': 1.6.2 lit-html: 2.7.5 dev: false /lit-html@2.7.5: - resolution: - { - integrity: sha512-YqUzpisJodwKIlbMFCtyrp58oLloKGnnPLMJ1t23cbfIJjg/H9pvLWK4XS69YeubK5HUs1UE4ys9w5dP1zg6IA==, - } + resolution: {integrity: sha512-YqUzpisJodwKIlbMFCtyrp58oLloKGnnPLMJ1t23cbfIJjg/H9pvLWK4XS69YeubK5HUs1UE4ys9w5dP1zg6IA==} dependencies: - "@types/trusted-types": 2.0.3 + '@types/trusted-types': 2.0.3 dev: false /lit@2.7.6: - resolution: - { - integrity: sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg==, - } + resolution: {integrity: sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg==} dependencies: - "@lit/reactive-element": 1.6.2 + '@lit/reactive-element': 1.6.2 lit-element: 3.3.2 lit-html: 2.7.5 dev: false /load-json-file@7.0.1: - resolution: - { - integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true /load-yaml-file@0.2.0: - resolution: - { - integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 @@ -4358,108 +3144,69 @@ packages: dev: true /locate-path@5.0.0: - resolution: - { - integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} dependencies: p-locate: 4.1.0 dev: true /locate-path@6.0.0: - resolution: - { - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} dependencies: p-locate: 5.0.0 dev: true - /lodash.camelcase@4.3.0: - resolution: - { - integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, - } + /locate-path@7.2.0: + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + p-locate: 6.0.0 dev: true - /lodash.isfunction@3.0.9: - resolution: - { - integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==, - } + /lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} dev: true /lodash.isplainobject@4.0.6: - resolution: - { - integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, - } + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} dev: true /lodash.kebabcase@4.1.1: - resolution: - { - integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==, - } + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} dev: true /lodash.merge@4.6.2: - resolution: - { - integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, - } + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} dev: true /lodash.mergewith@4.6.2: - resolution: - { - integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, - } + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} dev: true /lodash.snakecase@4.1.1: - resolution: - { - integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==, - } + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} dev: true /lodash.startcase@4.4.0: - resolution: - { - integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, - } + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} dev: true /lodash.uniq@4.5.0: - resolution: - { - integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, - } + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} dev: true /lodash.upperfirst@4.3.1: - resolution: - { - integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==, - } + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} dev: true /lodash@4.17.21: - resolution: - { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, - } + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} dev: true /log-update@6.0.0: - resolution: - { - integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==} + engines: {node: '>=18'} dependencies: ansi-escapes: 6.2.0 cli-cursor: 4.0.0 @@ -4469,123 +3216,84 @@ packages: dev: true /loose-envify@1.4.0: - resolution: - { - integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, - } + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 dev: false /lower-case@2.0.2: - resolution: - { - integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, - } + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: tslib: 2.6.2 dev: true /lru-cache@10.0.0: - resolution: - { - integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==, - } - engines: { node: 14 || >=16.14 } + resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==} + engines: {node: 14 || >=16.14} /lru-cache@4.1.5: - resolution: - { - integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, - } + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: pseudomap: 1.0.2 yallist: 2.1.2 dev: true /lru-cache@6.0.0: - resolution: - { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} dependencies: yallist: 4.0.0 dev: true /make-dir@3.1.0: - resolution: - { - integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} dependencies: semver: 6.3.1 dev: true /map-obj@1.0.1: - resolution: - { - integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} dev: true /map-obj@4.3.0: - resolution: - { - integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} dev: true /matcher@5.0.0: - resolution: - { - integrity: sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: escape-string-regexp: 5.0.0 dev: true /md5-hex@3.0.1: - resolution: - { - integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} + engines: {node: '>=8'} dependencies: blueimp-md5: 2.19.0 dev: true /memoize@10.0.0: - resolution: - { - integrity: sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==} + engines: {node: '>=18'} dependencies: mimic-function: 5.0.0 dev: true /meow@12.1.1: - resolution: - { - integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==, - } - engines: { node: ">=16.10" } + resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} + engines: {node: '>=16.10'} dev: true /meow@6.1.1: - resolution: - { - integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} + engines: {node: '>=8'} dependencies: - "@types/minimist": 1.2.5 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -4598,108 +3306,58 @@ packages: yargs-parser: 18.1.3 dev: true - /meow@8.1.2: - resolution: - { - integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==, - } - engines: { node: ">=10" } - dependencies: - "@types/minimist": 1.2.5 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 3.0.3 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.18.1 - yargs-parser: 20.2.9 - dev: true - /merge-stream@2.0.0: - resolution: - { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, - } + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true /merge2@1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} dev: true /micromatch@4.0.5: - resolution: - { - integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} dependencies: braces: 3.0.2 picomatch: 2.3.1 dev: true /mimic-fn@2.1.0: - resolution: - { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} dev: true /mimic-fn@4.0.0: - resolution: - { - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} dev: true /mimic-function@5.0.0: - resolution: - { - integrity: sha512-RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g==} + engines: {node: '>=18'} dev: true /min-indent@1.0.1: - resolution: - { - integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} dev: true /minimatch@3.1.2: - resolution: - { - integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, - } + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 dev: true /minimatch@9.0.3: - resolution: - { - integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 /minimist-options@4.1.0: - resolution: - { - integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 @@ -4707,110 +3365,77 @@ packages: dev: true /minimist@1.2.8: - resolution: - { - integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, - } + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true /minipass@3.3.6: - resolution: - { - integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} dependencies: yallist: 4.0.0 dev: true /minipass@5.0.0: - resolution: - { - integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} dev: true /minipass@7.0.4: - resolution: - { - integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} /minizlib@2.1.2: - resolution: - { - integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} dependencies: minipass: 3.3.6 yallist: 4.0.0 dev: true /mixme@0.5.10: - resolution: - { - integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==, - } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} + engines: {node: '>= 8.0.0'} dev: true /mkdirp@1.0.4: - resolution: - { - integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} hasBin: true dev: true /ms@2.1.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true /ms@2.1.3: - resolution: - { - integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, - } + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: true /nanoid@3.3.6: - resolution: - { - integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, - } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true /next@13.4.10(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-4ep6aKxVTQ7rkUW2fBLhpBr/5oceCuf4KmlUpvG/aXuDTIf9mexNSpabUD6RWPspu6wiJJvozZREhXhueYO36A==, - } - engines: { node: ">=16.8.0" } + resolution: {integrity: sha512-4ep6aKxVTQ7rkUW2fBLhpBr/5oceCuf4KmlUpvG/aXuDTIf9mexNSpabUD6RWPspu6wiJJvozZREhXhueYO36A==} + engines: {node: '>=16.8.0'} hasBin: true peerDependencies: - "@opentelemetry/api": ^1.1.0 - fibers: ">= 3.1.0" + '@opentelemetry/api': ^1.1.0 + fibers: '>= 3.1.0' react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - "@opentelemetry/api": + '@opentelemetry/api': optional: true fibers: optional: true sass: optional: true dependencies: - "@next/env": 13.4.10 - "@swc/helpers": 0.5.1 + '@next/env': 13.4.10 + '@swc/helpers': 0.5.1 busboy: 1.6.0 caniuse-lite: 1.0.30001515 postcss: 8.4.14 @@ -4820,36 +3445,30 @@ packages: watchpack: 2.4.0 zod: 3.21.4 optionalDependencies: - "@next/swc-darwin-arm64": 13.4.10 - "@next/swc-darwin-x64": 13.4.10 - "@next/swc-linux-arm64-gnu": 13.4.10 - "@next/swc-linux-arm64-musl": 13.4.10 - "@next/swc-linux-x64-gnu": 13.4.10 - "@next/swc-linux-x64-musl": 13.4.10 - "@next/swc-win32-arm64-msvc": 13.4.10 - "@next/swc-win32-ia32-msvc": 13.4.10 - "@next/swc-win32-x64-msvc": 13.4.10 + '@next/swc-darwin-arm64': 13.4.10 + '@next/swc-darwin-x64': 13.4.10 + '@next/swc-linux-arm64-gnu': 13.4.10 + '@next/swc-linux-arm64-musl': 13.4.10 + '@next/swc-linux-x64-gnu': 13.4.10 + '@next/swc-linux-x64-musl': 13.4.10 + '@next/swc-win32-arm64-msvc': 13.4.10 + '@next/swc-win32-ia32-msvc': 13.4.10 + '@next/swc-win32-x64-msvc': 13.4.10 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - babel-plugin-macros dev: false /no-case@3.0.4: - resolution: - { - integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, - } + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 tslib: 2.6.2 dev: true /node-fetch@2.7.0: - resolution: - { - integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, - } - engines: { node: 4.x || >=6.0.0 } + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -4860,37 +3479,25 @@ packages: dev: true /node-gyp-build@4.8.0: - resolution: - { - integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==, - } + resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} hasBin: true dev: true /nofilter@3.1.0: - resolution: - { - integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==, - } - engines: { node: ">=12.19" } + resolution: {integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==} + engines: {node: '>=12.19'} dev: true /nopt@5.0.0: - resolution: - { - integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} hasBin: true dependencies: abbrev: 1.1.1 dev: true /normalize-package-data@2.5.0: - resolution: - { - integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, - } + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 @@ -4898,44 +3505,15 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-package-data@3.0.3: - resolution: - { - integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==, - } - engines: { node: ">=10" } - dependencies: - hosted-git-info: 4.1.0 - is-core-module: 2.13.1 - semver: 7.6.0 - validate-npm-package-license: 3.0.4 - dev: true - - /npm-run-path@4.0.1: - resolution: - { - integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, - } - engines: { node: ">=8" } - dependencies: - path-key: 3.1.1 - dev: true - - /npm-run-path@5.2.0: - resolution: - { - integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + /npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: path-key: 4.0.0 dev: true /npmlog@5.0.1: - resolution: - { - integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==, - } + resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 @@ -4944,34 +3522,22 @@ packages: dev: true /object-assign@4.1.1: - resolution: - { - integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} dev: true /object-inspect@1.13.1: - resolution: - { - integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, - } + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} dev: true /object-keys@1.1.1: - resolution: - { - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} dev: true /object.assign@4.1.5: - resolution: - { - integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -4980,324 +3546,240 @@ packages: dev: true /once@1.4.0: - resolution: - { - integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, - } + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 dev: true /onetime@5.1.2: - resolution: - { - integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 dev: true /onetime@6.0.0: - resolution: - { - integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} dependencies: mimic-fn: 4.0.0 dev: true /os-tmpdir@1.0.2: - resolution: - { - integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} dev: true /outdent@0.5.0: - resolution: - { - integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, - } + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} dev: true /p-filter@2.1.0: - resolution: - { - integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} dependencies: p-map: 2.1.0 dev: true /p-limit@2.3.0: - resolution: - { - integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} dependencies: p-try: 2.2.0 dev: true /p-limit@3.1.0: - resolution: - { - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 dev: true + /p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + yocto-queue: 1.0.0 + dev: true + /p-locate@4.1.0: - resolution: - { - integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} dependencies: p-limit: 2.3.0 dev: true /p-locate@5.0.0: - resolution: - { - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} dependencies: p-limit: 3.1.0 dev: true + /p-locate@6.0.0: + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + p-limit: 4.0.0 + dev: true + /p-map@2.1.0: - resolution: - { - integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} dev: true /p-map@7.0.1: - resolution: - { - integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==} + engines: {node: '>=18'} dev: true /p-try@2.2.0: - resolution: - { - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} dev: true /package-config@5.0.0: - resolution: - { - integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==} + engines: {node: '>=18'} dependencies: find-up-simple: 1.0.0 load-json-file: 7.0.1 dev: true /param-case@3.0.4: - resolution: - { - integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==, - } + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: true /parent-module@1.0.1: - resolution: - { - integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 dev: true /parse-json@5.2.0: - resolution: - { - integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} dependencies: - "@babel/code-frame": 7.23.5 + '@babel/code-frame': 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 dev: true /parse-ms@4.0.0: - resolution: - { - integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} + engines: {node: '>=18'} dev: true /pascal-case@3.1.2: - resolution: - { - integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, - } + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 tslib: 2.6.2 dev: true /path-case@3.0.4: - resolution: - { - integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==, - } + resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: true /path-exists@4.0.0: - resolution: - { - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-exists@5.0.0: + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true /path-is-absolute@1.0.1: - resolution: - { - integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} dev: true /path-key@3.1.1: - resolution: - { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} /path-key@4.0.0: - resolution: - { - integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} dev: true /path-parse@1.0.7: - resolution: - { - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, - } + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} dev: true /path-scurry@1.10.1: - resolution: - { - integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} dependencies: lru-cache: 10.0.0 minipass: 7.0.4 /path-type@4.0.0: - resolution: - { - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} dev: true /path-type@5.0.0: - resolution: - { - integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} dev: true /picocolors@1.0.0: - resolution: - { - integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, - } + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} /picomatch@2.3.1: - resolution: - { - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} dev: true /picomatch@3.0.1: - resolution: - { - integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} + engines: {node: '>=10'} dev: true /pidtree@0.6.0: - resolution: - { - integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} hasBin: true dev: true /pify@4.0.1: - resolution: - { - integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} dev: true /pkg-dir@4.2.0: - resolution: - { - integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 dev: true /plur@5.1.0: - resolution: - { - integrity: sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: irregular-plurals: 3.5.0 dev: true + /possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + dev: true + /postcss@8.4.14: - resolution: - { - integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} + engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 picocolors: 1.0.0 @@ -5305,23 +3787,17 @@ packages: dev: false /postcss@8.4.26: - resolution: - { - integrity: sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==} + engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 dev: true - /preferred-pm@3.1.2: - resolution: - { - integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==, - } - engines: { node: ">=10" } + /preferred-pm@3.1.3: + resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==} + engines: {node: '>=10'} dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 @@ -5330,66 +3806,42 @@ packages: dev: true /prettier@2.8.8: - resolution: - { - integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} hasBin: true dev: true /prettier@3.2.5: - resolution: - { - integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} + engines: {node: '>=14'} hasBin: true /pretty-ms@9.0.0: - resolution: - { - integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==} + engines: {node: '>=18'} dependencies: parse-ms: 4.0.0 dev: true /pseudomap@1.0.2: - resolution: - { - integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, - } + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: true /punycode@2.3.1: - resolution: - { - integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} /queue-microtask@1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true /quick-lru@4.0.1: - resolution: - { - integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} dev: true /react-dom@18.2.0(react@18.2.0): - resolution: - { - integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, - } + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: react: ^18.2.0 dependencies: @@ -5399,21 +3851,15 @@ packages: dev: false /react@18.2.0: - resolution: - { - integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 dev: false /read-pkg-up@7.0.1: - resolution: - { - integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} dependencies: find-up: 4.1.0 read-pkg: 5.2.0 @@ -5421,24 +3867,18 @@ packages: dev: true /read-pkg@5.2.0: - resolution: - { - integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} dependencies: - "@types/normalize-package-data": 2.4.4 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 dev: true /read-yaml-file@1.1.0: - resolution: - { - integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 @@ -5447,11 +3887,8 @@ packages: dev: true /readable-stream@3.6.2: - resolution: - { - integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} dependencies: inherits: 2.0.4 string_decoder: 1.3.0 @@ -5459,99 +3896,59 @@ packages: dev: true /redent@3.0.0: - resolution: - { - integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 dev: true /regenerator-runtime@0.14.1: - resolution: - { - integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, - } + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} dev: true /regexp.prototype.flags@1.5.2: - resolution: - { - integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-errors: 1.3.0 - set-function-name: 2.0.1 + set-function-name: 2.0.2 dev: true /require-directory@2.1.1: - resolution: - { - integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} dev: true /require-from-string@2.0.2: - resolution: - { - integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} /require-main-filename@2.0.0: - resolution: - { - integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, - } + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} dev: true /resolve-cwd@3.0.0: - resolution: - { - integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true /resolve-from@4.0.0: - resolution: - { - integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} dev: true /resolve-from@5.0.0: - resolution: - { - integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, - } - engines: { node: ">=8" } - dev: true - - /resolve-global@1.0.0: - resolution: - { - integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==, - } - engines: { node: ">=8" } - dependencies: - global-dirs: 0.1.1 + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} dev: true /resolve@1.22.8: - resolution: - { - integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, - } + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true dependencies: is-core-module: 2.13.1 @@ -5560,78 +3957,54 @@ packages: dev: true /restore-cursor@4.0.0: - resolution: - { - integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: onetime: 5.1.2 signal-exit: 3.0.7 dev: true /reusify@1.0.4: - resolution: - { - integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, - } - engines: { iojs: ">=1.0.0", node: ">=0.10.0" } + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} dev: true /rfdc@1.3.1: - resolution: - { - integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==, - } + resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} dev: true /rimraf@3.0.2: - resolution: - { - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, - } + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.2.3 dev: true /rimraf@5.0.1: - resolution: - { - integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==} + engines: {node: '>=14'} hasBin: true dependencies: glob: 10.3.10 dev: false /rollup@3.26.2: - resolution: - { - integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==, - } - engines: { node: ">=14.18.0", npm: ">=8.0.0" } + resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.3 dev: true /run-parallel@1.2.0: - resolution: - { - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, - } + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 dev: true /safe-array-concat@1.1.0: - resolution: - { - integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} + engines: {node: '>=0.4'} dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -5640,18 +4013,12 @@ packages: dev: true /safe-buffer@5.2.1: - resolution: - { - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, - } + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} dev: true /safe-regex-test@1.0.3: - resolution: - { - integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -5659,53 +4026,35 @@ packages: dev: true /safer-buffer@2.1.2: - resolution: - { - integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, - } + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true /scheduler@0.23.0: - resolution: - { - integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, - } + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 dev: false /semver@5.7.2: - resolution: - { - integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, - } + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true dev: true /semver@6.3.1: - resolution: - { - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, - } + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true dev: true /semver@7.6.0: - resolution: - { - integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 dev: true /sentence-case@3.0.4: - resolution: - { - integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, - } + resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} dependencies: no-case: 3.0.4 tslib: 2.6.2 @@ -5713,28 +4062,19 @@ packages: dev: true /serialize-error@7.0.1: - resolution: - { - integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} + engines: {node: '>=10'} dependencies: type-fest: 0.13.1 dev: true /set-blocking@2.0.0: - resolution: - { - integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, - } + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} dev: true /set-function-length@1.2.1: - resolution: - { - integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -5744,58 +4084,41 @@ packages: has-property-descriptors: 1.0.2 dev: true - /set-function-name@2.0.1: - resolution: - { - integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, - } - engines: { node: ">= 0.4" } + /set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} dependencies: define-data-property: 1.1.4 + es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 dev: true /shebang-command@1.2.0: - resolution: - { - integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 dev: true /shebang-command@2.0.0: - resolution: - { - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 /shebang-regex@1.0.0: - resolution: - { - integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} dev: true /shebang-regex@3.0.0: - resolution: - { - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, - } - engines: { node: ">=8" } - - /side-channel@1.0.5: - resolution: - { - integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + /side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -5804,63 +4127,42 @@ packages: dev: true /signal-exit@3.0.7: - resolution: - { - integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, - } + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} dev: true /signal-exit@4.1.0: - resolution: - { - integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} /slash@3.0.0: - resolution: - { - integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} dev: true /slash@5.1.0: - resolution: - { - integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} dev: true /slice-ansi@5.0.0: - resolution: - { - integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} dependencies: ansi-styles: 6.2.1 is-fullwidth-code-point: 4.0.0 dev: true /slice-ansi@7.1.0: - resolution: - { - integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} + engines: {node: '>=18'} dependencies: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 dev: true /smartwrap@2.0.2: - resolution: - { - integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} + engines: {node: '>=6'} hasBin: true dependencies: array.prototype.flat: 1.3.2 @@ -5872,153 +4174,96 @@ packages: dev: true /snake-case@3.0.4: - resolution: - { - integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, - } + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: true /source-map-js@1.0.2: - resolution: - { - integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} /spawndamnit@2.0.0: - resolution: - { - integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, - } + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 dev: true /spdx-correct@3.2.0: - resolution: - { - integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, - } + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.17 dev: true /spdx-exceptions@2.5.0: - resolution: - { - integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, - } + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} dev: true /spdx-expression-parse@3.0.1: - resolution: - { - integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, - } + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.17 dev: true /spdx-license-ids@3.0.17: - resolution: - { - integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==, - } - dev: true - - /split2@3.2.2: - resolution: - { - integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==, - } - dependencies: - readable-stream: 3.6.2 + resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} dev: true /split2@4.2.0: - resolution: - { - integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, - } - engines: { node: ">= 10.x" } + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} dev: true /sprintf-js@1.0.3: - resolution: - { - integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, - } + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true /stack-utils@2.0.6: - resolution: - { - integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 dev: true /stream-transform@2.1.3: - resolution: - { - integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, - } + resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} dependencies: mixme: 0.5.10 dev: true /streamsearch@1.1.0: - resolution: - { - integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} dev: false /string-argv@0.3.2: - resolution: - { - integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, - } - engines: { node: ">=0.6.19" } + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} dev: true /string-width@4.2.3: - resolution: - { - integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 /string-width@5.1.2: - resolution: - { - integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 /string-width@7.1.0: - resolution: - { - integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==} + engines: {node: '>=18'} dependencies: emoji-regex: 10.3.0 get-east-asian-width: 1.2.0 @@ -6026,115 +4271,74 @@ packages: dev: true /string.prototype.trim@1.2.8: - resolution: - { - integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.4 + es-abstract: 1.22.5 dev: true /string.prototype.trimend@1.0.7: - resolution: - { - integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, - } + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.4 + es-abstract: 1.22.5 dev: true /string.prototype.trimstart@1.0.7: - resolution: - { - integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, - } + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.4 + es-abstract: 1.22.5 dev: true /string_decoder@1.3.0: - resolution: - { - integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, - } + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 dev: true /strip-ansi@6.0.1: - resolution: - { - integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 /strip-ansi@7.1.0: - resolution: - { - integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 /strip-bom@3.0.0: - resolution: - { - integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, - } - engines: { node: ">=4" } - dev: true - - /strip-final-newline@2.0.0: - resolution: - { - integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} dev: true /strip-final-newline@3.0.0: - resolution: - { - integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} dev: true /strip-indent@3.0.0: - resolution: - { - integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} dependencies: min-indent: 1.0.1 dev: true /style-dictionary-sets@2.3.0: - resolution: - { - integrity: sha512-XWYZOLTqVOxdYYlF7dDnJeh27BSRxRMmivRVOFWRCvIiHhaqK7V6HxMCegVpnGCi028+BTbkYndm6evA8SiFyg==, - } + resolution: {integrity: sha512-XWYZOLTqVOxdYYlF7dDnJeh27BSRxRMmivRVOFWRCvIiHhaqK7V6HxMCegVpnGCi028+BTbkYndm6evA8SiFyg==} dependencies: deepmerge: 4.3.1 dev: true /style-dictionary@3.9.2: - resolution: - { - integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==} + engines: {node: '>=12.0.0'} hasBin: true dependencies: chalk: 4.1.2 @@ -6149,17 +4353,14 @@ packages: dev: true /styled-jsx@5.1.1(react@18.2.0): - resolution: - { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} + engines: {node: '>= 12.0.0'} peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true babel-plugin-macros: optional: true @@ -6169,11 +4370,8 @@ packages: dev: false /supertap@3.0.1: - resolution: - { - integrity: sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: indent-string: 5.0.0 js-yaml: 3.14.1 @@ -6182,39 +4380,27 @@ packages: dev: true /supports-color@5.5.0: - resolution: - { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 dev: true /supports-color@7.2.0: - resolution: - { - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 dev: true /supports-preserve-symlinks-flag@1.0.0: - resolution: - { - integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} dev: true /tar@6.2.0: - resolution: - { - integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} + engines: {node: '>=10'} dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -6225,126 +4411,75 @@ packages: dev: true /temp-dir@3.0.0: - resolution: - { - integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} + engines: {node: '>=14.16'} dev: true /term-size@2.2.1: - resolution: - { - integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} dev: true /text-extensions@2.4.0: - resolution: - { - integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==, - } - engines: { node: ">=8" } - dev: true - - /through2@4.0.2: - resolution: - { - integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, - } - dependencies: - readable-stream: 3.6.2 + resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} + engines: {node: '>=8'} dev: true /through@2.3.8: - resolution: - { - integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, - } + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: true /time-zone@1.0.0: - resolution: - { - integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} + engines: {node: '>=4'} dev: true /tinycolor2@1.6.0: - resolution: - { - integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, - } + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} dev: true /tmp-promise@3.0.3: - resolution: - { - integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==, - } + resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} dependencies: tmp: 0.2.1 dev: true /tmp@0.0.33: - resolution: - { - integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, - } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 dev: true /tmp@0.2.1: - resolution: - { - integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==, - } - engines: { node: ">=8.17.0" } + resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} + engines: {node: '>=8.17.0'} dependencies: rimraf: 3.0.2 dev: true /to-regex-range@5.0.1: - resolution: - { - integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, - } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 dev: true /tr46@0.0.3: - resolution: - { - integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, - } + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: true /trim-newlines@3.0.1: - resolution: - { - integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} dev: true /tslib@2.6.2: - resolution: - { - integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, - } + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} /tty-table@4.2.3: - resolution: - { - integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} + engines: {node: '>=8.0.0'} hasBin: true dependencies: chalk: 4.1.2 @@ -6357,109 +4492,77 @@ packages: dev: true /type-fest@0.13.1: - resolution: - { - integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, - } - engines: { node: ">=10" } - dev: true - - /type-fest@0.18.1: - resolution: - { - integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} dev: true /type-fest@0.6.0: - resolution: - { - integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} dev: true /type-fest@0.8.1: - resolution: - { - integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} dev: true /type-fest@3.13.1: - resolution: - { - integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} + engines: {node: '>=14.16'} dev: true - /typed-array-buffer@1.0.1: - resolution: - { - integrity: sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==, - } - engines: { node: ">= 0.4" } + /typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 es-errors: 1.3.0 is-typed-array: 1.1.13 dev: true - /typed-array-byte-length@1.0.0: - resolution: - { - integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, - } - engines: { node: ">= 0.4" } + /typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 + gopd: 1.0.1 + has-proto: 1.0.3 is-typed-array: 1.1.13 dev: true - /typed-array-byte-offset@1.0.0: - resolution: - { - integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, - } - engines: { node: ">= 0.4" } + /typed-array-byte-offset@1.0.2: + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + engines: {node: '>= 0.4'} dependencies: - available-typed-arrays: 1.0.6 + available-typed-arrays: 1.0.7 call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 + gopd: 1.0.1 + has-proto: 1.0.3 is-typed-array: 1.1.13 dev: true - /typed-array-length@1.0.4: - resolution: - { - integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, - } + /typed-array-length@1.0.5: + resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 for-each: 0.3.3 + gopd: 1.0.1 + has-proto: 1.0.3 is-typed-array: 1.1.13 + possible-typed-array-names: 1.0.0 dev: true /typescript@5.3.3: - resolution: - { - integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + engines: {node: '>=14.17'} hasBin: true dev: true /unbox-primitive@1.0.2: - resolution: - { - integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, - } + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.7 has-bigints: 1.0.2 @@ -6468,96 +4571,66 @@ packages: dev: true /undici-types@5.26.5: - resolution: - { - integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, - } + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} dev: true /unicorn-magic@0.1.0: - resolution: - { - integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} dev: true /universalify@0.1.2: - resolution: - { - integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} dev: true /universalify@2.0.1: - resolution: - { - integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, - } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} dev: true /upper-case-first@2.0.2: - resolution: - { - integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, - } + resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} dependencies: tslib: 2.6.2 dev: true /upper-case@2.0.2: - resolution: - { - integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, - } + resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} dependencies: tslib: 2.6.2 dev: true /uri-js@4.4.1: - resolution: - { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, - } + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.1 /util-deprecate@1.0.2: - resolution: - { - integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, - } + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} dev: true /validate-npm-package-license@3.0.4: - resolution: - { - integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, - } + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 dev: true /vite@4.4.4(@types/node@20.11.19): - resolution: - { - integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==} + engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: - "@types/node": ">= 14" - less: "*" + '@types/node': '>= 14' + less: '*' lightningcss: ^1.21.0 - sass: "*" - stylus: "*" - sugarss: "*" + sass: '*' + stylus: '*' + sugarss: '*' terser: ^5.4.0 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true less: optional: true @@ -6572,7 +4645,7 @@ packages: terser: optional: true dependencies: - "@types/node": 20.11.19 + '@types/node': 20.11.19 esbuild: 0.18.12 postcss: 8.4.26 rollup: 3.26.2 @@ -6581,55 +4654,37 @@ packages: dev: true /watchpack@2.4.0: - resolution: - { - integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} + engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 dev: false /wcwidth@1.0.1: - resolution: - { - integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, - } + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.4 dev: true /webidl-conversions@3.0.1: - resolution: - { - integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, - } + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} dev: true /well-known-symbols@2.0.0: - resolution: - { - integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} + engines: {node: '>=6'} dev: true /whatwg-url@5.0.0: - resolution: - { - integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, - } + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 dev: true /which-boxed-primitive@1.0.2: - resolution: - { - integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, - } + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -6639,31 +4694,22 @@ packages: dev: true /which-module@2.0.1: - resolution: - { - integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==, - } + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} dev: true /which-pm@2.0.0: - resolution: - { - integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, - } - engines: { node: ">=8.15" } + resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} + engines: {node: '>=8.15'} dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 dev: true /which-typed-array@1.1.14: - resolution: - { - integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} + engines: {node: '>= 0.4'} dependencies: - available-typed-arrays: 1.0.6 + available-typed-arrays: 1.0.7 call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 @@ -6671,40 +4717,28 @@ packages: dev: true /which@1.3.1: - resolution: - { - integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, - } + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true dependencies: isexe: 2.0.0 dev: true /which@2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 /wide-align@1.1.5: - resolution: - { - integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==, - } + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: string-width: 4.2.3 dev: true /wrap-ansi@6.2.0: - resolution: - { - integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 @@ -6712,33 +4746,24 @@ packages: dev: true /wrap-ansi@7.0.0: - resolution: - { - integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 /wrap-ansi@8.1.0: - resolution: - { - integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 /wrap-ansi@9.0.0: - resolution: - { - integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} dependencies: ansi-styles: 6.2.1 string-width: 7.1.0 @@ -6746,93 +4771,55 @@ packages: dev: true /wrappy@1.0.2: - resolution: - { - integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, - } + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: true /write-file-atomic@5.0.1: - resolution: - { - integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 4.1.0 dev: true /y18n@4.0.3: - resolution: - { - integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, - } + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} dev: true /y18n@5.0.8: - resolution: - { - integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} dev: true /yallist@2.1.2: - resolution: - { - integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, - } + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} dev: true /yallist@4.0.0: - resolution: - { - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, - } + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true /yaml@2.3.4: - resolution: - { - integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, - } - engines: { node: ">= 14" } + resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + engines: {node: '>= 14'} dev: true /yargs-parser@18.1.3: - resolution: - { - integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 dev: true - /yargs-parser@20.2.9: - resolution: - { - integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, - } - engines: { node: ">=10" } - dev: true - /yargs-parser@21.1.1: - resolution: - { - integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} dev: true /yargs@15.4.1: - resolution: - { - integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -6848,11 +4835,8 @@ packages: dev: true /yargs@17.7.2: - resolution: - { - integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} dependencies: cliui: 8.0.1 escalade: 3.1.2 @@ -6864,16 +4848,15 @@ packages: dev: true /yocto-queue@0.1.0: - resolution: - { - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true + + /yocto-queue@1.0.0: + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} dev: true /zod@3.21.4: - resolution: - { - integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==, - } + resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} dev: false From 940bd78ddb8305ba3c52370eb3b94115f99a5607 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 29 Feb 2024 15:36:52 -0700 Subject: [PATCH 096/295] chore: added changeset --- .changeset/small-clocks-jam.md | 55 + .lintstagedrc.json | 2 +- pnpm-lock.yaml | 4717 ++++++++++++++++++++++---------- 3 files changed, 3390 insertions(+), 1384 deletions(-) create mode 100644 .changeset/small-clocks-jam.md diff --git a/.changeset/small-clocks-jam.md b/.changeset/small-clocks-jam.md new file mode 100644 index 00000000..cd43fc16 --- /dev/null +++ b/.changeset/small-clocks-jam.md @@ -0,0 +1,55 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated background aliases in dark theme; added new non-semantic colors + +## Design Motivation + +The existing background colors were updated for better consistency across semantic and non-semantic variants of the Badge component. The colors also introduce some general improved contrast in dark theme across other components using these aliases. +The new non-semantic visual and background colors were added because new hues were introduced. These colors will be used in status light and badge components, respectively. + +## Token Diff + +_Tokens added (10):_ + +- `brown-background-color-default` +- `brown-visual-color` +- `cinnamon-background-color-default` +- `cinnamon-visual-color` +- `pink-background-color-default` +- `pink-visual-color` +- `silver-background-color-default` +- `silver-visual-color` +- `turquoise-background-color-default` +- `turquoise-visual-color` + +_Token values updated (27):_ + +- `accent-background-color-default` +- `accent-background-color-down` +- `accent-background-color-hover` +- `accent-background-color-key-focus` +- `celery-background-color-default` +- `chartreuse-background-color-default` +- `gray-background-color-default` +- `informative-background-color-default` +- `informative-background-color-down` +- `informative-background-color-hover` +- `informative-background-color-key-focus` +- `negative-background-color-default` +- `negative-background-color-down` +- `negative-background-color-hover` +- `negative-background-color-key-focus` +- `neutral-subdued-background-color-default` +- `neutral-subdued-background-color-down` +- `neutral-subdued-background-color-hover` +- `neutral-subdued-background-color-key-focus` +- `notice-background-color-default` +- `orange-background-color-default` +- `positive-background-color-default` +- `positive-background-color-down` +- `positive-background-color-hover` +- `positive-background-color-key-focus` +- `table-selected-row-background-color` +- `yellow-background-color-default` diff --git a/.lintstagedrc.json b/.lintstagedrc.json index 012355bf..f1608849 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,3 +1,3 @@ { - "!(pnpm-lock)**/*.{js,jsx,ts,tsx,json,yml,yaml,md}": ["prettier --write"] + "**/*!(pnpm-lock).{js,jsx,ts,tsx,json,yml,yaml,md}": ["prettier --write"] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a512087f..bc9f02a7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,23 +1,22 @@ -lockfileVersion: '6.0' +lockfileVersion: "6.0" settings: autoInstallPeers: true excludeLinksFromLockfile: false importers: - .: devDependencies: - '@changesets/cli': + "@changesets/cli": specifier: ^2.27.1 version: 2.27.1 - '@commitlint/cli': + "@commitlint/cli": specifier: ^19.0.3 version: 19.0.3(@types/node@20.11.24)(typescript@5.3.3) - '@commitlint/config-conventional': + "@commitlint/config-conventional": specifier: ^19.0.3 version: 19.0.3 - '@moonrepo/cli': + "@moonrepo/cli": specifier: ^1.22.2 version: 1.22.2 ava: @@ -35,16 +34,16 @@ importers: docs/site: dependencies: - '@spectrum-css/page': + "@spectrum-css/page": specifier: ^5.0.31 version: 5.0.31 - '@spectrum-css/table': + "@spectrum-css/table": specifier: ^4.0.60 version: 4.0.60(@spectrum-css/icon@6.0.4)(@spectrum-css/vars@9.0.8) - '@spectrum-css/tokens': + "@spectrum-css/tokens": specifier: ^11.0.0 version: 11.0.0 - '@spectrum-css/typography': + "@spectrum-css/typography": specifier: ^5.0.27 version: 5.0.27(@spectrum-css/tokens@11.0.0) ajv: @@ -68,64 +67,64 @@ importers: docs/visualizer: dependencies: - '@spectrum-web-components/action-button': + "@spectrum-web-components/action-button": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/button': + "@spectrum-web-components/button": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/button-group': + "@spectrum-web-components/button-group": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/field-group': + "@spectrum-web-components/field-group": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/field-label': + "@spectrum-web-components/field-label": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/link': + "@spectrum-web-components/link": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/overlay': + "@spectrum-web-components/overlay": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/popover': + "@spectrum-web-components/popover": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/search': + "@spectrum-web-components/search": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/slider': + "@spectrum-web-components/slider": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/switch': + "@spectrum-web-components/switch": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/textfield': + "@spectrum-web-components/textfield": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/theme': + "@spectrum-web-components/theme": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/toast': + "@spectrum-web-components/toast": specifier: ^0.34.0 version: 0.34.0 - '@spectrum-web-components/tooltip': + "@spectrum-web-components/tooltip": specifier: ^0.34.0 version: 0.34.0 lit: specifier: ^2.7.6 version: 2.7.6 devDependencies: - '@types/node': + "@types/node": specifier: ^20.4.2 - version: 20.11.19 + version: 20.11.24 typescript: specifier: ^5.1.6 version: 5.3.3 vite: specifier: ^4.4.4 - version: 4.4.4(@types/node@20.11.19) + version: 4.4.4(@types/node@20.11.24) packages/tokens: devDependencies: @@ -169,45 +168,59 @@ importers: version: 3.2.5 packages: - /@babel/code-frame@7.23.5: - resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/highlight': 7.23.4 + "@babel/highlight": 7.23.4 chalk: 2.4.2 dev: true /@babel/helper-validator-identifier@7.22.20: - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, + } + engines: { node: ">=6.9.0" } dev: true /@babel/highlight@7.23.4: - resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, + } + engines: { node: ">=6.9.0" } dependencies: - '@babel/helper-validator-identifier': 7.22.20 + "@babel/helper-validator-identifier": 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 dev: true /@babel/runtime@7.24.0: - resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==, + } + engines: { node: ">=6.9.0" } dependencies: regenerator-runtime: 0.14.1 dev: true /@changesets/apply-release-plan@7.0.0: - resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==} - dependencies: - '@babel/runtime': 7.24.0 - '@changesets/config': 3.0.0 - '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + resolution: + { + integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==, + } + dependencies: + "@babel/runtime": 7.24.0 + "@changesets/config": 3.0.0 + "@changesets/get-version-range-type": 0.4.0 + "@changesets/git": 3.0.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -218,42 +231,51 @@ packages: dev: true /@changesets/assemble-release-plan@6.0.0: - resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==} - dependencies: - '@babel/runtime': 7.24.0 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + resolution: + { + integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==, + } + dependencies: + "@babel/runtime": 7.24.0 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.0.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 semver: 7.6.0 dev: true /@changesets/changelog-git@0.2.0: - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + resolution: + { + integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==, + } dependencies: - '@changesets/types': 6.0.0 + "@changesets/types": 6.0.0 dev: true /@changesets/cli@2.27.1: - resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==} + resolution: + { + integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==, + } hasBin: true dependencies: - '@babel/runtime': 7.24.0 - '@changesets/apply-release-plan': 7.0.0 - '@changesets/assemble-release-plan': 6.0.0 - '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.0 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/get-release-plan': 4.0.0 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.0.0 - '@changesets/write': 0.3.0 - '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.8 + "@babel/runtime": 7.24.0 + "@changesets/apply-release-plan": 7.0.0 + "@changesets/assemble-release-plan": 6.0.0 + "@changesets/changelog-git": 0.2.0 + "@changesets/config": 3.0.0 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.0.0 + "@changesets/get-release-plan": 4.0.0 + "@changesets/git": 3.0.0 + "@changesets/logger": 0.1.0 + "@changesets/pre": 2.0.0 + "@changesets/read": 0.6.0 + "@changesets/types": 6.0.0 + "@changesets/write": 0.3.0 + "@manypkg/get-packages": 1.1.3 + "@types/semver": 7.5.8 ansi-colors: 4.1.3 chalk: 2.4.2 ci-info: 3.9.0 @@ -273,153 +295,204 @@ packages: dev: true /@changesets/config@3.0.0: - resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==} - dependencies: - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/logger': 0.1.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + resolution: + { + integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==, + } + dependencies: + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.0.0 + "@changesets/logger": 0.1.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 dev: true /@changesets/errors@0.2.0: - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + resolution: + { + integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, + } dependencies: extendable-error: 0.1.7 dev: true /@changesets/get-dependents-graph@2.0.0: - resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==} + resolution: + { + integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==, + } dependencies: - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.0 dev: true /@changesets/get-release-plan@4.0.0: - resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==} + resolution: + { + integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==, + } dependencies: - '@babel/runtime': 7.24.0 - '@changesets/assemble-release-plan': 6.0.0 - '@changesets/config': 3.0.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.24.0 + "@changesets/assemble-release-plan": 6.0.0 + "@changesets/config": 3.0.0 + "@changesets/pre": 2.0.0 + "@changesets/read": 0.6.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 dev: true /@changesets/get-version-range-type@0.4.0: - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + resolution: + { + integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, + } dev: true /@changesets/git@3.0.0: - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} - dependencies: - '@babel/runtime': 7.24.0 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + resolution: + { + integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, + } + dependencies: + "@babel/runtime": 7.24.0 + "@changesets/errors": 0.2.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.5 spawndamnit: 2.0.0 dev: true /@changesets/logger@0.1.0: - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + resolution: + { + integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==, + } dependencies: chalk: 2.4.2 dev: true /@changesets/parse@0.4.0: - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + resolution: + { + integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==, + } dependencies: - '@changesets/types': 6.0.0 + "@changesets/types": 6.0.0 js-yaml: 3.14.1 dev: true /@changesets/pre@2.0.0: - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} - dependencies: - '@babel/runtime': 7.24.0 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + resolution: + { + integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, + } + dependencies: + "@babel/runtime": 7.24.0 + "@changesets/errors": 0.2.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 dev: true /@changesets/read@0.6.0: - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} - dependencies: - '@babel/runtime': 7.24.0 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/parse': 0.4.0 - '@changesets/types': 6.0.0 + resolution: + { + integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, + } + dependencies: + "@babel/runtime": 7.24.0 + "@changesets/git": 3.0.0 + "@changesets/logger": 0.1.0 + "@changesets/parse": 0.4.0 + "@changesets/types": 6.0.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 dev: true /@changesets/types@4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + resolution: + { + integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, + } dev: true /@changesets/types@6.0.0: - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} + resolution: + { + integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==, + } dev: true /@changesets/write@0.3.0: - resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==} + resolution: + { + integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==, + } dependencies: - '@babel/runtime': 7.24.0 - '@changesets/types': 6.0.0 + "@babel/runtime": 7.24.0 + "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 dev: true /@commitlint/cli@19.0.3(@types/node@20.11.24)(typescript@5.3.3): - resolution: {integrity: sha512-mGhh/aYPib4Vy4h+AGRloMY+CqkmtdeKPV9poMcZeImF5e3knQ5VYaSeAM0mEzps1dbKsHvABwaDpafLUuM96g==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-mGhh/aYPib4Vy4h+AGRloMY+CqkmtdeKPV9poMcZeImF5e3knQ5VYaSeAM0mEzps1dbKsHvABwaDpafLUuM96g==, + } + engines: { node: ">=v18" } hasBin: true dependencies: - '@commitlint/format': 19.0.3 - '@commitlint/lint': 19.0.3 - '@commitlint/load': 19.0.3(@types/node@20.11.24)(typescript@5.3.3) - '@commitlint/read': 19.0.3 - '@commitlint/types': 19.0.3 + "@commitlint/format": 19.0.3 + "@commitlint/lint": 19.0.3 + "@commitlint/load": 19.0.3(@types/node@20.11.24)(typescript@5.3.3) + "@commitlint/read": 19.0.3 + "@commitlint/types": 19.0.3 execa: 8.0.1 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - typescript dev: true /@commitlint/config-conventional@19.0.3: - resolution: {integrity: sha512-vh0L8XeLaEzTe8VCxSd0gAFvfTK0RFolrzw4o431bIuWJfi/yRCHJlsDwus7wW2eJaFFDR0VFXJyjGyDQhi4vA==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-vh0L8XeLaEzTe8VCxSd0gAFvfTK0RFolrzw4o431bIuWJfi/yRCHJlsDwus7wW2eJaFFDR0VFXJyjGyDQhi4vA==, + } + engines: { node: ">=v18" } dependencies: - '@commitlint/types': 19.0.3 + "@commitlint/types": 19.0.3 conventional-changelog-conventionalcommits: 7.0.2 dev: true /@commitlint/config-validator@19.0.3: - resolution: {integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==, + } + engines: { node: ">=v18" } dependencies: - '@commitlint/types': 19.0.3 + "@commitlint/types": 19.0.3 ajv: 8.12.0 dev: true /@commitlint/ensure@19.0.3: - resolution: {integrity: sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==, + } + engines: { node: ">=v18" } dependencies: - '@commitlint/types': 19.0.3 + "@commitlint/types": 19.0.3 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 @@ -428,44 +501,59 @@ packages: dev: true /@commitlint/execute-rule@19.0.0: - resolution: {integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==, + } + engines: { node: ">=v18" } dev: true /@commitlint/format@19.0.3: - resolution: {integrity: sha512-QjjyGyoiVWzx1f5xOteKHNLFyhyweVifMgopozSgx1fGNrGV8+wp7k6n1t6StHdJ6maQJ+UUtO2TcEiBFRyR6Q==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-QjjyGyoiVWzx1f5xOteKHNLFyhyweVifMgopozSgx1fGNrGV8+wp7k6n1t6StHdJ6maQJ+UUtO2TcEiBFRyR6Q==, + } + engines: { node: ">=v18" } dependencies: - '@commitlint/types': 19.0.3 + "@commitlint/types": 19.0.3 chalk: 5.3.0 dev: true /@commitlint/is-ignored@19.0.3: - resolution: {integrity: sha512-MqDrxJaRSVSzCbPsV6iOKG/Lt52Y+PVwFVexqImmYYFhe51iVJjK2hRhOG2jUAGiUHk4jpdFr0cZPzcBkSzXDQ==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-MqDrxJaRSVSzCbPsV6iOKG/Lt52Y+PVwFVexqImmYYFhe51iVJjK2hRhOG2jUAGiUHk4jpdFr0cZPzcBkSzXDQ==, + } + engines: { node: ">=v18" } dependencies: - '@commitlint/types': 19.0.3 + "@commitlint/types": 19.0.3 semver: 7.6.0 dev: true /@commitlint/lint@19.0.3: - resolution: {integrity: sha512-uHPyRqIn57iIplYa5xBr6oNu5aPXKGC4WLeuHfqQHclwIqbJ33g3yA5fIA+/NYnp5ZM2EFiujqHFaVUYj6HlKA==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-uHPyRqIn57iIplYa5xBr6oNu5aPXKGC4WLeuHfqQHclwIqbJ33g3yA5fIA+/NYnp5ZM2EFiujqHFaVUYj6HlKA==, + } + engines: { node: ">=v18" } dependencies: - '@commitlint/is-ignored': 19.0.3 - '@commitlint/parse': 19.0.3 - '@commitlint/rules': 19.0.3 - '@commitlint/types': 19.0.3 + "@commitlint/is-ignored": 19.0.3 + "@commitlint/parse": 19.0.3 + "@commitlint/rules": 19.0.3 + "@commitlint/types": 19.0.3 dev: true /@commitlint/load@19.0.3(@types/node@20.11.24)(typescript@5.3.3): - resolution: {integrity: sha512-18Tk/ZcDFRKIoKfEcl7kC+bYkEQ055iyKmGsYDoYWpKf6FUvBrP9bIWapuy/MB+kYiltmP9ITiUx6UXtqC9IRw==} - engines: {node: '>=v18'} - dependencies: - '@commitlint/config-validator': 19.0.3 - '@commitlint/execute-rule': 19.0.0 - '@commitlint/resolve-extends': 19.0.3 - '@commitlint/types': 19.0.3 + resolution: + { + integrity: sha512-18Tk/ZcDFRKIoKfEcl7kC+bYkEQ055iyKmGsYDoYWpKf6FUvBrP9bIWapuy/MB+kYiltmP9ITiUx6UXtqC9IRw==, + } + engines: { node: ">=v18" } + dependencies: + "@commitlint/config-validator": 19.0.3 + "@commitlint/execute-rule": 19.0.0 + "@commitlint/resolve-extends": 19.0.3 + "@commitlint/types": 19.0.3 chalk: 5.3.0 cosmiconfig: 8.3.6(typescript@5.3.3) cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.24)(cosmiconfig@8.3.6)(typescript@5.3.3) @@ -473,40 +561,52 @@ packages: lodash.merge: 4.6.2 lodash.uniq: 4.5.0 transitivePeerDependencies: - - '@types/node' + - "@types/node" - typescript dev: true /@commitlint/message@19.0.0: - resolution: {integrity: sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==, + } + engines: { node: ">=v18" } dev: true /@commitlint/parse@19.0.3: - resolution: {integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==, + } + engines: { node: ">=v18" } dependencies: - '@commitlint/types': 19.0.3 + "@commitlint/types": 19.0.3 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 dev: true /@commitlint/read@19.0.3: - resolution: {integrity: sha512-b5AflTyAXkUx5qKw4TkjjcOccXZHql3JqMi522knTQktq2AubKXFz60Sws+K4FsefwPws6fGz9mqiI/NvsvxFA==} - engines: {node: '>=v18'} - dependencies: - '@commitlint/top-level': 19.0.0 - '@commitlint/types': 19.0.3 + resolution: + { + integrity: sha512-b5AflTyAXkUx5qKw4TkjjcOccXZHql3JqMi522knTQktq2AubKXFz60Sws+K4FsefwPws6fGz9mqiI/NvsvxFA==, + } + engines: { node: ">=v18" } + dependencies: + "@commitlint/top-level": 19.0.0 + "@commitlint/types": 19.0.3 git-raw-commits: 4.0.0 minimist: 1.2.8 dev: true /@commitlint/resolve-extends@19.0.3: - resolution: {integrity: sha512-18BKmta8OC8+Ub+Q3QGM9l27VjQaXobloVXOrMvu8CpEwJYv62vC/t7Ka5kJnsW0tU9q1eMqJFZ/nN9T/cOaIA==} - engines: {node: '>=v18'} - dependencies: - '@commitlint/config-validator': 19.0.3 - '@commitlint/types': 19.0.3 + resolution: + { + integrity: sha512-18BKmta8OC8+Ub+Q3QGM9l27VjQaXobloVXOrMvu8CpEwJYv62vC/t7Ka5kJnsW0tU9q1eMqJFZ/nN9T/cOaIA==, + } + engines: { node: ">=v18" } + dependencies: + "@commitlint/config-validator": 19.0.3 + "@commitlint/types": 19.0.3 global-directory: 4.0.1 import-meta-resolve: 4.0.0 lodash.mergewith: 4.6.2 @@ -514,39 +614,54 @@ packages: dev: true /@commitlint/rules@19.0.3: - resolution: {integrity: sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==} - engines: {node: '>=v18'} - dependencies: - '@commitlint/ensure': 19.0.3 - '@commitlint/message': 19.0.0 - '@commitlint/to-lines': 19.0.0 - '@commitlint/types': 19.0.3 + resolution: + { + integrity: sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==, + } + engines: { node: ">=v18" } + dependencies: + "@commitlint/ensure": 19.0.3 + "@commitlint/message": 19.0.0 + "@commitlint/to-lines": 19.0.0 + "@commitlint/types": 19.0.3 execa: 8.0.1 dev: true /@commitlint/to-lines@19.0.0: - resolution: {integrity: sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==, + } + engines: { node: ">=v18" } dev: true /@commitlint/top-level@19.0.0: - resolution: {integrity: sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==, + } + engines: { node: ">=v18" } dependencies: find-up: 7.0.0 dev: true /@commitlint/types@19.0.3: - resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==, + } + engines: { node: ">=v18" } dependencies: - '@types/conventional-commits-parser': 5.0.0 + "@types/conventional-commits-parser": 5.0.0 chalk: 5.3.0 dev: true /@esbuild/android-arm64@0.18.12: - resolution: {integrity: sha512-BMAlczRqC/LUt2P97E4apTBbkvS9JTJnp2DKFbCwpZ8vBvXVbNdqmvzW/OsdtI/+mGr+apkkpqGM8WecLkPgrA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-BMAlczRqC/LUt2P97E4apTBbkvS9JTJnp2DKFbCwpZ8vBvXVbNdqmvzW/OsdtI/+mGr+apkkpqGM8WecLkPgrA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [android] requiresBuild: true @@ -554,8 +669,11 @@ packages: optional: true /@esbuild/android-arm@0.18.12: - resolution: {integrity: sha512-LIxaNIQfkFZbTLb4+cX7dozHlAbAshhFE5PKdro0l+FnCpx1GDJaQ2WMcqm+ToXKMt8p8Uojk/MFRuGyz3V5Sw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-LIxaNIQfkFZbTLb4+cX7dozHlAbAshhFE5PKdro0l+FnCpx1GDJaQ2WMcqm+ToXKMt8p8Uojk/MFRuGyz3V5Sw==, + } + engines: { node: ">=12" } cpu: [arm] os: [android] requiresBuild: true @@ -563,8 +681,11 @@ packages: optional: true /@esbuild/android-x64@0.18.12: - resolution: {integrity: sha512-zU5MyluNsykf5cOJ0LZZZjgAHbhPJ1cWfdH1ZXVMXxVMhEV0VZiZXQdwBBVvmvbF28EizeK7obG9fs+fpmS0eQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zU5MyluNsykf5cOJ0LZZZjgAHbhPJ1cWfdH1ZXVMXxVMhEV0VZiZXQdwBBVvmvbF28EizeK7obG9fs+fpmS0eQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [android] requiresBuild: true @@ -572,8 +693,11 @@ packages: optional: true /@esbuild/darwin-arm64@0.18.12: - resolution: {integrity: sha512-zUZMep7YONnp6954QOOwEBwFX9svlKd3ov6PkxKd53LGTHsp/gy7vHaPGhhjBmEpqXEXShi6dddjIkmd+NgMsA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zUZMep7YONnp6954QOOwEBwFX9svlKd3ov6PkxKd53LGTHsp/gy7vHaPGhhjBmEpqXEXShi6dddjIkmd+NgMsA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] requiresBuild: true @@ -581,8 +705,11 @@ packages: optional: true /@esbuild/darwin-x64@0.18.12: - resolution: {integrity: sha512-ohqLPc7i67yunArPj1+/FeeJ7AgwAjHqKZ512ADk3WsE3FHU9l+m5aa7NdxXr0HmN1bjDlUslBjWNbFlD9y12Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ohqLPc7i67yunArPj1+/FeeJ7AgwAjHqKZ512ADk3WsE3FHU9l+m5aa7NdxXr0HmN1bjDlUslBjWNbFlD9y12Q==, + } + engines: { node: ">=12" } cpu: [x64] os: [darwin] requiresBuild: true @@ -590,8 +717,11 @@ packages: optional: true /@esbuild/freebsd-arm64@0.18.12: - resolution: {integrity: sha512-GIIHtQXqgeOOqdG16a/A9N28GpkvjJnjYMhOnXVbn3EDJcoItdR58v/pGN31CHjyXDc8uCcRnFWmqaJt24AYJg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-GIIHtQXqgeOOqdG16a/A9N28GpkvjJnjYMhOnXVbn3EDJcoItdR58v/pGN31CHjyXDc8uCcRnFWmqaJt24AYJg==, + } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] requiresBuild: true @@ -599,8 +729,11 @@ packages: optional: true /@esbuild/freebsd-x64@0.18.12: - resolution: {integrity: sha512-zK0b9a1/0wZY+6FdOS3BpZcPc1kcx2G5yxxfEJtEUzVxI6n/FrC2Phsxj/YblPuBchhBZ/1wwn7AyEBUyNSa6g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zK0b9a1/0wZY+6FdOS3BpZcPc1kcx2G5yxxfEJtEUzVxI6n/FrC2Phsxj/YblPuBchhBZ/1wwn7AyEBUyNSa6g==, + } + engines: { node: ">=12" } cpu: [x64] os: [freebsd] requiresBuild: true @@ -608,8 +741,11 @@ packages: optional: true /@esbuild/linux-arm64@0.18.12: - resolution: {integrity: sha512-JKgG8Q/LL/9sw/iHHxQyVMoQYu3rU3+a5Z87DxC+wAu3engz+EmctIrV+FGOgI6gWG1z1+5nDDbXiRMGQZXqiw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-JKgG8Q/LL/9sw/iHHxQyVMoQYu3rU3+a5Z87DxC+wAu3engz+EmctIrV+FGOgI6gWG1z1+5nDDbXiRMGQZXqiw==, + } + engines: { node: ">=12" } cpu: [arm64] os: [linux] requiresBuild: true @@ -617,8 +753,11 @@ packages: optional: true /@esbuild/linux-arm@0.18.12: - resolution: {integrity: sha512-y75OijvrBE/1XRrXq1jtrJfG26eHeMoqLJ2dwQNwviwTuTtHGCojsDO6BJNF8gU+3jTn1KzJEMETytwsFSvc+Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-y75OijvrBE/1XRrXq1jtrJfG26eHeMoqLJ2dwQNwviwTuTtHGCojsDO6BJNF8gU+3jTn1KzJEMETytwsFSvc+Q==, + } + engines: { node: ">=12" } cpu: [arm] os: [linux] requiresBuild: true @@ -626,8 +765,11 @@ packages: optional: true /@esbuild/linux-ia32@0.18.12: - resolution: {integrity: sha512-yoRIAqc0B4lDIAAEFEIu9ttTRFV84iuAl0KNCN6MhKLxNPfzwCBvEMgwco2f71GxmpBcTtn7KdErueZaM2rEvw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-yoRIAqc0B4lDIAAEFEIu9ttTRFV84iuAl0KNCN6MhKLxNPfzwCBvEMgwco2f71GxmpBcTtn7KdErueZaM2rEvw==, + } + engines: { node: ">=12" } cpu: [ia32] os: [linux] requiresBuild: true @@ -635,8 +777,11 @@ packages: optional: true /@esbuild/linux-loong64@0.18.12: - resolution: {integrity: sha512-qYgt3dHPVvf/MgbIBpJ4Sup/yb9DAopZ3a2JgMpNKIHUpOdnJ2eHBo/aQdnd8dJ21X/+sS58wxHtA9lEazYtXQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-qYgt3dHPVvf/MgbIBpJ4Sup/yb9DAopZ3a2JgMpNKIHUpOdnJ2eHBo/aQdnd8dJ21X/+sS58wxHtA9lEazYtXQ==, + } + engines: { node: ">=12" } cpu: [loong64] os: [linux] requiresBuild: true @@ -644,8 +789,11 @@ packages: optional: true /@esbuild/linux-mips64el@0.18.12: - resolution: {integrity: sha512-wHphlMLK4ufNOONqukELfVIbnGQJrHJ/mxZMMrP2jYrPgCRZhOtf0kC4yAXBwnfmULimV1qt5UJJOw4Kh13Yfg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-wHphlMLK4ufNOONqukELfVIbnGQJrHJ/mxZMMrP2jYrPgCRZhOtf0kC4yAXBwnfmULimV1qt5UJJOw4Kh13Yfg==, + } + engines: { node: ">=12" } cpu: [mips64el] os: [linux] requiresBuild: true @@ -653,8 +801,11 @@ packages: optional: true /@esbuild/linux-ppc64@0.18.12: - resolution: {integrity: sha512-TeN//1Ft20ZZW41+zDSdOI/Os1bEq5dbvBvYkberB7PHABbRcsteeoNVZFlI0YLpGdlBqohEpjrn06kv8heCJg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-TeN//1Ft20ZZW41+zDSdOI/Os1bEq5dbvBvYkberB7PHABbRcsteeoNVZFlI0YLpGdlBqohEpjrn06kv8heCJg==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [linux] requiresBuild: true @@ -662,8 +813,11 @@ packages: optional: true /@esbuild/linux-riscv64@0.18.12: - resolution: {integrity: sha512-AgUebVS4DoAblBgiB2ACQ/8l4eGE5aWBb8ZXtkXHiET9mbj7GuWt3OnsIW/zX+XHJt2RYJZctbQ2S/mDjbp0UA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-AgUebVS4DoAblBgiB2ACQ/8l4eGE5aWBb8ZXtkXHiET9mbj7GuWt3OnsIW/zX+XHJt2RYJZctbQ2S/mDjbp0UA==, + } + engines: { node: ">=12" } cpu: [riscv64] os: [linux] requiresBuild: true @@ -671,8 +825,11 @@ packages: optional: true /@esbuild/linux-s390x@0.18.12: - resolution: {integrity: sha512-dJ3Rb3Ei2u/ysSXd6pzleGtfDdc2MuzKt8qc6ls8vreP1G3B7HInX3i7gXS4BGeVd24pp0yqyS7bJ5NHaI9ing==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dJ3Rb3Ei2u/ysSXd6pzleGtfDdc2MuzKt8qc6ls8vreP1G3B7HInX3i7gXS4BGeVd24pp0yqyS7bJ5NHaI9ing==, + } + engines: { node: ">=12" } cpu: [s390x] os: [linux] requiresBuild: true @@ -680,8 +837,11 @@ packages: optional: true /@esbuild/linux-x64@0.18.12: - resolution: {integrity: sha512-OrNJMGQbPaVyHHcDF8ybNSwu7TDOfX8NGpXCbetwOSP6txOJiWlgQnRymfC9ocR1S0Y5PW0Wb1mV6pUddqmvmQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-OrNJMGQbPaVyHHcDF8ybNSwu7TDOfX8NGpXCbetwOSP6txOJiWlgQnRymfC9ocR1S0Y5PW0Wb1mV6pUddqmvmQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [linux] requiresBuild: true @@ -689,8 +849,11 @@ packages: optional: true /@esbuild/netbsd-x64@0.18.12: - resolution: {integrity: sha512-55FzVCAiwE9FK8wWeCRuvjazNRJ1QqLCYGZVB6E8RuQuTeStSwotpSW4xoRGwp3a1wUsaVCdYcj5LGCASVJmMg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-55FzVCAiwE9FK8wWeCRuvjazNRJ1QqLCYGZVB6E8RuQuTeStSwotpSW4xoRGwp3a1wUsaVCdYcj5LGCASVJmMg==, + } + engines: { node: ">=12" } cpu: [x64] os: [netbsd] requiresBuild: true @@ -698,8 +861,11 @@ packages: optional: true /@esbuild/openbsd-x64@0.18.12: - resolution: {integrity: sha512-qnluf8rfb6Y5Lw2tirfK2quZOBbVqmwxut7GPCIJsM8lc4AEUj9L8y0YPdLaPK0TECt4IdyBdBD/KRFKorlK3g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-qnluf8rfb6Y5Lw2tirfK2quZOBbVqmwxut7GPCIJsM8lc4AEUj9L8y0YPdLaPK0TECt4IdyBdBD/KRFKorlK3g==, + } + engines: { node: ">=12" } cpu: [x64] os: [openbsd] requiresBuild: true @@ -707,8 +873,11 @@ packages: optional: true /@esbuild/sunos-x64@0.18.12: - resolution: {integrity: sha512-+RkKpVQR7bICjTOPUpkTBTaJ4TFqQBX5Ywyd/HSdDkQGn65VPkTsR/pL4AMvuMWy+wnXgIl4EY6q4mVpJal8Kg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+RkKpVQR7bICjTOPUpkTBTaJ4TFqQBX5Ywyd/HSdDkQGn65VPkTsR/pL4AMvuMWy+wnXgIl4EY6q4mVpJal8Kg==, + } + engines: { node: ">=12" } cpu: [x64] os: [sunos] requiresBuild: true @@ -716,8 +885,11 @@ packages: optional: true /@esbuild/win32-arm64@0.18.12: - resolution: {integrity: sha512-GNHuciv0mFM7ouzsU0+AwY+7eV4Mgo5WnbhfDCQGtpvOtD1vbOiRjPYG6dhmMoFyBjj+pNqQu2X+7DKn0KQ/Gw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-GNHuciv0mFM7ouzsU0+AwY+7eV4Mgo5WnbhfDCQGtpvOtD1vbOiRjPYG6dhmMoFyBjj+pNqQu2X+7DKn0KQ/Gw==, + } + engines: { node: ">=12" } cpu: [arm64] os: [win32] requiresBuild: true @@ -725,8 +897,11 @@ packages: optional: true /@esbuild/win32-ia32@0.18.12: - resolution: {integrity: sha512-kR8cezhYipbbypGkaqCTWIeu4zID17gamC8YTPXYtcN3E5BhhtTnwKBn9I0PJur/T6UVwIEGYzkffNL0lFvxEw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-kR8cezhYipbbypGkaqCTWIeu4zID17gamC8YTPXYtcN3E5BhhtTnwKBn9I0PJur/T6UVwIEGYzkffNL0lFvxEw==, + } + engines: { node: ">=12" } cpu: [ia32] os: [win32] requiresBuild: true @@ -734,8 +909,11 @@ packages: optional: true /@esbuild/win32-x64@0.18.12: - resolution: {integrity: sha512-O0UYQVkvfM/jO8a4OwoV0mAKSJw+mjWTAd1MJd/1FCX6uiMdLmMRPK/w6e9OQ0ob2WGxzIm9va/KG0Ja4zIOgg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-O0UYQVkvfM/jO8a4OwoV0mAKSJw+mjWTAd1MJd/1FCX6uiMdLmMRPK/w6e9OQ0ob2WGxzIm9va/KG0Ja4zIOgg==, + } + engines: { node: ">=12" } cpu: [x64] os: [win32] requiresBuild: true @@ -743,24 +921,36 @@ packages: optional: true /@floating-ui/core@1.3.1: - resolution: {integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==} + resolution: + { + integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==, + } dev: false /@floating-ui/dom@1.4.5: - resolution: {integrity: sha512-96KnRWkRnuBSSFbj0sFGwwOUd8EkiecINVl0O9wiZlZ64EkpyAOG3Xc2vKKNJmru0Z7RqWNymA+6b8OZqjgyyw==} + resolution: + { + integrity: sha512-96KnRWkRnuBSSFbj0sFGwwOUd8EkiecINVl0O9wiZlZ64EkpyAOG3Xc2vKKNJmru0Z7RqWNymA+6b8OZqjgyyw==, + } dependencies: - '@floating-ui/core': 1.3.1 + "@floating-ui/core": 1.3.1 dev: false /@internationalized/number@3.2.1: - resolution: {integrity: sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==} + resolution: + { + integrity: sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==, + } dependencies: - '@swc/helpers': 0.5.1 + "@swc/helpers": 0.5.1 dev: false /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: { node: ">=12" } dependencies: string-width: 5.1.2 string-width-cjs: /string-width@4.2.3 @@ -770,43 +960,61 @@ packages: wrap-ansi-cjs: /wrap-ansi@7.0.0 /@lit-labs/observers@2.0.0: - resolution: {integrity: sha512-NMbCjJEqp8V9TpTtt8HhzFVymx/WGpTD7iU+FMKSis4u3iBWwu2UYh6KChwFTEPW9xMum70r2IBnaViBINaGTA==} + resolution: + { + integrity: sha512-NMbCjJEqp8V9TpTtt8HhzFVymx/WGpTD7iU+FMKSis4u3iBWwu2UYh6KChwFTEPW9xMum70r2IBnaViBINaGTA==, + } dependencies: - '@lit/reactive-element': 1.6.2 + "@lit/reactive-element": 1.6.2 dev: false /@lit-labs/ssr-dom-shim@1.1.1: - resolution: {integrity: sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==} + resolution: + { + integrity: sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==, + } dev: false /@lit/reactive-element@1.6.2: - resolution: {integrity: sha512-rDfl+QnCYjuIGf5xI2sVJWdYIi56CTCwWa+nidKYX6oIuBYwUbT/vX4qbUDlHiZKJ/3FRNQ/tWJui44p6/stSA==} + resolution: + { + integrity: sha512-rDfl+QnCYjuIGf5xI2sVJWdYIi56CTCwWa+nidKYX6oIuBYwUbT/vX4qbUDlHiZKJ/3FRNQ/tWJui44p6/stSA==, + } dependencies: - '@lit-labs/ssr-dom-shim': 1.1.1 + "@lit-labs/ssr-dom-shim": 1.1.1 dev: false /@manypkg/find-root@1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + resolution: + { + integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, + } dependencies: - '@babel/runtime': 7.24.0 - '@types/node': 12.20.55 + "@babel/runtime": 7.24.0 + "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 dev: true /@manypkg/get-packages@1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - dependencies: - '@babel/runtime': 7.24.0 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 + resolution: + { + integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, + } + dependencies: + "@babel/runtime": 7.24.0 + "@changesets/types": 4.1.0 + "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 dev: true /@mapbox/node-pre-gyp@1.0.11: - resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==} + resolution: + { + integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==, + } hasBin: true dependencies: detect-libc: 2.0.2 @@ -824,23 +1032,29 @@ packages: dev: true /@moonrepo/cli@1.22.2: - resolution: {integrity: sha512-xZ+bFuVDcH52tlSDYn/2Ez6/avT2XbeeJ8sXaGe0Zhk07gh32lNzpZGtoS5aT94ME7abJlltfKEIdNFDbTRtPA==} + resolution: + { + integrity: sha512-xZ+bFuVDcH52tlSDYn/2Ez6/avT2XbeeJ8sXaGe0Zhk07gh32lNzpZGtoS5aT94ME7abJlltfKEIdNFDbTRtPA==, + } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - '@moonrepo/core-linux-arm64-gnu': 1.22.2 - '@moonrepo/core-linux-arm64-musl': 1.22.2 - '@moonrepo/core-linux-x64-gnu': 1.22.2 - '@moonrepo/core-linux-x64-musl': 1.22.2 - '@moonrepo/core-macos-arm64': 1.22.2 - '@moonrepo/core-macos-x64': 1.22.2 - '@moonrepo/core-windows-x64-msvc': 1.22.2 + "@moonrepo/core-linux-arm64-gnu": 1.22.2 + "@moonrepo/core-linux-arm64-musl": 1.22.2 + "@moonrepo/core-linux-x64-gnu": 1.22.2 + "@moonrepo/core-linux-x64-musl": 1.22.2 + "@moonrepo/core-macos-arm64": 1.22.2 + "@moonrepo/core-macos-x64": 1.22.2 + "@moonrepo/core-windows-x64-msvc": 1.22.2 dev: true /@moonrepo/core-linux-arm64-gnu@1.22.2: - resolution: {integrity: sha512-Qp9ZVcN0nQ6wpN2vNxURDQdLk+2pSo7KUQbKTuExH+GuoApY/aReAw7ZRwKuIM3pJq5WfaiNYz76LhXtlX3rhw==} + resolution: + { + integrity: sha512-Qp9ZVcN0nQ6wpN2vNxURDQdLk+2pSo7KUQbKTuExH+GuoApY/aReAw7ZRwKuIM3pJq5WfaiNYz76LhXtlX3rhw==, + } cpu: [arm64] os: [linux] requiresBuild: true @@ -848,7 +1062,10 @@ packages: optional: true /@moonrepo/core-linux-arm64-musl@1.22.2: - resolution: {integrity: sha512-P0My0v0kMU2byLOcuLYoHVrA52TS+zIfSUJrG0PFy4xO6K5dzGrXNRPrP3/0RC9WhFCWeD3F9sFU2PCV/V48bg==} + resolution: + { + integrity: sha512-P0My0v0kMU2byLOcuLYoHVrA52TS+zIfSUJrG0PFy4xO6K5dzGrXNRPrP3/0RC9WhFCWeD3F9sFU2PCV/V48bg==, + } cpu: [arm64] os: [linux] requiresBuild: true @@ -856,7 +1073,10 @@ packages: optional: true /@moonrepo/core-linux-x64-gnu@1.22.2: - resolution: {integrity: sha512-A5xJ7oeygo2O7I/ZFxbSOZ520D1JAW0pG2x09pk4DHXWK1dxX4llzqp/TbHZfwxB+UvNxhl9/9VeGWe2DwWMsQ==} + resolution: + { + integrity: sha512-A5xJ7oeygo2O7I/ZFxbSOZ520D1JAW0pG2x09pk4DHXWK1dxX4llzqp/TbHZfwxB+UvNxhl9/9VeGWe2DwWMsQ==, + } cpu: [x64] os: [linux] requiresBuild: true @@ -864,7 +1084,10 @@ packages: optional: true /@moonrepo/core-linux-x64-musl@1.22.2: - resolution: {integrity: sha512-We5ttPaPRTkLifTPc5dY9L5CTgh5x4i10Ti3cZHjXw0G9cu24dqygmU8JYqF2mUljQLS65dKC4dyyMv9ajwisA==} + resolution: + { + integrity: sha512-We5ttPaPRTkLifTPc5dY9L5CTgh5x4i10Ti3cZHjXw0G9cu24dqygmU8JYqF2mUljQLS65dKC4dyyMv9ajwisA==, + } cpu: [x64] os: [linux] requiresBuild: true @@ -872,7 +1095,10 @@ packages: optional: true /@moonrepo/core-macos-arm64@1.22.2: - resolution: {integrity: sha512-uWOm9TPDP7dtPtNq6n7mQgCn+feb0U7zFLKGbHNwKVi9e2PWJnN8vDUkH9LRthphVs1Qj4XnTixfDBSDybzNJw==} + resolution: + { + integrity: sha512-uWOm9TPDP7dtPtNq6n7mQgCn+feb0U7zFLKGbHNwKVi9e2PWJnN8vDUkH9LRthphVs1Qj4XnTixfDBSDybzNJw==, + } cpu: [arm64] os: [darwin] requiresBuild: true @@ -880,7 +1106,10 @@ packages: optional: true /@moonrepo/core-macos-x64@1.22.2: - resolution: {integrity: sha512-LGK2ufbfq9JWTe2pgBw05hg2WuT2uAsfk1kFyqCMl2Zi69fV0slw5GQMX4pHNHnO8Tuw/G9WwK/oV2B6qEPmqw==} + resolution: + { + integrity: sha512-LGK2ufbfq9JWTe2pgBw05hg2WuT2uAsfk1kFyqCMl2Zi69fV0slw5GQMX4pHNHnO8Tuw/G9WwK/oV2B6qEPmqw==, + } cpu: [x64] os: [darwin] requiresBuild: true @@ -888,7 +1117,10 @@ packages: optional: true /@moonrepo/core-windows-x64-msvc@1.22.2: - resolution: {integrity: sha512-9vrZDtoX4COdYxHR1NK26WWToXfh9SRpud3HXiAdPqwabfhGD5owUVO5CcUaYj3nYxdZyNxtxoNIcQlRtsXS7g==} + resolution: + { + integrity: sha512-9vrZDtoX4COdYxHR1NK26WWToXfh9SRpud3HXiAdPqwabfhGD5owUVO5CcUaYj3nYxdZyNxtxoNIcQlRtsXS7g==, + } cpu: [x64] os: [win32] requiresBuild: true @@ -896,12 +1128,18 @@ packages: optional: true /@next/env@13.4.10: - resolution: {integrity: sha512-3G1yD/XKTSLdihyDSa8JEsaWOELY+OWe08o0LUYzfuHp1zHDA8SObQlzKt+v+wrkkPcnPweoLH1ImZeUa0A1NQ==} + resolution: + { + integrity: sha512-3G1yD/XKTSLdihyDSa8JEsaWOELY+OWe08o0LUYzfuHp1zHDA8SObQlzKt+v+wrkkPcnPweoLH1ImZeUa0A1NQ==, + } dev: false /@next/swc-darwin-arm64@13.4.10: - resolution: {integrity: sha512-4bsdfKmmg7mgFGph0UorD1xWfZ5jZEw4kKRHYEeTK9bT1QnMbPVPlVXQRIiFPrhoDQnZUoa6duuPUJIEGLV1Jg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-4bsdfKmmg7mgFGph0UorD1xWfZ5jZEw4kKRHYEeTK9bT1QnMbPVPlVXQRIiFPrhoDQnZUoa6duuPUJIEGLV1Jg==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [darwin] requiresBuild: true @@ -909,8 +1147,11 @@ packages: optional: true /@next/swc-darwin-x64@13.4.10: - resolution: {integrity: sha512-ngXhUBbcZIWZWqNbQSNxQrB9T1V+wgfCzAor2olYuo/YpaL6mUYNUEgeBMhr8qwV0ARSgKaOp35lRvB7EmCRBg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-ngXhUBbcZIWZWqNbQSNxQrB9T1V+wgfCzAor2olYuo/YpaL6mUYNUEgeBMhr8qwV0ARSgKaOp35lRvB7EmCRBg==, + } + engines: { node: ">= 10" } cpu: [x64] os: [darwin] requiresBuild: true @@ -918,8 +1159,11 @@ packages: optional: true /@next/swc-linux-arm64-gnu@13.4.10: - resolution: {integrity: sha512-SjCZZCOmHD4uyM75MVArSAmF5Y+IJSGroPRj2v9/jnBT36SYFTORN8Ag/lhw81W9EeexKY/CUg2e9mdebZOwsg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-SjCZZCOmHD4uyM75MVArSAmF5Y+IJSGroPRj2v9/jnBT36SYFTORN8Ag/lhw81W9EeexKY/CUg2e9mdebZOwsg==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] requiresBuild: true @@ -927,8 +1171,11 @@ packages: optional: true /@next/swc-linux-arm64-musl@13.4.10: - resolution: {integrity: sha512-F+VlcWijX5qteoYIOxNiBbNE8ruaWuRlcYyIRK10CugqI/BIeCDzEDyrHIHY8AWwbkTwe6GRHabMdE688Rqq4Q==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-F+VlcWijX5qteoYIOxNiBbNE8ruaWuRlcYyIRK10CugqI/BIeCDzEDyrHIHY8AWwbkTwe6GRHabMdE688Rqq4Q==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] requiresBuild: true @@ -936,8 +1183,11 @@ packages: optional: true /@next/swc-linux-x64-gnu@13.4.10: - resolution: {integrity: sha512-WDv1YtAV07nhfy3i1visr5p/tjiH6CeXp4wX78lzP1jI07t4PnHHG1WEDFOduXh3WT4hG6yN82EQBQHDi7hBrQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-WDv1YtAV07nhfy3i1visr5p/tjiH6CeXp4wX78lzP1jI07t4PnHHG1WEDFOduXh3WT4hG6yN82EQBQHDi7hBrQ==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] requiresBuild: true @@ -945,8 +1195,11 @@ packages: optional: true /@next/swc-linux-x64-musl@13.4.10: - resolution: {integrity: sha512-zFkzqc737xr6qoBgDa3AwC7jPQzGLjDlkNmt/ljvQJ/Veri5ECdHjZCUuiTUfVjshNIIpki6FuP0RaQYK9iCRg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-zFkzqc737xr6qoBgDa3AwC7jPQzGLjDlkNmt/ljvQJ/Veri5ECdHjZCUuiTUfVjshNIIpki6FuP0RaQYK9iCRg==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] requiresBuild: true @@ -954,8 +1207,11 @@ packages: optional: true /@next/swc-win32-arm64-msvc@13.4.10: - resolution: {integrity: sha512-IboRS8IWz5mWfnjAdCekkl8s0B7ijpWeDwK2O8CdgZkoCDY0ZQHBSGiJ2KViAG6+BJVfLvcP+a2fh6cdyBr9QQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-IboRS8IWz5mWfnjAdCekkl8s0B7ijpWeDwK2O8CdgZkoCDY0ZQHBSGiJ2KViAG6+BJVfLvcP+a2fh6cdyBr9QQ==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [win32] requiresBuild: true @@ -963,8 +1219,11 @@ packages: optional: true /@next/swc-win32-ia32-msvc@13.4.10: - resolution: {integrity: sha512-bSA+4j8jY4EEiwD/M2bol4uVEu1lBlgsGdvM+mmBm/BbqofNBfaZ2qwSbwE2OwbAmzNdVJRFRXQZ0dkjopTRaQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-bSA+4j8jY4EEiwD/M2bol4uVEu1lBlgsGdvM+mmBm/BbqofNBfaZ2qwSbwE2OwbAmzNdVJRFRXQZ0dkjopTRaQ==, + } + engines: { node: ">= 10" } cpu: [ia32] os: [win32] requiresBuild: true @@ -972,8 +1231,11 @@ packages: optional: true /@next/swc-win32-x64-msvc@13.4.10: - resolution: {integrity: sha512-g2+tU63yTWmcVQKDGY0MV1PjjqgZtwM4rB1oVVi/v0brdZAcrcTV+04agKzWtvWroyFz6IqtT0MoZJA7PNyLVw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-g2+tU63yTWmcVQKDGY0MV1PjjqgZtwM4rB1oVVi/v0brdZAcrcTV+04agKzWtvWroyFz6IqtT0MoZJA7PNyLVw==, + } + engines: { node: ">= 10" } cpu: [x64] os: [win32] requiresBuild: true @@ -981,364 +1243,505 @@ packages: optional: true /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: ">= 8" } dependencies: - '@nodelib/fs.stat': 2.0.5 + "@nodelib/fs.stat": 2.0.5 run-parallel: 1.2.0 dev: true /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: ">= 8" } dev: true /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: ">= 8" } dependencies: - '@nodelib/fs.scandir': 2.1.5 + "@nodelib/fs.scandir": 2.1.5 fastq: 1.17.1 dev: true /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: { node: ">=14" } requiresBuild: true optional: true /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, + } + engines: { node: ">= 8.0.0" } dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 dev: true /@sindresorhus/merge-streams@2.3.0: - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==, + } + engines: { node: ">=18" } dev: true /@spectrum-css/icon@6.0.4(@spectrum-css/tokens@11.0.0): - resolution: {integrity: sha512-JDU9y1pEbUsNnJe6CyxCrxoklGQeECG5kmXu22ixPpzYwQBYQANV/AdoH77GD+bNbJZunyVjJVdySmaeNQkTiw==} + resolution: + { + integrity: sha512-JDU9y1pEbUsNnJe6CyxCrxoklGQeECG5kmXu22ixPpzYwQBYQANV/AdoH77GD+bNbJZunyVjJVdySmaeNQkTiw==, + } peerDependencies: - '@spectrum-css/tokens': '>=13.1' + "@spectrum-css/tokens": ">=13.1" dependencies: - '@spectrum-css/tokens': 11.0.0 + "@spectrum-css/tokens": 11.0.0 dev: false /@spectrum-css/page@5.0.31: - resolution: {integrity: sha512-F61w7EmFZ5VVTk6AuvfFGNbviqM+I0GkvOPgZXfWP+gL5beWzbd+ecsMKoFpeDwlH3ai87r4jg1fuI4LhvJFJA==} + resolution: + { + integrity: sha512-F61w7EmFZ5VVTk6AuvfFGNbviqM+I0GkvOPgZXfWP+gL5beWzbd+ecsMKoFpeDwlH3ai87r4jg1fuI4LhvJFJA==, + } dependencies: - '@spectrum-css/vars': 9.0.8 + "@spectrum-css/vars": 9.0.8 dev: false /@spectrum-css/table@4.0.60(@spectrum-css/icon@6.0.4)(@spectrum-css/vars@9.0.8): - resolution: {integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==} + resolution: + { + integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==, + } peerDependencies: - '@spectrum-css/icon': '>=3' - '@spectrum-css/vars': '>=9' + "@spectrum-css/icon": ">=3" + "@spectrum-css/vars": ">=9" dependencies: - '@spectrum-css/icon': 6.0.4(@spectrum-css/tokens@11.0.0) - '@spectrum-css/vars': 9.0.8 + "@spectrum-css/icon": 6.0.4(@spectrum-css/tokens@11.0.0) + "@spectrum-css/vars": 9.0.8 dev: false /@spectrum-css/tokens@11.0.0: - resolution: {integrity: sha512-C1PtYG3TRngneVbFxcd3Ksj8ZnnKuh1HZCSm+tHf1blx/8O44OQfHk2b36sOQMMDvysVXpaKU2LxttsEjrgSpw==} + resolution: + { + integrity: sha512-C1PtYG3TRngneVbFxcd3Ksj8ZnnKuh1HZCSm+tHf1blx/8O44OQfHk2b36sOQMMDvysVXpaKU2LxttsEjrgSpw==, + } dev: false /@spectrum-css/typography@5.0.27(@spectrum-css/tokens@11.0.0): - resolution: {integrity: sha512-olI3i90+TICneBPpa5bjvEuhzZCfbzZePFpJX4OIjJ9lVfW+B4PjFTnTzyYAWiWYwJrmTh1E51cvOeZb+S+5/g==} + resolution: + { + integrity: sha512-olI3i90+TICneBPpa5bjvEuhzZCfbzZePFpJX4OIjJ9lVfW+B4PjFTnTzyYAWiWYwJrmTh1E51cvOeZb+S+5/g==, + } peerDependencies: - '@spectrum-css/tokens': '>=9' + "@spectrum-css/tokens": ">=9" dependencies: - '@spectrum-css/tokens': 11.0.0 + "@spectrum-css/tokens": 11.0.0 dev: false /@spectrum-css/vars@9.0.8: - resolution: {integrity: sha512-rGfd7jqXOdR69bEjrRP58ynuIeJU0czPfwQvzhtCzg7jKVukV+efNHqrs086sC6xutB3W4TF71K/dZMr3oyTyg==} + resolution: + { + integrity: sha512-rGfd7jqXOdR69bEjrRP58ynuIeJU0czPfwQvzhtCzg7jKVukV+efNHqrs086sC6xutB3W4TF71K/dZMr3oyTyg==, + } dev: false /@spectrum-web-components/action-button@0.34.0: - resolution: {integrity: sha512-lqv3Uhgo+JW7Q2XpuKq086IcOMYnQ0A09bnBwPQQeTv5tz8dI807nj5HI2Bed/lHA60zOpM8ZN19tpMy3VmlcQ==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/button': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-ui': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 + resolution: + { + integrity: sha512-lqv3Uhgo+JW7Q2XpuKq086IcOMYnQ0A09bnBwPQQeTv5tz8dI807nj5HI2Bed/lHA60zOpM8ZN19tpMy3VmlcQ==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/button": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-ui": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 dev: false /@spectrum-web-components/base@0.34.0: - resolution: {integrity: sha512-/2J7BT0lKkGeFv4SE5vmGxUtBE9NBo7oa8M1nYTgahm6OL/wN6O5/7qZIY+H2iCTy9719bO/BUa+7A7N5wiLFg==} + resolution: + { + integrity: sha512-/2J7BT0lKkGeFv4SE5vmGxUtBE9NBo7oa8M1nYTgahm6OL/wN6O5/7qZIY+H2iCTy9719bO/BUa+7A7N5wiLFg==, + } dependencies: lit: 2.7.6 dev: false /@spectrum-web-components/button-group@0.34.0: - resolution: {integrity: sha512-4HYPW2Jl2cZ69PEjW4ldTFATiCkJ5PX+3y8S2K0wpbD+ISygVUU535+SwsKKZKic4oWamQX8PE8uPckaB/zZ6g==} + resolution: + { + integrity: sha512-4HYPW2Jl2cZ69PEjW4ldTFATiCkJ5PX+3y8S2K0wpbD+ISygVUU535+SwsKKZKic4oWamQX8PE8uPckaB/zZ6g==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/button': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/button": 0.34.0 dev: false /@spectrum-web-components/button@0.34.0: - resolution: {integrity: sha512-mUJMMCPxxQ2Xi05alJW6o9QTBWj92IJL42ZpSvgZrLULXEXBcDVmg7nd4mERbCRM5SZLGojOZ9PHZ7HEtjW5qg==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/clear-button': 0.34.0 - '@spectrum-web-components/close-button': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-ui': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 + resolution: + { + integrity: sha512-mUJMMCPxxQ2Xi05alJW6o9QTBWj92IJL42ZpSvgZrLULXEXBcDVmg7nd4mERbCRM5SZLGojOZ9PHZ7HEtjW5qg==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/clear-button": 0.34.0 + "@spectrum-web-components/close-button": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-ui": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 dev: false /@spectrum-web-components/checkbox@0.34.0: - resolution: {integrity: sha512-9dwhqWLXd3JB3rGr8PDPkQiLlFbzAQx/I4xdjTXHfJoZsFBx/iM4UvRcFG1SOVeK8mBFY2U88UclxeCiGN7zwA==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-ui': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 + resolution: + { + integrity: sha512-9dwhqWLXd3JB3rGr8PDPkQiLlFbzAQx/I4xdjTXHfJoZsFBx/iM4UvRcFG1SOVeK8mBFY2U88UclxeCiGN7zwA==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-ui": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 dev: false /@spectrum-web-components/clear-button@0.34.0: - resolution: {integrity: sha512-I4L8mO1m1K0D1vVn+/H3MPc3WeHLpZMBCFs91ZN7lm6/J7ia97LO26sTcHo/GXdv7QCCvPJBkhfEEyXBazie6w==} + resolution: + { + integrity: sha512-I4L8mO1m1K0D1vVn+/H3MPc3WeHLpZMBCFs91ZN7lm6/J7ia97LO26sTcHo/GXdv7QCCvPJBkhfEEyXBazie6w==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 + "@spectrum-web-components/base": 0.34.0 dev: false /@spectrum-web-components/close-button@0.34.0: - resolution: {integrity: sha512-F6YP27raO0Fs8eespvzAdvaWB9TFeH0rMczt4hA8IzuMzCdB72ERGDw7LtNEHZa06uYW6Q2witT1qMBeVi7R0Q==} + resolution: + { + integrity: sha512-F6YP27raO0Fs8eespvzAdvaWB9TFeH0rMczt4hA8IzuMzCdB72ERGDw7LtNEHZa06uYW6Q2witT1qMBeVi7R0Q==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 + "@spectrum-web-components/base": 0.34.0 dev: false /@spectrum-web-components/field-group@0.34.0: - resolution: {integrity: sha512-eUxypL6ofrJv7B3Tl4SV8tNQ71xyvkcuHYi3M744P1m64dkCfYN6igbpvuLJU76xlMpwO1wOpPPfOqykkQI3nA==} + resolution: + { + integrity: sha512-eUxypL6ofrJv7B3Tl4SV8tNQ71xyvkcuHYi3M744P1m64dkCfYN6igbpvuLJU76xlMpwO1wOpPPfOqykkQI3nA==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/help-text': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/help-text": 0.34.0 dev: false /@spectrum-web-components/field-label@0.34.0: - resolution: {integrity: sha512-+/ucuhXVJ0uVxPFKQGj7tBQ2TAJQvPF+zZ9elNLrG3oDsq55WxK54NfEqIuC/YLeNZLCGx9KMFivlIjMW+PhXA==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-ui': 0.34.0 - '@spectrum-web-components/reactive-controllers': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 + resolution: + { + integrity: sha512-+/ucuhXVJ0uVxPFKQGj7tBQ2TAJQvPF+zZ9elNLrG3oDsq55WxK54NfEqIuC/YLeNZLCGx9KMFivlIjMW+PhXA==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-ui": 0.34.0 + "@spectrum-web-components/reactive-controllers": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 dev: false /@spectrum-web-components/help-text@0.34.0: - resolution: {integrity: sha512-VsFBgae+6dKDJcdf6UNMr3/aFPsyaUmeBubIV92kS52nHKTi1dKlYWtnAcvxFY6n3iH4iOn943FVkImuXboRkQ==} + resolution: + { + integrity: sha512-VsFBgae+6dKDJcdf6UNMr3/aFPsyaUmeBubIV92kS52nHKTi1dKlYWtnAcvxFY6n3iH4iOn943FVkImuXboRkQ==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/icons-workflow': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/icons-workflow": 0.34.0 dev: false /@spectrum-web-components/icon@0.34.0: - resolution: {integrity: sha512-gASDbootZDmXYiRaqd1jlUoXapCI0U/s1ZNqaakAWm+vGoZB6T3b5eV2fUO0aHP8/UCAt+F07T1jTPo/ygaQMA==} + resolution: + { + integrity: sha512-gASDbootZDmXYiRaqd1jlUoXapCI0U/s1ZNqaakAWm+vGoZB6T3b5eV2fUO0aHP8/UCAt+F07T1jTPo/ygaQMA==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/iconset': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/iconset": 0.34.0 dev: false /@spectrum-web-components/icons-ui@0.34.0: - resolution: {integrity: sha512-zom55CdjSxpff1f5VVbvqFy3KN7PIXw2M+3RjogKF1Yl5TRt5OUGl6cMBT+vmsBJ9ZOs5g4l0POepJ2Zdom/JQ==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/iconset': 0.34.0 + resolution: + { + integrity: sha512-zom55CdjSxpff1f5VVbvqFy3KN7PIXw2M+3RjogKF1Yl5TRt5OUGl6cMBT+vmsBJ9ZOs5g4l0POepJ2Zdom/JQ==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/iconset": 0.34.0 dev: false /@spectrum-web-components/icons-workflow@0.34.0: - resolution: {integrity: sha512-Vsa9lzzgC86+NMrW/qYCnAHUw5vk0+FfXpFcCCc3lPYVJQD4ByCQYZ2U+uF/n85o1A88xeuMjaZsGIMHxDMPbA==} + resolution: + { + integrity: sha512-Vsa9lzzgC86+NMrW/qYCnAHUw5vk0+FfXpFcCCc3lPYVJQD4ByCQYZ2U+uF/n85o1A88xeuMjaZsGIMHxDMPbA==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 dev: false /@spectrum-web-components/iconset@0.34.0: - resolution: {integrity: sha512-/pvVyBcJnhrfiIAjnXxwVGMrls6/8uvsSFCt0WFAFaiw5p5/njcuDJRNMo65EctiCQs1ApksA6E6s3rXj7S8TQ==} + resolution: + { + integrity: sha512-/pvVyBcJnhrfiIAjnXxwVGMrls6/8uvsSFCt0WFAFaiw5p5/njcuDJRNMo65EctiCQs1ApksA6E6s3rXj7S8TQ==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 + "@spectrum-web-components/base": 0.34.0 dev: false /@spectrum-web-components/link@0.34.0: - resolution: {integrity: sha512-LAF808Z2hWfkUBUJBUzOFS1TxH1chCK5o3fbv0oc/dBwqdgQ18qx8iHWscyvyLz6jLtViWa7VA5zXsxPh9yQpA==} + resolution: + { + integrity: sha512-LAF808Z2hWfkUBUJBUzOFS1TxH1chCK5o3fbv0oc/dBwqdgQ18qx8iHWscyvyLz6jLtViWa7VA5zXsxPh9yQpA==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 dev: false /@spectrum-web-components/number-field@0.34.0: - resolution: {integrity: sha512-l6bDKNFMpyYjW+rmZcjQQdrjzVwwhzerREMnNNZ1BFBA9ZE4knaJBpJ6P3jcH+461LBrXqctRZ3qZse5Yi4NFw==} - dependencies: - '@internationalized/number': 3.2.1 - '@spectrum-web-components/action-button': 0.34.0 - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-ui': 0.34.0 - '@spectrum-web-components/reactive-controllers': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 - '@spectrum-web-components/textfield': 0.34.0 + resolution: + { + integrity: sha512-l6bDKNFMpyYjW+rmZcjQQdrjzVwwhzerREMnNNZ1BFBA9ZE4knaJBpJ6P3jcH+461LBrXqctRZ3qZse5Yi4NFw==, + } + dependencies: + "@internationalized/number": 3.2.1 + "@spectrum-web-components/action-button": 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-ui": 0.34.0 + "@spectrum-web-components/reactive-controllers": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 + "@spectrum-web-components/textfield": 0.34.0 dev: false /@spectrum-web-components/overlay@0.34.0: - resolution: {integrity: sha512-7oFtlCO82/hmMPZy1i0u5l99KBEBSVd7J1cwh4Zi6U+mjNfXDLG3f6h39Cmzlhr5fLvCUdOo7NocrbTTNTUTkg==} - dependencies: - '@floating-ui/dom': 1.4.5 - '@spectrum-web-components/action-button': 0.34.0 - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 - '@spectrum-web-components/theme': 0.34.0 + resolution: + { + integrity: sha512-7oFtlCO82/hmMPZy1i0u5l99KBEBSVd7J1cwh4Zi6U+mjNfXDLG3f6h39Cmzlhr5fLvCUdOo7NocrbTTNTUTkg==, + } + dependencies: + "@floating-ui/dom": 1.4.5 + "@spectrum-web-components/action-button": 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 + "@spectrum-web-components/theme": 0.34.0 dev: false /@spectrum-web-components/popover@0.34.0: - resolution: {integrity: sha512-7K9bdx7wqBaYn2S3Qay+R2sLo6PGT6bcFSLMDV+AbvDmt+B4gC2btgkmwzjRXe1aaJI5py0d0O3mEAmHcJy7Zw==} + resolution: + { + integrity: sha512-7K9bdx7wqBaYn2S3Qay+R2sLo6PGT6bcFSLMDV+AbvDmt+B4gC2btgkmwzjRXe1aaJI5py0d0O3mEAmHcJy7Zw==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/overlay': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/overlay": 0.34.0 dev: false /@spectrum-web-components/reactive-controllers@0.34.0: - resolution: {integrity: sha512-hAv6gbYhFfLY5f6nRL0YT5qjXLG8IzFx9LbNQVzYpVd7afLa0WZN0EuomgGQ+i0t35VTMnstypNtN3q4FUuV2w==} + resolution: + { + integrity: sha512-hAv6gbYhFfLY5f6nRL0YT5qjXLG8IzFx9LbNQVzYpVd7afLa0WZN0EuomgGQ+i0t35VTMnstypNtN3q4FUuV2w==, + } dependencies: lit: 2.7.6 dev: false /@spectrum-web-components/search@0.34.0: - resolution: {integrity: sha512-QLLrj213SWZuUA9UglVF7ekD2V6gL4yizVehzXB3nTU1hoHRnaGwKpyJKGBGDbF3mCB2CYbhIf0qOd4U2snv6w==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/button': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-workflow': 0.34.0 - '@spectrum-web-components/textfield': 0.34.0 + resolution: + { + integrity: sha512-QLLrj213SWZuUA9UglVF7ekD2V6gL4yizVehzXB3nTU1hoHRnaGwKpyJKGBGDbF3mCB2CYbhIf0qOd4U2snv6w==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/button": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-workflow": 0.34.0 + "@spectrum-web-components/textfield": 0.34.0 dev: false /@spectrum-web-components/shared@0.34.0: - resolution: {integrity: sha512-FGCLiOCJC2/lKdcBh6TcYfxOHF2nKca2RaCDZ2jRJ1fKRx9B48F80lSnSxlwtK7N1XZ8svvKGwJEFWNNvBMH2w==} + resolution: + { + integrity: sha512-FGCLiOCJC2/lKdcBh6TcYfxOHF2nKca2RaCDZ2jRJ1fKRx9B48F80lSnSxlwtK7N1XZ8svvKGwJEFWNNvBMH2w==, + } dependencies: - '@lit-labs/observers': 2.0.0 - '@spectrum-web-components/base': 0.34.0 + "@lit-labs/observers": 2.0.0 + "@spectrum-web-components/base": 0.34.0 focus-visible: 5.2.0 dev: false /@spectrum-web-components/slider@0.34.0: - resolution: {integrity: sha512-IJnHXPV+SxM4OUa/0qC9rTj1k2ZxPo6LiwCHyUWs+WXwLkBlT+MM0/ypuWAhiJ+xgEQuCn8gVV3umU6t0BTQtg==} - dependencies: - '@internationalized/number': 3.2.1 - '@lit-labs/observers': 2.0.0 - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/field-label': 0.34.0 - '@spectrum-web-components/number-field': 0.34.0 - '@spectrum-web-components/reactive-controllers': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 - '@spectrum-web-components/theme': 0.34.0 + resolution: + { + integrity: sha512-IJnHXPV+SxM4OUa/0qC9rTj1k2ZxPo6LiwCHyUWs+WXwLkBlT+MM0/ypuWAhiJ+xgEQuCn8gVV3umU6t0BTQtg==, + } + dependencies: + "@internationalized/number": 3.2.1 + "@lit-labs/observers": 2.0.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/field-label": 0.34.0 + "@spectrum-web-components/number-field": 0.34.0 + "@spectrum-web-components/reactive-controllers": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 + "@spectrum-web-components/theme": 0.34.0 dev: false /@spectrum-web-components/styles@0.34.0: - resolution: {integrity: sha512-47r0xPT+y7raAK2gc6yRJLsjvuArpM4xOh3JAvvy8G1qAnuJOrf8YC2UZvd5ITkLjFlBCM9Lees47Ap5dCJONQ==} + resolution: + { + integrity: sha512-47r0xPT+y7raAK2gc6yRJLsjvuArpM4xOh3JAvvy8G1qAnuJOrf8YC2UZvd5ITkLjFlBCM9Lees47Ap5dCJONQ==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 + "@spectrum-web-components/base": 0.34.0 dev: false /@spectrum-web-components/switch@0.34.0: - resolution: {integrity: sha512-ob44g7kzml19jFPN20rgOAOwjumyJC4TpIMZpPOGJVu3X5r4n1D8OjttNVaVd0EzG8C5bB27Or6JsOqv0/lF3g==} + resolution: + { + integrity: sha512-ob44g7kzml19jFPN20rgOAOwjumyJC4TpIMZpPOGJVu3X5r4n1D8OjttNVaVd0EzG8C5bB27Or6JsOqv0/lF3g==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/checkbox': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/checkbox": 0.34.0 dev: false /@spectrum-web-components/textfield@0.34.0: - resolution: {integrity: sha512-RPODpW7zmpSa4otI40Pn7EW5z/TLVkQOZT3eF6LPnk+ffdOmGJvutL5JB9R8U15jLUFNSt05E6XFqnNxPSRllQ==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/help-text': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-ui': 0.34.0 - '@spectrum-web-components/icons-workflow': 0.34.0 - '@spectrum-web-components/shared': 0.34.0 + resolution: + { + integrity: sha512-RPODpW7zmpSa4otI40Pn7EW5z/TLVkQOZT3eF6LPnk+ffdOmGJvutL5JB9R8U15jLUFNSt05E6XFqnNxPSRllQ==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/help-text": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-ui": 0.34.0 + "@spectrum-web-components/icons-workflow": 0.34.0 + "@spectrum-web-components/shared": 0.34.0 dev: false /@spectrum-web-components/theme@0.34.0: - resolution: {integrity: sha512-sOG4teMXjzBhbJMuYIRh+ACGqwwDQnjziBXLUtAVaTixjPG0t9KYHpFHvidRybnZGhsmtzCu4vGydfnMNBAI7g==} + resolution: + { + integrity: sha512-sOG4teMXjzBhbJMuYIRh+ACGqwwDQnjziBXLUtAVaTixjPG0t9KYHpFHvidRybnZGhsmtzCu4vGydfnMNBAI7g==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/styles': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/styles": 0.34.0 dev: false /@spectrum-web-components/toast@0.34.0: - resolution: {integrity: sha512-GRNR/MJcQV3ukYvfAC44UB0vPfGe4SzIUThWmOrXclzV3QigqP/Rpcu4vVsFlvSJiDe64/7ivuuVtI86ZSOILA==} - dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/button': 0.34.0 - '@spectrum-web-components/icon': 0.34.0 - '@spectrum-web-components/icons-workflow': 0.34.0 + resolution: + { + integrity: sha512-GRNR/MJcQV3ukYvfAC44UB0vPfGe4SzIUThWmOrXclzV3QigqP/Rpcu4vVsFlvSJiDe64/7ivuuVtI86ZSOILA==, + } + dependencies: + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/button": 0.34.0 + "@spectrum-web-components/icon": 0.34.0 + "@spectrum-web-components/icons-workflow": 0.34.0 dev: false /@spectrum-web-components/tooltip@0.34.0: - resolution: {integrity: sha512-Hm9REQJstvY/GUPOPn/Fv2gtPXE6+RemqA8Aq5tx9VAcXH8Ktj5tGef47dWL+gdVY0F/HIyy+ERJMREvNhMKng==} + resolution: + { + integrity: sha512-Hm9REQJstvY/GUPOPn/Fv2gtPXE6+RemqA8Aq5tx9VAcXH8Ktj5tGef47dWL+gdVY0F/HIyy+ERJMREvNhMKng==, + } dependencies: - '@spectrum-web-components/base': 0.34.0 - '@spectrum-web-components/overlay': 0.34.0 + "@spectrum-web-components/base": 0.34.0 + "@spectrum-web-components/overlay": 0.34.0 dev: false /@swc/helpers@0.5.1: - resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} + resolution: + { + integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==, + } dependencies: tslib: 2.6.2 dev: false /@types/conventional-commits-parser@5.0.0: - resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==} + resolution: + { + integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==, + } dependencies: - '@types/node': 20.11.24 + "@types/node": 20.11.24 dev: true /@types/minimist@1.2.5: - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + resolution: + { + integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, + } dev: true /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - dev: true - - /@types/node@20.11.19: - resolution: {integrity: sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==} - dependencies: - undici-types: 5.26.5 + resolution: + { + integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, + } dev: true /@types/node@20.11.24: - resolution: {integrity: sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==} + resolution: + { + integrity: sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==, + } dependencies: undici-types: 5.26.5 dev: true /@types/normalize-package-data@2.4.4: - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + resolution: + { + integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, + } dev: true /@types/semver@7.5.8: - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + resolution: + { + integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==, + } dev: true /@types/trusted-types@2.0.3: - resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==} + resolution: + { + integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==, + } dev: false /@vercel/nft@0.26.4: - resolution: {integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==, + } + engines: { node: ">=16" } hasBin: true dependencies: - '@mapbox/node-pre-gyp': 1.0.11 - '@rollup/pluginutils': 4.2.1 + "@mapbox/node-pre-gyp": 1.0.11 + "@rollup/pluginutils": 4.2.1 acorn: 8.11.3 acorn-import-attributes: 1.9.2(acorn@8.11.3) async-sema: 3.1.1 @@ -1355,7 +1758,10 @@ packages: dev: true /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + resolution: + { + integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, + } hasBin: true dependencies: jsonparse: 1.3.1 @@ -1363,11 +1769,17 @@ packages: dev: true /abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + resolution: + { + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, + } dev: true /acorn-import-attributes@1.9.2(acorn@8.11.3): - resolution: {integrity: sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==} + resolution: + { + integrity: sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==, + } peerDependencies: acorn: ^8 dependencies: @@ -1375,19 +1787,28 @@ packages: dev: true /acorn-walk@8.3.2: - resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==, + } + engines: { node: ">=0.4.0" } dev: true /acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, + } + engines: { node: ">=0.4.0" } hasBin: true dev: true /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, + } + engines: { node: ">= 6.0.0" } dependencies: debug: 4.3.4 transitivePeerDependencies: @@ -1395,7 +1816,10 @@ packages: dev: true /ajv-formats@2.1.1(ajv@8.12.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + resolution: + { + integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, + } peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -1405,7 +1829,10 @@ packages: ajv: 8.12.0 /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + resolution: + { + integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, + } dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -1413,89 +1840,137 @@ packages: uri-js: 4.4.1 /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, + } + engines: { node: ">=6" } dev: true /ansi-escapes@6.2.0: - resolution: {integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==, + } + engines: { node: ">=14.16" } dependencies: type-fest: 3.13.1 dev: true /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: ">=8" } /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, + } + engines: { node: ">=12" } /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: ">=4" } dependencies: color-convert: 1.9.3 dev: true /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: ">=8" } dependencies: color-convert: 2.0.1 /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, + } + engines: { node: ">=12" } /aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + resolution: + { + integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==, + } dev: true /are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==, + } + engines: { node: ">=10" } dependencies: delegates: 1.0.0 readable-stream: 3.6.2 dev: true /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, + } dependencies: sprintf-js: 1.0.3 dev: true /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } dev: true /array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 is-array-buffer: 3.0.4 dev: true /array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==, + } + engines: { node: ">=0.10.0" } dev: true /array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + resolution: + { + integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, + } dev: true /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: ">=8" } dev: true /array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -1504,8 +1979,11 @@ packages: dev: true /arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, + } + engines: { node: ">= 0.4" } dependencies: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 @@ -1518,35 +1996,50 @@ packages: dev: true /arrgv@1.0.2: - resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==, + } + engines: { node: ">=8.0.0" } dev: true /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, + } + engines: { node: ">=0.10.0" } dev: true /arrify@3.0.0: - resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==, + } + engines: { node: ">=12" } dev: true /async-sema@3.1.1: - resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + resolution: + { + integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, + } dev: true /ava@6.1.2: - resolution: {integrity: sha512-WcpxJ8yZ7mk9ABTinD0IAjcemovSeVGjuuwZx0JS9johREWFeLTl8UP6wd7l6nmnrWqkKZdwaD71a/ocH4qPKw==} - engines: {node: ^18.18 || ^20.8 || ^21} + resolution: + { + integrity: sha512-WcpxJ8yZ7mk9ABTinD0IAjcemovSeVGjuuwZx0JS9johREWFeLTl8UP6wd7l6nmnrWqkKZdwaD71a/ocH4qPKw==, + } + engines: { node: ^18.18 || ^20.8 || ^21 } hasBin: true peerDependencies: - '@ava/typescript': '*' + "@ava/typescript": "*" peerDependenciesMeta: - '@ava/typescript': + "@ava/typescript": optional: true dependencies: - '@vercel/nft': 0.26.4 + "@vercel/nft": 0.26.4 acorn: 8.11.3 acorn-walk: 8.3.2 ansi-styles: 6.2.1 @@ -1592,67 +2085,100 @@ packages: dev: true /available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, + } + engines: { node: ">= 0.4" } dependencies: possible-typed-array-names: 1.0.0 dev: true /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } /better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, + } + engines: { node: ">=4" } dependencies: is-windows: 1.0.2 dev: true /bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, + } dependencies: file-uri-to-path: 1.0.0 dev: true /blueimp-md5@2.19.0: - resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} + resolution: + { + integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==, + } dev: true /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 dev: true /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + resolution: + { + integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, + } dependencies: balanced-match: 1.0.2 /braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, + } + engines: { node: ">=8" } dependencies: fill-range: 7.0.1 dev: true /breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} + resolution: + { + integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==, + } dependencies: wcwidth: 1.0.1 dev: true /busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} + resolution: + { + integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, + } + engines: { node: ">=10.16.0" } dependencies: streamsearch: 1.1.0 dev: false /call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, + } + engines: { node: ">= 0.4" } dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -1662,25 +2188,37 @@ packages: dev: true /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: ">=6" } dev: true /callsites@4.1.0: - resolution: {integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==, + } + engines: { node: ">=12.20" } dev: true /camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + resolution: + { + integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, + } dependencies: pascal-case: 3.1.2 tslib: 2.6.2 dev: true /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, + } + engines: { node: ">=8" } dependencies: camelcase: 5.3.1 map-obj: 4.3.0 @@ -1688,16 +2226,25 @@ packages: dev: true /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, + } + engines: { node: ">=6" } dev: true /caniuse-lite@1.0.30001515: - resolution: {integrity: sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA==} + resolution: + { + integrity: sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA==, + } dev: false /capital-case@1.0.4: - resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} + resolution: + { + integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==, + } dependencies: no-case: 3.0.4 tslib: 2.6.2 @@ -1705,15 +2252,21 @@ packages: dev: true /cbor@9.0.2: - resolution: {integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==, + } + engines: { node: ">=16" } dependencies: nofilter: 3.1.0 dev: true /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: ">=4" } dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 @@ -1721,20 +2274,29 @@ packages: dev: true /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: ">=10" } dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true /chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + resolution: + { + integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==, + } + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } dev: true /change-case@4.1.2: - resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + resolution: + { + integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, + } dependencies: camel-case: 4.1.2 capital-case: 1.0.4 @@ -1751,53 +2313,83 @@ packages: dev: true /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + resolution: + { + integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, + } dev: true /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, + } + engines: { node: ">=10" } dev: true /chunkd@2.0.1: - resolution: {integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==} + resolution: + { + integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==, + } dev: true /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, + } + engines: { node: ">=8" } dev: true /ci-info@4.0.0: - resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==, + } + engines: { node: ">=8" } dev: true /ci-parallel-vars@1.0.1: - resolution: {integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==} + resolution: + { + integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==, + } dev: true /cli-cursor@4.0.0: - resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: restore-cursor: 4.0.0 dev: true /cli-truncate@4.0.0: - resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==, + } + engines: { node: ">=18" } dependencies: slice-ansi: 5.0.0 string-width: 7.1.0 dev: true /client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + resolution: + { + integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, + } dev: false /cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + resolution: + { + integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, + } dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -1805,8 +2397,11 @@ packages: dev: true /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, + } + engines: { node: ">=12" } dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -1814,73 +2409,115 @@ packages: dev: true /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + } + engines: { node: ">=0.8" } dev: true /code-excerpt@4.0.0: - resolution: {integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: convert-to-spaces: 2.0.1 dev: true /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } dependencies: color-name: 1.1.3 dev: true /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: ">=7.0.0" } dependencies: color-name: 1.1.4 /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } dev: true /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + resolution: + { + integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==, + } hasBin: true dev: true /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + resolution: + { + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, + } dev: true /commander@11.1.0: - resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==, + } + engines: { node: ">=16" } dev: true /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, + } + engines: { node: ">= 12" } dev: true /common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + resolution: + { + integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, + } dev: true /compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + resolution: + { + integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, + } dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 dev: true /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } dev: true /concordance@5.0.4: - resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} - engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} + resolution: + { + integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==, + } + engines: { node: ">=10.18.0 <11 || >=12.14.0 <13 || >=14" } dependencies: date-time: 3.1.0 esutils: 2.0.3 @@ -1893,11 +2530,17 @@ packages: dev: true /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + resolution: + { + integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==, + } dev: true /constant-case@3.0.4: - resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} + resolution: + { + integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==, + } dependencies: no-case: 3.0.4 tslib: 2.6.2 @@ -1905,22 +2548,31 @@ packages: dev: true /conventional-changelog-angular@7.0.0: - resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==, + } + engines: { node: ">=16" } dependencies: compare-func: 2.0.0 dev: true /conventional-changelog-conventionalcommits@7.0.2: - resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==, + } + engines: { node: ">=16" } dependencies: compare-func: 2.0.0 dev: true /conventional-commits-parser@5.0.0: - resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==, + } + engines: { node: ">=16" } hasBin: true dependencies: JSONStream: 1.3.5 @@ -1930,29 +2582,38 @@ packages: dev: true /convert-to-spaces@2.0.1: - resolution: {integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.24)(cosmiconfig@8.3.6)(typescript@5.3.3): - resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} - engines: {node: '>=v16'} + resolution: + { + integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, + } + engines: { node: ">=v16" } peerDependencies: - '@types/node': '*' - cosmiconfig: '>=8.2' - typescript: '>=4' + "@types/node": "*" + cosmiconfig: ">=8.2" + typescript: ">=4" dependencies: - '@types/node': 20.11.24 + "@types/node": 20.11.24 cosmiconfig: 8.3.6(typescript@5.3.3) jiti: 1.21.0 typescript: 5.3.3 dev: true /cosmiconfig@8.3.6(typescript@5.3.3): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, + } + engines: { node: ">=14" } peerDependencies: - typescript: '>=4.9.5' + typescript: ">=4.9.5" peerDependenciesMeta: typescript: optional: true @@ -1965,7 +2626,10 @@ packages: dev: true /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + resolution: + { + integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, + } dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -1973,28 +2637,43 @@ packages: dev: true /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: ">= 8" } dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 /csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} + resolution: + { + integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==, + } dev: true /csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} + resolution: + { + integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==, + } dev: true /csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} + resolution: + { + integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==, + } dev: true /csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} + resolution: + { + integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==, + } + engines: { node: ">= 0.1.90" } dependencies: csv-generate: 3.4.3 csv-parse: 4.16.3 @@ -2003,29 +2682,41 @@ packages: dev: true /currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==, + } + engines: { node: ">=0.10.0" } dependencies: array-find-index: 1.0.2 dev: true /dargs@8.1.0: - resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==, + } + engines: { node: ">=12" } dev: true /date-time@3.1.0: - resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==, + } + engines: { node: ">=6" } dependencies: time-zone: 1.0.0 dev: true /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: ">=6.0" } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true @@ -2034,36 +2725,54 @@ packages: dev: true /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, + } + engines: { node: ">=0.10.0" } dependencies: decamelize: 1.2.0 map-obj: 1.0.1 dev: true /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, + } + engines: { node: ">=0.10.0" } dev: true /deep-object-diff@1.1.9: - resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} + resolution: + { + integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==, + } dev: true /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, + } + engines: { node: ">=0.10.0" } dev: true /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + resolution: + { + integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, + } dependencies: clone: 1.0.4 dev: true /define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, + } + engines: { node: ">= 0.4" } dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 @@ -2071,8 +2780,11 @@ packages: dev: true /define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, + } + engines: { node: ">= 0.4" } dependencies: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 @@ -2080,75 +2792,117 @@ packages: dev: true /delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + resolution: + { + integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, + } dev: true /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + } + engines: { node: ">=8" } dev: true /detect-libc@2.0.2: - resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==, + } + engines: { node: ">=8" } dev: true /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: ">=8" } dependencies: path-type: 4.0.0 dev: true /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, + } dependencies: no-case: 3.0.4 tslib: 2.6.2 dev: true /dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, + } + engines: { node: ">=8" } dependencies: is-obj: 2.0.0 dev: true /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } /emittery@1.0.3: - resolution: {integrity: sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==, + } + engines: { node: ">=14.16" } dev: true /emoji-regex@10.3.0: - resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} + resolution: + { + integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, + } dev: true /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } /enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, + } + engines: { node: ">=8.6" } dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 dev: true /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } dependencies: is-arrayish: 0.2.1 dev: true /es-abstract@1.22.5: - resolution: {integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==, + } + engines: { node: ">= 0.4" } dependencies: array-buffer-byte-length: 1.0.1 arraybuffer.prototype.slice: 1.0.3 @@ -2194,20 +2948,29 @@ packages: dev: true /es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, + } + engines: { node: ">= 0.4" } dependencies: get-intrinsic: 1.2.4 dev: true /es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, + } + engines: { node: ">= 0.4" } dev: true /es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==, + } + engines: { node: ">= 0.4" } dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 @@ -2215,14 +2978,20 @@ packages: dev: true /es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + resolution: + { + integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, + } dependencies: hasown: 2.0.1 dev: true /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, + } + engines: { node: ">= 0.4" } dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 @@ -2230,77 +2999,107 @@ packages: dev: true /esbuild@0.18.12: - resolution: {integrity: sha512-XuOVLDdtsDslXStStduT41op21Ytmf4/BDS46aa3xPJ7X5h2eMWBF1oAe3QjUH3bDksocNXgzGUZ7XHIBya6Tg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-XuOVLDdtsDslXStStduT41op21Ytmf4/BDS46aa3xPJ7X5h2eMWBF1oAe3QjUH3bDksocNXgzGUZ7XHIBya6Tg==, + } + engines: { node: ">=12" } hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.18.12 - '@esbuild/android-arm64': 0.18.12 - '@esbuild/android-x64': 0.18.12 - '@esbuild/darwin-arm64': 0.18.12 - '@esbuild/darwin-x64': 0.18.12 - '@esbuild/freebsd-arm64': 0.18.12 - '@esbuild/freebsd-x64': 0.18.12 - '@esbuild/linux-arm': 0.18.12 - '@esbuild/linux-arm64': 0.18.12 - '@esbuild/linux-ia32': 0.18.12 - '@esbuild/linux-loong64': 0.18.12 - '@esbuild/linux-mips64el': 0.18.12 - '@esbuild/linux-ppc64': 0.18.12 - '@esbuild/linux-riscv64': 0.18.12 - '@esbuild/linux-s390x': 0.18.12 - '@esbuild/linux-x64': 0.18.12 - '@esbuild/netbsd-x64': 0.18.12 - '@esbuild/openbsd-x64': 0.18.12 - '@esbuild/sunos-x64': 0.18.12 - '@esbuild/win32-arm64': 0.18.12 - '@esbuild/win32-ia32': 0.18.12 - '@esbuild/win32-x64': 0.18.12 + "@esbuild/android-arm": 0.18.12 + "@esbuild/android-arm64": 0.18.12 + "@esbuild/android-x64": 0.18.12 + "@esbuild/darwin-arm64": 0.18.12 + "@esbuild/darwin-x64": 0.18.12 + "@esbuild/freebsd-arm64": 0.18.12 + "@esbuild/freebsd-x64": 0.18.12 + "@esbuild/linux-arm": 0.18.12 + "@esbuild/linux-arm64": 0.18.12 + "@esbuild/linux-ia32": 0.18.12 + "@esbuild/linux-loong64": 0.18.12 + "@esbuild/linux-mips64el": 0.18.12 + "@esbuild/linux-ppc64": 0.18.12 + "@esbuild/linux-riscv64": 0.18.12 + "@esbuild/linux-s390x": 0.18.12 + "@esbuild/linux-x64": 0.18.12 + "@esbuild/netbsd-x64": 0.18.12 + "@esbuild/openbsd-x64": 0.18.12 + "@esbuild/sunos-x64": 0.18.12 + "@esbuild/win32-arm64": 0.18.12 + "@esbuild/win32-ia32": 0.18.12 + "@esbuild/win32-x64": 0.18.12 dev: true /escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, + } + engines: { node: ">=6" } dev: true /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: ">=0.8.0" } dev: true /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, + } + engines: { node: ">=8" } dev: true /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, + } + engines: { node: ">=12" } dev: true /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: { node: ">=4" } hasBin: true dev: true /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } dev: true /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: ">=0.10.0" } dev: true /eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + resolution: + { + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, + } dev: true /execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} + resolution: + { + integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, + } + engines: { node: ">=16.17" } dependencies: cross-spawn: 7.0.3 get-stream: 8.0.1 @@ -2314,12 +3113,18 @@ packages: dev: true /extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + resolution: + { + integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, + } dev: true /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: { node: ">=4" } dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 @@ -2327,71 +3132,104 @@ packages: dev: true /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } /fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + resolution: + { + integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, + } dev: true /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 + resolution: + { + integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, + } + engines: { node: ">=8.6.0" } + dependencies: + "@nodelib/fs.stat": 2.0.5 + "@nodelib/fs.walk": 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 dev: true /fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + resolution: + { + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, + } dependencies: reusify: 1.0.4 dev: true /figures@6.0.1: - resolution: {integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==, + } + engines: { node: ">=18" } dependencies: is-unicode-supported: 2.0.0 dev: true /file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, + } dev: true /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + } + engines: { node: ">=8" } dependencies: to-regex-range: 5.0.1 dev: true /find-up-simple@1.0.0: - resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==, + } + engines: { node: ">=18" } dev: true /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: { node: ">=8" } dependencies: locate-path: 5.0.0 path-exists: 4.0.0 dev: true /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: ">=10" } dependencies: locate-path: 6.0.0 path-exists: 4.0.0 dev: true /find-up@7.0.0: - resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==, + } + engines: { node: ">=18" } dependencies: locate-path: 7.2.0 path-exists: 5.0.0 @@ -2399,32 +3237,47 @@ packages: dev: true /find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + resolution: + { + integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, + } dependencies: micromatch: 4.0.5 pkg-dir: 4.2.0 dev: true /focus-visible@5.2.0: - resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==} + resolution: + { + integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==, + } dev: false /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } dependencies: is-callable: 1.2.7 dev: true /foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==, + } + engines: { node: ">=14" } dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, + } + engines: { node: ">=12" } dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -2432,8 +3285,11 @@ packages: dev: true /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, + } + engines: { node: ">=6 <7 || >=8" } dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 @@ -2441,8 +3297,11 @@ packages: dev: true /fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, + } + engines: { node: ">=6 <7 || >=8" } dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 @@ -2450,31 +3309,46 @@ packages: dev: true /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, + } + engines: { node: ">= 8" } dependencies: minipass: 3.3.6 dev: true /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } dev: true /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] requiresBuild: true dev: true optional: true /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + resolution: + { + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, + } dev: true /function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -2483,12 +3357,18 @@ packages: dev: true /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } dev: true /gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==, + } + engines: { node: ">=10" } dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -2502,18 +3382,27 @@ packages: dev: true /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: { node: 6.* || 8.* || >= 10.* } dev: true /get-east-asian-width@1.2.0: - resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==, + } + engines: { node: ">=18" } dev: true /get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, + } + engines: { node: ">= 0.4" } dependencies: es-errors: 1.3.0 function-bind: 1.1.2 @@ -2523,13 +3412,19 @@ packages: dev: true /get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, + } + engines: { node: ">=16" } dev: true /get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -2537,8 +3432,11 @@ packages: dev: true /git-raw-commits@4.0.0: - resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==, + } + engines: { node: ">=16" } hasBin: true dependencies: dargs: 8.1.0 @@ -2547,19 +3445,28 @@ packages: dev: true /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: ">= 6" } dependencies: is-glob: 4.0.3 dev: true /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + resolution: + { + integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, + } dev: false /glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, + } + engines: { node: ">=16 || 14 >=14.17" } hasBin: true dependencies: foreground-child: 3.1.1 @@ -2569,7 +3476,10 @@ packages: path-scurry: 1.10.1 /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -2580,22 +3490,31 @@ packages: dev: true /global-directory@4.0.1: - resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==, + } + engines: { node: ">=18" } dependencies: ini: 4.1.1 dev: true /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + } + engines: { node: ">= 0.4" } dependencies: define-properties: 1.2.1 dev: true /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: ">=10" } dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -2606,10 +3525,13 @@ packages: dev: true /globby@14.0.1: - resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==, + } + engines: { node: ">=18" } dependencies: - '@sindresorhus/merge-streams': 2.3.0 + "@sindresorhus/merge-streams": 2.3.0 fast-glob: 3.3.2 ignore: 5.3.1 path-type: 5.0.0 @@ -2618,85 +3540,133 @@ packages: dev: true /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } dependencies: get-intrinsic: 1.2.4 dev: true /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + resolution: + { + integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, + } dev: true /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, + } + engines: { node: ">=6" } dev: true /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } dev: true /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: ">=4" } dev: true /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: ">=8" } dev: true /has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + resolution: + { + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, + } dependencies: es-define-property: 1.0.0 dev: true /has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==, + } + engines: { node: ">= 0.4" } dev: true /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: { node: ">= 0.4" } dev: true /has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, + } + engines: { node: ">= 0.4" } dependencies: has-symbols: 1.0.3 dev: true /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + resolution: + { + integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==, + } dev: true /hasown@2.0.1: - resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==, + } + engines: { node: ">= 0.4" } dependencies: function-bind: 1.1.2 dev: true /header-case@2.0.4: - resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + resolution: + { + integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, + } dependencies: capital-case: 1.0.4 tslib: 2.6.2 dev: true /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + resolution: + { + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, + } dev: true /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: { node: ">= 6" } dependencies: agent-base: 6.0.2 debug: 4.3.4 @@ -2705,83 +3675,128 @@ packages: dev: true /human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + resolution: + { + integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, + } dev: true /human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} + resolution: + { + integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, + } + engines: { node: ">=16.17.0" } dev: true /husky@9.0.11: - resolution: {integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==, + } + engines: { node: ">=18" } hasBin: true dev: true /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + } + engines: { node: ">=0.10.0" } dependencies: safer-buffer: 2.1.2 dev: true /ignore-by-default@2.1.0: - resolution: {integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==} - engines: {node: '>=10 <11 || >=12 <13 || >=14'} + resolution: + { + integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==, + } + engines: { node: ">=10 <11 || >=12 <13 || >=14" } dev: true /ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, + } + engines: { node: ">= 4" } dev: true /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: { node: ">=6" } dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 dev: true /import-meta-resolve@4.0.0: - resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} + resolution: + { + integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==, + } dev: true /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: ">=0.8.19" } dev: true /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, + } + engines: { node: ">=8" } dev: true /indent-string@5.0.0: - resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==, + } + engines: { node: ">=12" } dev: true /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } dev: true /ini@4.1.1: - resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } dev: true /internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, + } + engines: { node: ">= 0.4" } dependencies: es-errors: 1.3.0 hasown: 2.0.1 @@ -2789,219 +3804,333 @@ packages: dev: true /irregular-plurals@3.5.0: - resolution: {integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==, + } + engines: { node: ">=8" } dev: true /is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 dev: true /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } dev: true /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } dependencies: has-bigints: 1.0.2 dev: true /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: { node: ">= 0.4" } dev: true /is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + resolution: + { + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, + } dependencies: hasown: 2.0.1 dev: true /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: ">= 0.4" } dependencies: has-tostringtag: 1.0.2 dev: true /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: ">=0.10.0" } dev: true /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: ">=8" } /is-fullwidth-code-point@4.0.0: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, + } + engines: { node: ">=12" } dev: true /is-fullwidth-code-point@5.0.0: - resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==, + } + engines: { node: ">=18" } dependencies: get-east-asian-width: 1.2.0 dev: true /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: ">=0.10.0" } dependencies: is-extglob: 2.1.1 dev: true /is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==, + } + engines: { node: ">= 0.4" } dev: true /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: { node: ">= 0.4" } dependencies: has-tostringtag: 1.0.2 dev: true /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: ">=0.12.0" } dev: true /is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, + } + engines: { node: ">=8" } dev: true /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, + } + engines: { node: ">=0.10.0" } dev: true /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==, + } + engines: { node: ">=0.10.0" } dev: true /is-promise@4.0.0: - resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} + resolution: + { + integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==, + } dev: true /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 dev: true /is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 dev: true /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: ">= 0.4" } dependencies: has-tostringtag: 1.0.2 dev: true /is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, + } + engines: { node: ">=4" } dependencies: better-path-resolve: 1.0.0 dev: true /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: ">= 0.4" } dependencies: has-symbols: 1.0.3 dev: true /is-text-path@2.0.0: - resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==, + } + engines: { node: ">=8" } dependencies: text-extensions: 2.4.0 dev: true /is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, + } + engines: { node: ">= 0.4" } dependencies: which-typed-array: 1.1.14 dev: true /is-unicode-supported@2.0.0: - resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==, + } + engines: { node: ">=18" } dev: true /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } dependencies: call-bind: 1.0.7 dev: true /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: { node: ">=0.10.0" } dev: true /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } dev: true /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } /jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + } + engines: { node: ">=14" } dependencies: - '@isaacs/cliui': 8.0.2 + "@isaacs/cliui": 8.0.2 optionalDependencies: - '@pkgjs/parseargs': 0.11.0 + "@pkgjs/parseargs": 0.11.0 /jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + resolution: + { + integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, + } hasBin: true dev: true /js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==, + } + engines: { node: ">= 0.8" } dev: true /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } hasBin: true dependencies: argparse: 1.0.10 @@ -3009,37 +4138,58 @@ packages: dev: true /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } hasBin: true dependencies: argparse: 2.0.1 dev: true /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } dev: true /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + resolution: + { + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, + } /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, + } + engines: { node: ">=6" } hasBin: true dev: true /jsonc-parser@3.2.1: - resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} + resolution: + { + integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==, + } dev: true /jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + resolution: + { + integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, + } optionalDependencies: graceful-fs: 4.2.11 dev: true /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + resolution: + { + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + } dependencies: universalify: 2.0.1 optionalDependencies: @@ -3047,37 +4197,58 @@ packages: dev: true /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} + resolution: + { + integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, + } + engines: { "0": node >= 0.2.0 } dev: true /jsonpath-plus@7.2.0: - resolution: {integrity: sha512-zBfiUPM5nD0YZSBT/o/fbCUlCcepMIdP0CJZxM1+KgA4f2T206f6VAg9e7mX35+KlMaIc5qXW34f3BnwJ3w+RA==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-zBfiUPM5nD0YZSBT/o/fbCUlCcepMIdP0CJZxM1+KgA4f2T206f6VAg9e7mX35+KlMaIc5qXW34f3BnwJ3w+RA==, + } + engines: { node: ">=12.0.0" } dev: false /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, + } + engines: { node: ">=0.10.0" } dev: true /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, + } + engines: { node: ">=6" } dev: true /lilconfig@3.0.0: - resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==, + } + engines: { node: ">=14" } dev: true /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } dev: true /lint-staged@15.2.2: - resolution: {integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==} - engines: {node: '>=18.12.0'} + resolution: + { + integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==, + } + engines: { node: ">=18.12.0" } hasBin: true dependencies: chalk: 5.3.0 @@ -3095,8 +4266,11 @@ packages: dev: true /listr2@8.0.1: - resolution: {integrity: sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==} - engines: {node: '>=18.0.0'} + resolution: + { + integrity: sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==, + } + engines: { node: ">=18.0.0" } dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 @@ -3107,35 +4281,50 @@ packages: dev: true /lit-element@3.3.2: - resolution: {integrity: sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==} + resolution: + { + integrity: sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==, + } dependencies: - '@lit-labs/ssr-dom-shim': 1.1.1 - '@lit/reactive-element': 1.6.2 + "@lit-labs/ssr-dom-shim": 1.1.1 + "@lit/reactive-element": 1.6.2 lit-html: 2.7.5 dev: false /lit-html@2.7.5: - resolution: {integrity: sha512-YqUzpisJodwKIlbMFCtyrp58oLloKGnnPLMJ1t23cbfIJjg/H9pvLWK4XS69YeubK5HUs1UE4ys9w5dP1zg6IA==} + resolution: + { + integrity: sha512-YqUzpisJodwKIlbMFCtyrp58oLloKGnnPLMJ1t23cbfIJjg/H9pvLWK4XS69YeubK5HUs1UE4ys9w5dP1zg6IA==, + } dependencies: - '@types/trusted-types': 2.0.3 + "@types/trusted-types": 2.0.3 dev: false /lit@2.7.6: - resolution: {integrity: sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg==} + resolution: + { + integrity: sha512-1amFHA7t4VaaDe+vdQejSVBklwtH9svGoG6/dZi9JhxtJBBlqY5D1RV7iLUYY0trCqQc4NfhYYZilZiVHt7Hxg==, + } dependencies: - '@lit/reactive-element': 1.6.2 + "@lit/reactive-element": 1.6.2 lit-element: 3.3.2 lit-html: 2.7.5 dev: false /load-json-file@7.0.1: - resolution: {integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true /load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, + } + engines: { node: ">=6" } dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 @@ -3144,69 +4333,111 @@ packages: dev: true /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: { node: ">=8" } dependencies: p-locate: 4.1.0 dev: true /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: ">=10" } dependencies: p-locate: 5.0.0 dev: true /locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: p-locate: 6.0.0 dev: true /lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + resolution: + { + integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, + } dev: true /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, + } dev: true /lodash.kebabcase@4.1.1: - resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + resolution: + { + integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==, + } dev: true /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } dev: true /lodash.mergewith@4.6.2: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + resolution: + { + integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, + } dev: true /lodash.snakecase@4.1.1: - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + resolution: + { + integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==, + } dev: true /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, + } dev: true /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + resolution: + { + integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, + } dev: true /lodash.upperfirst@4.3.1: - resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + resolution: + { + integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==, + } dev: true /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } dev: true /log-update@6.0.0: - resolution: {integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==, + } + engines: { node: ">=18" } dependencies: ansi-escapes: 6.2.0 cli-cursor: 4.0.0 @@ -3216,84 +4447,123 @@ packages: dev: true /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } hasBin: true dependencies: js-tokens: 4.0.0 dev: false /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, + } dependencies: tslib: 2.6.2 dev: true /lru-cache@10.0.0: - resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==} - engines: {node: 14 || >=16.14} + resolution: + { + integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==, + } + engines: { node: 14 || >=16.14 } /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + resolution: + { + integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, + } dependencies: pseudomap: 1.0.2 yallist: 2.1.2 dev: true /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: ">=10" } dependencies: yallist: 4.0.0 dev: true /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, + } + engines: { node: ">=8" } dependencies: semver: 6.3.1 dev: true /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, + } + engines: { node: ">=0.10.0" } dev: true /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, + } + engines: { node: ">=8" } dev: true /matcher@5.0.0: - resolution: {integrity: sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: escape-string-regexp: 5.0.0 dev: true /md5-hex@3.0.1: - resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==, + } + engines: { node: ">=8" } dependencies: blueimp-md5: 2.19.0 dev: true /memoize@10.0.0: - resolution: {integrity: sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-H6cBLgsi6vMWOcCpvVCdFFnl3kerEXbrYh9q+lY6VXvQSmM6CkmV08VOwT+WE2tzIEqRPFfAq3fm4v/UIW6mSA==, + } + engines: { node: ">=18" } dependencies: mimic-function: 5.0.0 dev: true /meow@12.1.1: - resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} - engines: {node: '>=16.10'} + resolution: + { + integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==, + } + engines: { node: ">=16.10" } dev: true /meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, + } + engines: { node: ">=8" } dependencies: - '@types/minimist': 1.2.5 + "@types/minimist": 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -3307,57 +4577,87 @@ packages: dev: true /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } dev: true /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: ">= 8" } dev: true /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: { node: ">=8.6" } dependencies: braces: 3.0.2 picomatch: 2.3.1 dev: true /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: ">=6" } dev: true /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, + } + engines: { node: ">=12" } dev: true /mimic-function@5.0.0: - resolution: {integrity: sha512-RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g==, + } + engines: { node: ">=18" } dev: true /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, + } + engines: { node: ">=4" } dev: true /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } dependencies: brace-expansion: 1.1.11 dev: true /minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, + } + engines: { node: ">=16 || 14 >=14.17" } dependencies: brace-expansion: 2.0.1 /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, + } + engines: { node: ">= 6" } dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 @@ -3365,77 +4665,110 @@ packages: dev: true /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } dev: true /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==, + } + engines: { node: ">=8" } dependencies: yallist: 4.0.0 dev: true /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==, + } + engines: { node: ">=8" } dev: true /minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, + } + engines: { node: ">=16 || 14 >=14.17" } /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, + } + engines: { node: ">= 8" } dependencies: minipass: 3.3.6 yallist: 4.0.0 dev: true /mixme@0.5.10: - resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==, + } + engines: { node: ">= 8.0.0" } dev: true /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, + } + engines: { node: ">=10" } hasBin: true dev: true /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } dev: true /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } dev: true /nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true /next@13.4.10(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-4ep6aKxVTQ7rkUW2fBLhpBr/5oceCuf4KmlUpvG/aXuDTIf9mexNSpabUD6RWPspu6wiJJvozZREhXhueYO36A==} - engines: {node: '>=16.8.0'} + resolution: + { + integrity: sha512-4ep6aKxVTQ7rkUW2fBLhpBr/5oceCuf4KmlUpvG/aXuDTIf9mexNSpabUD6RWPspu6wiJJvozZREhXhueYO36A==, + } + engines: { node: ">=16.8.0" } hasBin: true peerDependencies: - '@opentelemetry/api': ^1.1.0 - fibers: '>= 3.1.0' + "@opentelemetry/api": ^1.1.0 + fibers: ">= 3.1.0" react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - '@opentelemetry/api': + "@opentelemetry/api": optional: true fibers: optional: true sass: optional: true dependencies: - '@next/env': 13.4.10 - '@swc/helpers': 0.5.1 + "@next/env": 13.4.10 + "@swc/helpers": 0.5.1 busboy: 1.6.0 caniuse-lite: 1.0.30001515 postcss: 8.4.14 @@ -3445,30 +4778,36 @@ packages: watchpack: 2.4.0 zod: 3.21.4 optionalDependencies: - '@next/swc-darwin-arm64': 13.4.10 - '@next/swc-darwin-x64': 13.4.10 - '@next/swc-linux-arm64-gnu': 13.4.10 - '@next/swc-linux-arm64-musl': 13.4.10 - '@next/swc-linux-x64-gnu': 13.4.10 - '@next/swc-linux-x64-musl': 13.4.10 - '@next/swc-win32-arm64-msvc': 13.4.10 - '@next/swc-win32-ia32-msvc': 13.4.10 - '@next/swc-win32-x64-msvc': 13.4.10 + "@next/swc-darwin-arm64": 13.4.10 + "@next/swc-darwin-x64": 13.4.10 + "@next/swc-linux-arm64-gnu": 13.4.10 + "@next/swc-linux-arm64-musl": 13.4.10 + "@next/swc-linux-x64-gnu": 13.4.10 + "@next/swc-linux-x64-musl": 13.4.10 + "@next/swc-win32-arm64-msvc": 13.4.10 + "@next/swc-win32-ia32-msvc": 13.4.10 + "@next/swc-win32-x64-msvc": 13.4.10 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" - babel-plugin-macros dev: false /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, + } dependencies: lower-case: 2.0.2 tslib: 2.6.2 dev: true /node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -3479,25 +4818,37 @@ packages: dev: true /node-gyp-build@4.8.0: - resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} + resolution: + { + integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==, + } hasBin: true dev: true /nofilter@3.1.0: - resolution: {integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==} - engines: {node: '>=12.19'} + resolution: + { + integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==, + } + engines: { node: ">=12.19" } dev: true /nopt@5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==, + } + engines: { node: ">=6" } hasBin: true dependencies: abbrev: 1.1.1 dev: true /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + resolution: + { + integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, + } dependencies: hosted-git-info: 2.8.9 resolve: 1.22.8 @@ -3506,14 +4857,20 @@ packages: dev: true /npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: path-key: 4.0.0 dev: true /npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + resolution: + { + integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==, + } dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 @@ -3522,22 +4879,34 @@ packages: dev: true /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: ">=0.10.0" } dev: true /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + resolution: + { + integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, + } dev: true /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: ">= 0.4" } dev: true /object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -3546,240 +4915,360 @@ packages: dev: true /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } dependencies: wrappy: 1.0.2 dev: true /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + } + engines: { node: ">=6" } dependencies: mimic-fn: 2.1.0 dev: true /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, + } + engines: { node: ">=12" } dependencies: mimic-fn: 4.0.0 dev: true /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, + } + engines: { node: ">=0.10.0" } dev: true /outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + resolution: + { + integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, + } dev: true /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, + } + engines: { node: ">=8" } dependencies: p-map: 2.1.0 dev: true /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: ">=6" } dependencies: p-try: 2.2.0 dev: true /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: ">=10" } dependencies: yocto-queue: 0.1.0 dev: true /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: yocto-queue: 1.0.0 dev: true /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: { node: ">=8" } dependencies: p-limit: 2.3.0 dev: true /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: ">=10" } dependencies: p-limit: 3.1.0 dev: true /p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: p-limit: 4.0.0 dev: true /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, + } + engines: { node: ">=6" } dev: true /p-map@7.0.1: - resolution: {integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==, + } + engines: { node: ">=18" } dev: true /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: ">=6" } dev: true /package-config@5.0.0: - resolution: {integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==, + } + engines: { node: ">=18" } dependencies: find-up-simple: 1.0.0 load-json-file: 7.0.1 dev: true /param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + resolution: + { + integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==, + } dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: true /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: ">=6" } dependencies: callsites: 3.1.0 dev: true /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: ">=8" } dependencies: - '@babel/code-frame': 7.23.5 + "@babel/code-frame": 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 dev: true /parse-ms@4.0.0: - resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==, + } + engines: { node: ">=18" } dev: true /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + resolution: + { + integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, + } dependencies: no-case: 3.0.4 tslib: 2.6.2 dev: true /path-case@3.0.4: - resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} + resolution: + { + integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==, + } dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: true /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: ">=8" } dev: true /path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: ">=0.10.0" } dev: true /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: ">=8" } /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, + } + engines: { node: ">=12" } dev: true /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } dev: true /path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==, + } + engines: { node: ">=16 || 14 >=14.17" } dependencies: lru-cache: 10.0.0 minipass: 7.0.4 /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: ">=8" } dev: true /path-type@5.0.0: - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==, + } + engines: { node: ">=12" } dev: true /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: ">=8.6" } dev: true /picomatch@3.0.1: - resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==, + } + engines: { node: ">=10" } dev: true /pidtree@0.6.0: - resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, + } + engines: { node: ">=0.10" } hasBin: true dev: true /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, + } + engines: { node: ">=6" } dev: true /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, + } + engines: { node: ">=8" } dependencies: find-up: 4.1.0 dev: true /plur@5.1.0: - resolution: {integrity: sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: irregular-plurals: 3.5.0 dev: true /possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==, + } + engines: { node: ">= 0.4" } dev: true /postcss@8.4.14: - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.6 picocolors: 1.0.0 @@ -3787,8 +5276,11 @@ packages: dev: false /postcss@8.4.26: - resolution: {integrity: sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==, + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.6 picocolors: 1.0.0 @@ -3796,8 +5288,11 @@ packages: dev: true /preferred-pm@3.1.3: - resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==, + } + engines: { node: ">=10" } dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 @@ -3806,42 +5301,66 @@ packages: dev: true /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, + } + engines: { node: ">=10.13.0" } hasBin: true dev: true /prettier@3.2.5: - resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==, + } + engines: { node: ">=14" } hasBin: true /pretty-ms@9.0.0: - resolution: {integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==, + } + engines: { node: ">=18" } dependencies: parse-ms: 4.0.0 dev: true /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + resolution: + { + integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, + } dev: true /punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, + } + engines: { node: ">=6" } /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } dev: true /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, + } + engines: { node: ">=8" } dev: true /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + resolution: + { + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + } peerDependencies: react: ^18.2.0 dependencies: @@ -3851,15 +5370,21 @@ packages: dev: false /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + } + engines: { node: ">=0.10.0" } dependencies: loose-envify: 1.4.0 dev: false /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, + } + engines: { node: ">=8" } dependencies: find-up: 4.1.0 read-pkg: 5.2.0 @@ -3867,18 +5392,24 @@ packages: dev: true /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, + } + engines: { node: ">=8" } dependencies: - '@types/normalize-package-data': 2.4.4 + "@types/normalize-package-data": 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 dev: true /read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, + } + engines: { node: ">=6" } dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 @@ -3887,8 +5418,11 @@ packages: dev: true /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, + } + engines: { node: ">= 6" } dependencies: inherits: 2.0.4 string_decoder: 1.3.0 @@ -3896,20 +5430,29 @@ packages: dev: true /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, + } + engines: { node: ">=8" } dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 dev: true /regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + resolution: + { + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, + } dev: true /regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -3918,37 +5461,58 @@ packages: dev: true /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: { node: ">=0.10.0" } dev: true /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, + } + engines: { node: ">=0.10.0" } /require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + resolution: + { + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, + } dev: true /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, + } + engines: { node: ">=8" } dependencies: resolve-from: 5.0.0 dev: true /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: ">=4" } dev: true /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: { node: ">=8" } dev: true /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + resolution: + { + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, + } hasBin: true dependencies: is-core-module: 2.13.1 @@ -3957,54 +5521,78 @@ packages: dev: true /restore-cursor@4.0.0: - resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: onetime: 5.1.2 signal-exit: 3.0.7 dev: true /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } dev: true /rfdc@1.3.1: - resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} + resolution: + { + integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==, + } dev: true /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } hasBin: true dependencies: glob: 7.2.3 dev: true /rimraf@5.0.1: - resolution: {integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==, + } + engines: { node: ">=14" } hasBin: true dependencies: glob: 10.3.10 dev: false /rollup@3.26.2: - resolution: {integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + resolution: + { + integrity: sha512-6umBIGVz93er97pMgQO08LuH3m6PUb3jlDUUGFsNJB6VgTCUaDFpupf5JfU30529m/UKOgmiX+uY6Sx8cOYpLA==, + } + engines: { node: ">=14.18.0", npm: ">=8.0.0" } hasBin: true optionalDependencies: fsevents: 2.3.3 dev: true /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } dependencies: queue-microtask: 1.2.3 dev: true /safe-array-concat@1.1.0: - resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==, + } + engines: { node: ">=0.4" } dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 @@ -4013,12 +5601,18 @@ packages: dev: true /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } dev: true /safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -4026,35 +5620,53 @@ packages: dev: true /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } dev: true /scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + resolution: + { + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + } dependencies: loose-envify: 1.4.0 dev: false /semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + resolution: + { + integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, + } hasBin: true dev: true /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + resolution: + { + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, + } hasBin: true dev: true /semver@7.6.0: - resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==, + } + engines: { node: ">=10" } hasBin: true dependencies: lru-cache: 6.0.0 dev: true /sentence-case@3.0.4: - resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} + resolution: + { + integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, + } dependencies: no-case: 3.0.4 tslib: 2.6.2 @@ -4062,19 +5674,28 @@ packages: dev: true /serialize-error@7.0.1: - resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, + } + engines: { node: ">=10" } dependencies: type-fest: 0.13.1 dev: true /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, + } dev: true /set-function-length@1.2.1: - resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==, + } + engines: { node: ">= 0.4" } dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -4085,8 +5706,11 @@ packages: dev: true /set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==, + } + engines: { node: ">= 0.4" } dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -4095,30 +5719,45 @@ packages: dev: true /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, + } + engines: { node: ">=0.10.0" } dependencies: shebang-regex: 1.0.0 dev: true /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: ">=8" } dependencies: shebang-regex: 3.0.0 /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, + } + engines: { node: ">=0.10.0" } dev: true /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: ">=8" } /side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -4127,42 +5766,63 @@ packages: dev: true /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } dev: true /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, + } + engines: { node: ">=14" } /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: ">=8" } dev: true /slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, + } + engines: { node: ">=14.16" } dev: true /slice-ansi@5.0.0: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, + } + engines: { node: ">=12" } dependencies: ansi-styles: 6.2.1 is-fullwidth-code-point: 4.0.0 dev: true /slice-ansi@7.1.0: - resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==, + } + engines: { node: ">=18" } dependencies: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 dev: true /smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==, + } + engines: { node: ">=6" } hasBin: true dependencies: array.prototype.flat: 1.3.2 @@ -4174,96 +5834,144 @@ packages: dev: true /snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + resolution: + { + integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, + } dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: true /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, + } + engines: { node: ">=0.10.0" } /spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + resolution: + { + integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, + } dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 dev: true /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + resolution: + { + integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, + } dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.17 dev: true /spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + resolution: + { + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, + } dev: true /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, + } dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.17 dev: true /spdx-license-ids@3.0.17: - resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} + resolution: + { + integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==, + } dev: true /split2@4.2.0: - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} - engines: {node: '>= 10.x'} + resolution: + { + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, + } + engines: { node: ">= 10.x" } dev: true /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } dev: true /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, + } + engines: { node: ">=10" } dependencies: escape-string-regexp: 2.0.0 dev: true /stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} + resolution: + { + integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, + } dependencies: mixme: 0.5.10 dev: true /streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: { node: ">=10.0.0" } dev: false /string-argv@0.3.2: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} - engines: {node: '>=0.6.19'} + resolution: + { + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, + } + engines: { node: ">=0.6.19" } dev: true /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: ">=8" } dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: { node: ">=12" } dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 /string-width@7.1.0: - resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==, + } + engines: { node: ">=18" } dependencies: emoji-regex: 10.3.0 get-east-asian-width: 1.2.0 @@ -4271,8 +5979,11 @@ packages: dev: true /string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -4280,7 +5991,10 @@ packages: dev: true /string.prototype.trimend@1.0.7: - resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + resolution: + { + integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, + } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -4288,7 +6002,10 @@ packages: dev: true /string.prototype.trimstart@1.0.7: - resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + resolution: + { + integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, + } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -4296,49 +6013,73 @@ packages: dev: true /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } dependencies: safe-buffer: 5.2.1 dev: true /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: ">=8" } dependencies: ansi-regex: 5.0.1 /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, + } + engines: { node: ">=12" } dependencies: ansi-regex: 6.0.1 /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: ">=4" } dev: true /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, + } + engines: { node: ">=12" } dev: true /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, + } + engines: { node: ">=8" } dependencies: min-indent: 1.0.1 dev: true /style-dictionary-sets@2.3.0: - resolution: {integrity: sha512-XWYZOLTqVOxdYYlF7dDnJeh27BSRxRMmivRVOFWRCvIiHhaqK7V6HxMCegVpnGCi028+BTbkYndm6evA8SiFyg==} + resolution: + { + integrity: sha512-XWYZOLTqVOxdYYlF7dDnJeh27BSRxRMmivRVOFWRCvIiHhaqK7V6HxMCegVpnGCi028+BTbkYndm6evA8SiFyg==, + } dependencies: deepmerge: 4.3.1 dev: true /style-dictionary@3.9.2: - resolution: {integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==, + } + engines: { node: ">=12.0.0" } hasBin: true dependencies: chalk: 4.1.2 @@ -4353,14 +6094,17 @@ packages: dev: true /styled-jsx@5.1.1(react@18.2.0): - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: { node: ">= 12.0.0" } peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + "@babel/core": "*" + babel-plugin-macros: "*" + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true babel-plugin-macros: optional: true @@ -4370,8 +6114,11 @@ packages: dev: false /supertap@3.0.1: - resolution: {integrity: sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: indent-string: 5.0.0 js-yaml: 3.14.1 @@ -4380,27 +6127,39 @@ packages: dev: true /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: ">=4" } dependencies: has-flag: 3.0.0 dev: true /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: ">=8" } dependencies: has-flag: 4.0.0 dev: true /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: ">= 0.4" } dev: true /tar@6.2.0: - resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==, + } + engines: { node: ">=10" } dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -4411,75 +6170,117 @@ packages: dev: true /temp-dir@3.0.0: - resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==, + } + engines: { node: ">=14.16" } dev: true /term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, + } + engines: { node: ">=8" } dev: true /text-extensions@2.4.0: - resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==, + } + engines: { node: ">=8" } dev: true /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } dev: true /time-zone@1.0.0: - resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==, + } + engines: { node: ">=4" } dev: true /tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + resolution: + { + integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, + } dev: true /tmp-promise@3.0.3: - resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} + resolution: + { + integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==, + } dependencies: tmp: 0.2.1 dev: true /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: { node: ">=0.6.0" } dependencies: os-tmpdir: 1.0.2 dev: true /tmp@0.2.1: - resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} - engines: {node: '>=8.17.0'} + resolution: + { + integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==, + } + engines: { node: ">=8.17.0" } dependencies: rimraf: 3.0.2 dev: true /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: ">=8.0" } dependencies: is-number: 7.0.0 dev: true /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, + } dev: true /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, + } + engines: { node: ">=8" } dev: true /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + resolution: + { + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, + } /tty-table@4.2.3: - resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==, + } + engines: { node: ">=8.0.0" } hasBin: true dependencies: chalk: 4.1.2 @@ -4492,28 +6293,43 @@ packages: dev: true /type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, + } + engines: { node: ">=10" } dev: true /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, + } + engines: { node: ">=8" } dev: true /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, + } + engines: { node: ">=8" } dev: true /type-fest@3.13.1: - resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, + } + engines: { node: ">=14.16" } dev: true /typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -4521,8 +6337,11 @@ packages: dev: true /typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -4532,8 +6351,11 @@ packages: dev: true /typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==, + } + engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -4544,8 +6366,11 @@ packages: dev: true /typed-array-length@1.0.5: - resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==, + } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 for-each: 0.3.3 @@ -4556,13 +6381,19 @@ packages: dev: true /typescript@5.3.3: - resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, + } + engines: { node: ">=14.17" } hasBin: true dev: true /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } dependencies: call-bind: 1.0.7 has-bigints: 1.0.2 @@ -4571,66 +6402,96 @@ packages: dev: true /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + resolution: + { + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + } dev: true /unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==, + } + engines: { node: ">=18" } dev: true /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, + } + engines: { node: ">= 4.0.0" } dev: true /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, + } + engines: { node: ">= 10.0.0" } dev: true /upper-case-first@2.0.2: - resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} + resolution: + { + integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, + } dependencies: tslib: 2.6.2 dev: true /upper-case@2.0.2: - resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} + resolution: + { + integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, + } dependencies: tslib: 2.6.2 dev: true /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } dependencies: punycode: 2.3.1 /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } dev: true /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + resolution: + { + integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, + } dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 dev: true - /vite@4.4.4(@types/node@20.11.19): - resolution: {integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==} - engines: {node: ^14.18.0 || >=16.0.0} + /vite@4.4.4(@types/node@20.11.24): + resolution: + { + integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==, + } + engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true peerDependencies: - '@types/node': '>= 14' - less: '*' + "@types/node": ">= 14" + less: "*" lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' + sass: "*" + stylus: "*" + sugarss: "*" terser: ^5.4.0 peerDependenciesMeta: - '@types/node': + "@types/node": optional: true less: optional: true @@ -4645,7 +6506,7 @@ packages: terser: optional: true dependencies: - '@types/node': 20.11.19 + "@types/node": 20.11.24 esbuild: 0.18.12 postcss: 8.4.26 rollup: 3.26.2 @@ -4654,37 +6515,55 @@ packages: dev: true /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, + } + engines: { node: ">=10.13.0" } dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 dev: false /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } dependencies: defaults: 1.0.4 dev: true /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, + } dev: true /well-known-symbols@2.0.0: - resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==, + } + engines: { node: ">=6" } dev: true /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + resolution: + { + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, + } dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 dev: true /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -4694,20 +6573,29 @@ packages: dev: true /which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + resolution: + { + integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==, + } dev: true /which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} + resolution: + { + integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, + } + engines: { node: ">=8.15" } dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 dev: true /which-typed-array@1.1.14: - resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==, + } + engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -4717,28 +6605,40 @@ packages: dev: true /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + resolution: + { + integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, + } hasBin: true dependencies: isexe: 2.0.0 dev: true /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: ">= 8" } hasBin: true dependencies: isexe: 2.0.0 /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + resolution: + { + integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==, + } dependencies: string-width: 4.2.3 dev: true /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, + } + engines: { node: ">=8" } dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 @@ -4746,24 +6646,33 @@ packages: dev: true /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: ">=10" } dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: { node: ">=12" } dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 /wrap-ansi@9.0.0: - resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==, + } + engines: { node: ">=18" } dependencies: ansi-styles: 6.2.1 string-width: 7.1.0 @@ -4771,55 +6680,85 @@ packages: dev: true /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } dev: true /write-file-atomic@5.0.1: - resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } dependencies: imurmurhash: 0.1.4 signal-exit: 4.1.0 dev: true /y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + resolution: + { + integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, + } dev: true /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: { node: ">=10" } dev: true /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + resolution: + { + integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, + } dev: true /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } dev: true /yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, + } + engines: { node: ">= 14" } dev: true /yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, + } + engines: { node: ">=6" } dependencies: camelcase: 5.3.1 decamelize: 1.2.0 dev: true /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: ">=12" } dev: true /yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, + } + engines: { node: ">=8" } dependencies: cliui: 6.0.0 decamelize: 1.2.0 @@ -4835,8 +6774,11 @@ packages: dev: true /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, + } + engines: { node: ">=12" } dependencies: cliui: 8.0.1 escalade: 3.1.2 @@ -4848,15 +6790,24 @@ packages: dev: true /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: ">=10" } dev: true /yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, + } + engines: { node: ">=12.20" } dev: true /zod@3.21.4: - resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} + resolution: + { + integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==, + } dev: false From 0c0846cb6cd7a184fb5bbad24505b480c3a72676 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 29 Feb 2024 22:39:18 +0000 Subject: [PATCH 097/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 56 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 58 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 46ba455c..378da9c4 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -25,6 +25,7 @@ "olive-schools-warn", "six-phones-rescue", "slimy-emus-enjoy", + "small-clocks-jam", "smooth-turtles-retire", "soft-moles-walk", "strange-rings-love", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index dff42b49..e08220b7 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,61 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.18 + +### Minor Changes + +- 940bd78: Updated background aliases in dark theme; added new non-semantic colors + + ## Design Motivation + + The existing background colors were updated for better consistency across semantic and non-semantic variants of the Badge component. The colors also introduce some general improved contrast in dark theme across other components using these aliases. + The new non-semantic visual and background colors were added because new hues were introduced. These colors will be used in status light and badge components, respectively. + + ## Token Diff + + _Tokens added (10):_ + + - `brown-background-color-default` + - `brown-visual-color` + - `cinnamon-background-color-default` + - `cinnamon-visual-color` + - `pink-background-color-default` + - `pink-visual-color` + - `silver-background-color-default` + - `silver-visual-color` + - `turquoise-background-color-default` + - `turquoise-visual-color` + + _Token values updated (27):_ + + - `accent-background-color-default` + - `accent-background-color-down` + - `accent-background-color-hover` + - `accent-background-color-key-focus` + - `celery-background-color-default` + - `chartreuse-background-color-default` + - `gray-background-color-default` + - `informative-background-color-default` + - `informative-background-color-down` + - `informative-background-color-hover` + - `informative-background-color-key-focus` + - `negative-background-color-default` + - `negative-background-color-down` + - `negative-background-color-hover` + - `negative-background-color-key-focus` + - `neutral-subdued-background-color-default` + - `neutral-subdued-background-color-down` + - `neutral-subdued-background-color-hover` + - `neutral-subdued-background-color-key-focus` + - `notice-background-color-default` + - `orange-background-color-default` + - `positive-background-color-default` + - `positive-background-color-down` + - `positive-background-color-hover` + - `positive-background-color-key-focus` + - `table-selected-row-background-color` + - `yellow-background-color-default` + ## 13.0.0-beta.17 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 05cc97f0..db39f407 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.17", + "version": "13.0.0-beta.18", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From e611c9785223ea3f4e3d1b728695b61adc117699 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 7 Mar 2024 15:26:18 +0000 Subject: [PATCH 098/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 54 ++++--- packages/tokens/src/layout.json | 166 +++++++++++++--------- 2 files changed, 131 insertions(+), 89 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 9d858661..d0e140b5 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -618,12 +618,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-8px", - "uuid": "1218beeb-1d74-4e1a-b495-38d5f07afb55" + "uuid": "1218beeb-1d74-4e1a-b495-38d5f07afb55", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-10px", - "uuid": "2d3e67ce-de6d-4e41-bcf8-06b09c0bcce7" + "uuid": "2d3e67ce-de6d-4e41-bcf8-06b09c0bcce7", + "deprecated": true } } }, @@ -634,12 +636,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-8px", - "uuid": "dc00948e-3c0f-4c6b-8e3e-a7fbf396e059" + "uuid": "dc00948e-3c0f-4c6b-8e3e-a7fbf396e059", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-10px", - "uuid": "074489d2-66b0-4198-94fe-9818279bbf0f" + "uuid": "074489d2-66b0-4198-94fe-9818279bbf0f", + "deprecated": true } } }, @@ -650,12 +654,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-12px", - "uuid": "be80f1b1-4c08-479f-a39e-28b6a64714f2" + "uuid": "be80f1b1-4c08-479f-a39e-28b6a64714f2", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-15px", - "uuid": "c29cfb87-34e7-4397-bfd8-23378ecbb011" + "uuid": "c29cfb87-34e7-4397-bfd8-23378ecbb011", + "deprecated": true } } }, @@ -666,12 +672,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-15px", - "uuid": "d6c750dc-3117-4c1a-96bf-b94d530e912d" + "uuid": "d6c750dc-3117-4c1a-96bf-b94d530e912d", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-19px", - "uuid": "e1298748-d7cc-4bff-93bc-745b777fcf9e" + "uuid": "e1298748-d7cc-4bff-93bc-745b777fcf9e", + "deprecated": true } } }, @@ -1113,12 +1121,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", + "value": "52px", "uuid": "a6267318-c8b1-43d4-99b6-ca2a55e9dff4" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", + "value": "60px", "uuid": "12c8ae92-16b9-48ec-801c-bf07785da4b3" } } @@ -1145,12 +1153,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "18px", "uuid": "d10d2a55-2b4d-46b1-81e9-521d6c3578e1" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", + "value": "20px", "uuid": "1f83245b-3d79-4326-b843-df7b6549cade" } } @@ -1161,12 +1169,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", + "value": "18px", "uuid": "be4f24cf-9334-4fc4-aa72-e0347beecda7" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "20px", "uuid": "9f0688f5-128f-47c3-8585-94d704214881" } } @@ -1177,12 +1185,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", + "value": "20px", "uuid": "821e8f74-d1de-4507-9ff7-ece44e535e8c" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "22px", "uuid": "a790fd9e-4e5f-4f4c-a3ca-832540832580" } } @@ -3064,7 +3072,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", + "value": "56px", "uuid": "450405f8-4f08-4151-85dd-730b669a7ed0" }, "mobile": { @@ -3104,7 +3112,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "19px", "uuid": "fbe047c4-0346-4b81-bdf6-6565cede7a28" }, "mobile": { @@ -3128,7 +3136,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", + "value": "18px", "uuid": "1d289972-d5ba-41e8-8935-e8c83afb15cf" }, "mobile": { @@ -3152,7 +3160,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", + "value": "20px", "uuid": "e19fdd96-44a4-407b-b2b1-01001684fc84" }, "mobile": { @@ -3267,7 +3275,7 @@ "color-area-border-rounding": { "component": "color-area", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", + "value": "{corner-radius-medium-size-small}", "uuid": "ab656bf4-8814-42fa-9036-b1e67159e4e1" }, "color-wheel-width": { @@ -3421,7 +3429,7 @@ "search-field-minimum-width-multiplier": { "component": "search-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "3", + "value": "4", "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" }, "color-loupe-height": { @@ -7146,4 +7154,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 9c97c8b4..9ca74d42 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1187,7 +1187,8 @@ "field-edge-to-text-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "3f7cee20-c187-4066-be4b-f5a1335736f5" + "uuid": "3f7cee20-c187-4066-be4b-f5a1335736f5", + "deprecated": true }, "field-edge-to-visual-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", @@ -1197,17 +1198,20 @@ "field-edge-to-border-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "7fb81dcf-3329-4353-917d-75de8f43c05d" + "uuid": "7fb81dcf-3329-4353-917d-75de8f43c05d", + "deprecated": true }, "field-edge-to-alert-icon-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "7858fdf3-e35f-4bc5-997a-0d480ec1cb32" + "uuid": "7858fdf3-e35f-4bc5-997a-0d480ec1cb32", + "deprecated": true }, "field-edge-to-validation-icon-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "151915e5-f946-474f-9595-18d8a159a6ff" + "uuid": "151915e5-f946-474f-9595-18d8a159a6ff", + "deprecated": true }, "field-edge-to-disclosure-icon-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -1810,32 +1814,51 @@ } }, "field-width": { + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use field-width-small instead.", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", + "value": "{field-width-small}", "uuid": "096ddcb7-5afd-416f-9a11-4275556c4b52" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", + "value": "{field-width-small}", "uuid": "08c2390a-353b-4e6b-b025-dbaeaa5fdff2" } } }, + "field-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "192px", + "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "240px", + "uuid": "4edc5620-2fd6-4656-ad4f-f5e44fc77ce9" + } + } + }, "character-count-to-field-quiet-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", - "uuid": "f2f62625-dfd4-46b0-9113-033820745569" + "uuid": "f2f62625-dfd4-46b0-9113-033820745569", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "819cdbf4-9e26-4fdf-895d-8f60c06efa2a" + "uuid": "819cdbf4-9e26-4fdf-895d-8f60c06efa2a", + "deprecated": true } } }, @@ -1845,12 +1868,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", - "uuid": "2ebe9ae0-3b74-47dc-af79-e1dd5f93b9bd" + "uuid": "2ebe9ae0-3b74-47dc-af79-e1dd5f93b9bd", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "1cecea81-8c7f-4658-b3a2-0e1282f7eac9" + "uuid": "1cecea81-8c7f-4658-b3a2-0e1282f7eac9", + "deprecated": true } } }, @@ -1860,12 +1885,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", - "uuid": "3f385135-015a-44dd-bde3-60389b14c2ff" + "uuid": "3f385135-015a-44dd-bde3-60389b14c2ff", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "cef58f98-9fb0-4fbb-b6aa-dc5786d7658a" + "uuid": "cef58f98-9fb0-4fbb-b6aa-dc5786d7658a", + "deprecated": true } } }, @@ -1875,12 +1902,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "8b5b5dce-a9c4-4c03-a194-8a5bc716b18a" + "uuid": "8b5b5dce-a9c4-4c03-a194-8a5bc716b18a", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-5px", - "uuid": "2cfe025b-8bf8-47a3-8ff1-733cf62dd182" + "uuid": "2cfe025b-8bf8-47a3-8ff1-733cf62dd182", + "deprecated": true } } }, @@ -1900,64 +1929,24 @@ } }, "side-label-character-count-top-margin-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "a86ae363-b6b4-4da0-9630-97336922b3a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "9196a2ad-67cd-44d8-b4c6-bca25e37eb4a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "a86ae363-b6b4-4da0-9630-97336922b3a1" }, "side-label-character-count-top-margin-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "4d93210f-f01a-4d1c-8c10-2cb4b9d14626" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "a2b20c88-d28c-4261-8160-62630c5e0da8" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "4d93210f-f01a-4d1c-8c10-2cb4b9d14626" }, "side-label-character-count-top-margin-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "e2d9e241-469a-4b03-bd6a-a105a8ed5e00" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ca10a5d6-a8b2-414d-978a-14481e2a21cb" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "e2d9e241-469a-4b03-bd6a-a105a8ed5e00" }, "side-label-character-count-top-margin-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "9b1f15bf-ea4f-4f82-8c4f-3770b7f47353" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c2c4ddf3-f273-4e23-9be0-e1227e9999a8" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "9b1f15bf-ea4f-4f82-8c4f-3770b7f47353" }, "disclosure-indicator-top-to-disclosure-icon-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -2253,5 +2242,50 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{corner-radius-700}", "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" + }, + "field-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "208px", + "uuid": "935927d3-b25e-468a-999a-938643901e50" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "256px", + "uuid": "4504fa00-b3ee-4065-9202-0ad226e731d7" + } + } + }, + "field-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "224px", + "uuid": "cc43e053-1255-403f-aaf5-2182f5438592" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "272px", + "uuid": "1767d955-b8c4-41b0-82d4-4aadc9f12ab1" + } + } + }, + "field-width-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "240px", + "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "288px", + "uuid": "3abf72b5-5ed7-4d18-8eda-e137b2ac2f51" + } + } } } \ No newline at end of file From 5c02da15924b7367a7117e4591e3d4668d75bd32 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 6 Mar 2024 17:54:05 +0000 Subject: [PATCH 099/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 9d858661..79353368 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3064,7 +3064,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", + "value": "56px", "uuid": "450405f8-4f08-4151-85dd-730b669a7ed0" }, "mobile": { @@ -3104,7 +3104,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "19px", "uuid": "fbe047c4-0346-4b81-bdf6-6565cede7a28" }, "mobile": { @@ -3128,7 +3128,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", + "value": "18px", "uuid": "1d289972-d5ba-41e8-8935-e8c83afb15cf" }, "mobile": { @@ -3152,7 +3152,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", + "value": "20px", "uuid": "e19fdd96-44a4-407b-b2b1-01001684fc84" }, "mobile": { @@ -3421,7 +3421,7 @@ "search-field-minimum-width-multiplier": { "component": "search-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "3", + "value": "4", "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" }, "color-loupe-height": { @@ -7146,4 +7146,4 @@ } } } -} +} \ No newline at end of file From 7b5f18bfe73e013acb90f33c6ca84db1516de47f Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 7 Mar 2024 09:50:36 -0700 Subject: [PATCH 100/295] chore: added changeset --- .changeset/real-seals-camp.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .changeset/real-seals-camp.md diff --git a/.changeset/real-seals-camp.md b/.changeset/real-seals-camp.md new file mode 100644 index 00000000..9b3ee154 --- /dev/null +++ b/.changeset/real-seals-camp.md @@ -0,0 +1,19 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Update alert banner for Spectrum 2 + +## Design Motivation + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Token values updated (5):_ + +- `alert-banner-bottom-to-text` +- `alert-banner-minimum-height` +- `alert-banner-top-to-text` +- `alert-banner-top-to-workflow-icon` +- `search-field-minimum-width-multiplier` From 41488f463eb99d4a84319662d62ef38d8de9560e Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 7 Mar 2024 15:25:34 +0000 Subject: [PATCH 101/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 24 ++-- packages/tokens/src/layout.json | 166 +++++++++++++--------- 2 files changed, 116 insertions(+), 74 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 79353368..fb0ca679 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -618,12 +618,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-8px", - "uuid": "1218beeb-1d74-4e1a-b495-38d5f07afb55" + "uuid": "1218beeb-1d74-4e1a-b495-38d5f07afb55", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-10px", - "uuid": "2d3e67ce-de6d-4e41-bcf8-06b09c0bcce7" + "uuid": "2d3e67ce-de6d-4e41-bcf8-06b09c0bcce7", + "deprecated": true } } }, @@ -634,12 +636,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-8px", - "uuid": "dc00948e-3c0f-4c6b-8e3e-a7fbf396e059" + "uuid": "dc00948e-3c0f-4c6b-8e3e-a7fbf396e059", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-10px", - "uuid": "074489d2-66b0-4198-94fe-9818279bbf0f" + "uuid": "074489d2-66b0-4198-94fe-9818279bbf0f", + "deprecated": true } } }, @@ -650,12 +654,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-12px", - "uuid": "be80f1b1-4c08-479f-a39e-28b6a64714f2" + "uuid": "be80f1b1-4c08-479f-a39e-28b6a64714f2", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-15px", - "uuid": "c29cfb87-34e7-4397-bfd8-23378ecbb011" + "uuid": "c29cfb87-34e7-4397-bfd8-23378ecbb011", + "deprecated": true } } }, @@ -666,12 +672,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-15px", - "uuid": "d6c750dc-3117-4c1a-96bf-b94d530e912d" + "uuid": "d6c750dc-3117-4c1a-96bf-b94d530e912d", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-19px", - "uuid": "e1298748-d7cc-4bff-93bc-745b777fcf9e" + "uuid": "e1298748-d7cc-4bff-93bc-745b777fcf9e", + "deprecated": true } } }, diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 9c97c8b4..9ca74d42 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1187,7 +1187,8 @@ "field-edge-to-text-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "3f7cee20-c187-4066-be4b-f5a1335736f5" + "uuid": "3f7cee20-c187-4066-be4b-f5a1335736f5", + "deprecated": true }, "field-edge-to-visual-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", @@ -1197,17 +1198,20 @@ "field-edge-to-border-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "7fb81dcf-3329-4353-917d-75de8f43c05d" + "uuid": "7fb81dcf-3329-4353-917d-75de8f43c05d", + "deprecated": true }, "field-edge-to-alert-icon-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "7858fdf3-e35f-4bc5-997a-0d480ec1cb32" + "uuid": "7858fdf3-e35f-4bc5-997a-0d480ec1cb32", + "deprecated": true }, "field-edge-to-validation-icon-quiet": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "151915e5-f946-474f-9595-18d8a159a6ff" + "uuid": "151915e5-f946-474f-9595-18d8a159a6ff", + "deprecated": true }, "field-edge-to-disclosure-icon-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -1810,32 +1814,51 @@ } }, "field-width": { + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use field-width-small instead.", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", + "value": "{field-width-small}", "uuid": "096ddcb7-5afd-416f-9a11-4275556c4b52" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", + "value": "{field-width-small}", "uuid": "08c2390a-353b-4e6b-b025-dbaeaa5fdff2" } } }, + "field-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "192px", + "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "240px", + "uuid": "4edc5620-2fd6-4656-ad4f-f5e44fc77ce9" + } + } + }, "character-count-to-field-quiet-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", - "uuid": "f2f62625-dfd4-46b0-9113-033820745569" + "uuid": "f2f62625-dfd4-46b0-9113-033820745569", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "819cdbf4-9e26-4fdf-895d-8f60c06efa2a" + "uuid": "819cdbf4-9e26-4fdf-895d-8f60c06efa2a", + "deprecated": true } } }, @@ -1845,12 +1868,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", - "uuid": "2ebe9ae0-3b74-47dc-af79-e1dd5f93b9bd" + "uuid": "2ebe9ae0-3b74-47dc-af79-e1dd5f93b9bd", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "1cecea81-8c7f-4658-b3a2-0e1282f7eac9" + "uuid": "1cecea81-8c7f-4658-b3a2-0e1282f7eac9", + "deprecated": true } } }, @@ -1860,12 +1885,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-3px", - "uuid": "3f385135-015a-44dd-bde3-60389b14c2ff" + "uuid": "3f385135-015a-44dd-bde3-60389b14c2ff", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "cef58f98-9fb0-4fbb-b6aa-dc5786d7658a" + "uuid": "cef58f98-9fb0-4fbb-b6aa-dc5786d7658a", + "deprecated": true } } }, @@ -1875,12 +1902,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-4px", - "uuid": "8b5b5dce-a9c4-4c03-a194-8a5bc716b18a" + "uuid": "8b5b5dce-a9c4-4c03-a194-8a5bc716b18a", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-5px", - "uuid": "2cfe025b-8bf8-47a3-8ff1-733cf62dd182" + "uuid": "2cfe025b-8bf8-47a3-8ff1-733cf62dd182", + "deprecated": true } } }, @@ -1900,64 +1929,24 @@ } }, "side-label-character-count-top-margin-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "a86ae363-b6b4-4da0-9630-97336922b3a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "9196a2ad-67cd-44d8-b4c6-bca25e37eb4a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "a86ae363-b6b4-4da0-9630-97336922b3a1" }, "side-label-character-count-top-margin-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "4d93210f-f01a-4d1c-8c10-2cb4b9d14626" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "a2b20c88-d28c-4261-8160-62630c5e0da8" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "4d93210f-f01a-4d1c-8c10-2cb4b9d14626" }, "side-label-character-count-top-margin-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "e2d9e241-469a-4b03-bd6a-a105a8ed5e00" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ca10a5d6-a8b2-414d-978a-14481e2a21cb" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "e2d9e241-469a-4b03-bd6a-a105a8ed5e00" }, "side-label-character-count-top-margin-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "9b1f15bf-ea4f-4f82-8c4f-3770b7f47353" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c2c4ddf3-f273-4e23-9be0-e1227e9999a8" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "9b1f15bf-ea4f-4f82-8c4f-3770b7f47353" }, "disclosure-indicator-top-to-disclosure-icon-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -2253,5 +2242,50 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{corner-radius-700}", "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" + }, + "field-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "208px", + "uuid": "935927d3-b25e-468a-999a-938643901e50" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "256px", + "uuid": "4504fa00-b3ee-4065-9202-0ad226e731d7" + } + } + }, + "field-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "224px", + "uuid": "cc43e053-1255-403f-aaf5-2182f5438592" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "272px", + "uuid": "1767d955-b8c4-41b0-82d4-4aadc9f12ab1" + } + } + }, + "field-width-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "240px", + "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "288px", + "uuid": "3abf72b5-5ed7-4d18-8eda-e137b2ac2f51" + } + } } } \ No newline at end of file From a9248a6cee61ad8c33a22d0472b604caa7b30fea Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 7 Mar 2024 09:38:29 -0700 Subject: [PATCH 102/295] fix: changed type of deprecated token --- packages/tokens/src/layout.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 9ca74d42..36893ace 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1819,12 +1819,12 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{field-width-small}", "uuid": "096ddcb7-5afd-416f-9a11-4275556c4b52" }, "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{field-width-small}", "uuid": "08c2390a-353b-4e6b-b025-dbaeaa5fdff2" } @@ -2288,4 +2288,4 @@ } } } -} \ No newline at end of file +} From 723d3b0271aeeb5a37ef8834f5f7f2c114fac6a2 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 7 Mar 2024 10:30:48 -0700 Subject: [PATCH 103/295] chore: added changeset --- .changeset/angry-zoos-applaud.md | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .changeset/angry-zoos-applaud.md diff --git a/.changeset/angry-zoos-applaud.md b/.changeset/angry-zoos-applaud.md new file mode 100644 index 00000000..efef9391 --- /dev/null +++ b/.changeset/angry-zoos-applaud.md @@ -0,0 +1,41 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated, added, and deprecated tokens for text field and text area. + +## Design Motivation + +Updating text field and text area for Spectrum 2. + +## Token Diff + +_Tokens added (4):_ + +- `field-width-small` +- `field-width-medium` +- `field-width-large` +- `field-width-extra-large` + +_Updated token values (4):_ + +- `side-label-character-count-top-margin-small` +- `side-label-character-count-top-margin-medium` +- `side-label-character-count-top-margin-large` +- `side-label-character-count-top-margin-extra-large` + +_Newly deprecated tokens (8):_ + +- `field-width` +- `field-edge-to-text-quiet` +- `field-edge-to-border-quiet` +- `field-edge-to-alert-icon-quiet` +- `field-edge-to-validation-icon-quiet` +- `field-label-to-component-quiet-small` +- `field-label-to-component-quiet-medium` +- `field-label-to-component-quiet-large` +- `field-label-to-component-quiet-extra-large` +- `character-count-to-field-quiet-small` +- `character-count-to-field-quiet-medium` +- `character-count-to-field-quiet-large` +- `character-count-to-field-quiet-extra-large` From 4a84fdd6ebba863f2a6e27f9496503b1646e4496 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 7 Mar 2024 11:21:26 -0700 Subject: [PATCH 104/295] chore: added changeset --- .changeset/twelve-impalas-compare.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .changeset/twelve-impalas-compare.md diff --git a/.changeset/twelve-impalas-compare.md b/.changeset/twelve-impalas-compare.md new file mode 100644 index 00000000..9039defd --- /dev/null +++ b/.changeset/twelve-impalas-compare.md @@ -0,0 +1,21 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Spectrum 2 Toast Tokens + +## Design motivation + +Updated the `color-area-border-rounding` token type from spacing to borderRadius and adjusted value referenced, desktop and mobile scale. + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Token values updated (5):_ + +- `toast-height` +- `toast-top-to-workflow-icon` +- `toast-top-to-text` +- `toast-bottom-to-text` +- `color-area-border-rounding` From a7dc09fdd3dcab09af9b273f83ad6afd07d20b86 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 7 Mar 2024 15:26:45 +0000 Subject: [PATCH 105/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 2c6fe5c4..768717df 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -77,7 +77,7 @@ "color-area-border-color": { "component": "color-area", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", + "value": "{gray-1000}", "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" }, "color-area-border-opacity": { From 66b1edf2ca234dbad6cf0fdd059dff283f25ee7d Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 7 Mar 2024 11:23:51 -0700 Subject: [PATCH 106/295] chore: added changeset --- .changeset/gold-bags-talk.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .changeset/gold-bags-talk.md diff --git a/.changeset/gold-bags-talk.md b/.changeset/gold-bags-talk.md new file mode 100644 index 00000000..ef6a5e54 --- /dev/null +++ b/.changeset/gold-bags-talk.md @@ -0,0 +1,15 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated color of color-area-border-color token from gray.900 to gray.1000 in both light and dark sets. + +## Design motivation + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Token value updated (1):_ + +- `color-area-border-color` From 0812e194b31636b1939615b876f38041f4d3c55d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 7 Mar 2024 18:39:03 +0000 Subject: [PATCH 107/295] chore: release (beta) --- .changeset/pre.json | 4 ++ packages/tokens/CHANGELOG.md | 88 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 93 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 378da9c4..45f4a3e3 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -10,6 +10,7 @@ "transform-tokens-json": "0.0.1" }, "changesets": [ + "angry-zoos-applaud", "blue-parrots-hug", "brown-years-perform", "clever-onions-compete", @@ -18,11 +19,13 @@ "forty-lizards-thank", "fuzzy-cherries-buy", "gentle-months-carry", + "gold-bags-talk", "good-peas-mix", "happy-students-vanish", "lemon-dragons-raise", "neat-balloons-rhyme", "olive-schools-warn", + "real-seals-camp", "six-phones-rescue", "slimy-emus-enjoy", "small-clocks-jam", @@ -31,6 +34,7 @@ "strange-rings-love", "sweet-pillows-protect", "tame-bobcats-beg", + "twelve-impalas-compare", "unlucky-buckets-shop", "warm-experts-beg", "wet-jobs-lie", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index e08220b7..997581fc 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,93 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.19 + +### Minor Changes + +- 723d3b0: Updated, added, and deprecated tokens for text field and text area. + + ## Design Motivation + + Updating text field and text area for Spectrum 2. + + ## Token Diff + + _Tokens added (4):_ + + - `field-width-small` + - `field-width-medium` + - `field-width-large` + - `field-width-extra-large` + + _Updated token values (4):_ + + - `side-label-character-count-top-margin-small` + - `side-label-character-count-top-margin-medium` + - `side-label-character-count-top-margin-large` + - `side-label-character-count-top-margin-extra-large` + + _Newly deprecated tokens (8):_ + + - `field-width` + - `field-edge-to-text-quiet` + - `field-edge-to-border-quiet` + - `field-edge-to-alert-icon-quiet` + - `field-edge-to-validation-icon-quiet` + - `field-label-to-component-quiet-small` + - `field-label-to-component-quiet-medium` + - `field-label-to-component-quiet-large` + - `field-label-to-component-quiet-extra-large` + - `character-count-to-field-quiet-small` + - `character-count-to-field-quiet-medium` + - `character-count-to-field-quiet-large` + - `character-count-to-field-quiet-extra-large` + +- 66b1edf: Updated color of color-area-border-color token from gray.900 to gray.1000 in both light and dark sets. + + ## Design motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + _Token value updated (1):_ + + - `color-area-border-color` + +- 7b5f18b: Update alert banner for Spectrum 2 + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + _Token values updated (5):_ + + - `alert-banner-bottom-to-text` + - `alert-banner-minimum-height` + - `alert-banner-top-to-text` + - `alert-banner-top-to-workflow-icon` + - `search-field-minimum-width-multiplier` + +- 4a84fdd: Spectrum 2 Toast Tokens + + ## Design motivation + + Updated the `color-area-border-rounding` token type from spacing to borderRadius and adjusted value referenced, desktop and mobile scale. + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + _Token values updated (5):_ + + - `toast-height` + - `toast-top-to-workflow-icon` + - `toast-top-to-text` + - `toast-bottom-to-text` + - `color-area-border-rounding` + ## 13.0.0-beta.18 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index db39f407..a58fd146 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.18", + "version": "13.0.0-beta.19", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 8e24ccfc26b195d026fadc1a6882fe7d7d44017d Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 7 Mar 2024 12:29:35 -0700 Subject: [PATCH 108/295] ci: updating github workflows --- .github/workflows/ci.yml | 6 ++++-- .github/workflows/deploy-docs.yml | 4 +++- .github/workflows/release.yml | 4 +++- .moon/toolchain.yml | 2 +- package.json | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa988597..3fd32251 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,11 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: moonrepo/setup-moon-action@v1 + - uses: moonrepo/setup-toolchain@v0 + with: + auto-install: true - run: moon ci - - uses: "moonrepo/run-report-action@v1" + - uses: moonrepo/run-report-action@v1 if: success() || failure() with: access-token: ${{ secrets.GH_TOKEN }} diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index e838c36e..ca999927 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -34,7 +34,9 @@ jobs: - uses: pnpm/action-setup@v2 with: version: 8.15.4 - - uses: moonrepo/setup-moon-action@v1 + - uses: moonrepo/setup-toolchain@v0 + with: + auto-install: true - run: moon setup - run: moon run site:export - run: moon run visualizer:build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aae7058a..defe40ae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,9 @@ jobs: - uses: pnpm/action-setup@v2 with: version: 8.15.4 - - uses: moonrepo/setup-moon-action@v1 + - uses: moonrepo/setup-toolchain@v0 + with: + auto-install: true - run: moon setup - run: moon run :build --query "projectSource~packages/*" - name: Publish diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 4357410b..0ca66c74 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: "18.13.0" + version: "20.11" # The package manager to use when managing dependencies. # Accepts "npm" (default), "pnpm", or "yarn". diff --git a/package.json b/package.json index 73af3c2e..47d634cd 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "prettier": "^3.2.5" }, "engines": { - "node": "18.13.0" + "node": "~20.11" }, "packageManager": "pnpm@8.15.4" } From 36531bcb1c1fe20420ab05437ea71929ac735007 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Mar 2024 13:02:07 -0600 Subject: [PATCH 109/295] ci: added provenance to tokens npm publishing --- packages/tokens/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/tokens/package.json b/packages/tokens/package.json index a58fd146..cb571be0 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -18,6 +18,9 @@ "bugs": { "url": "https://github.com/adobe/spectrum-tokens/issues" }, + "publishConfig": { + "provenance": true + }, "homepage": "https://github.com/adobe/spectrum-tokens/tree/main/packages/tokens#readme", "devDependencies": { "ajv": "^8.12.0", From 04c1791a304e5ce91d1a752e203e30305718f282 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 13 Mar 2024 19:13:50 +0000 Subject: [PATCH 110/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 225 ++++++++++++++++++++++ 1 file changed, 225 insertions(+) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index d0e140b5..a2812959 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -7153,5 +7153,230 @@ "uuid": "b046b12c-5c39-4018-8ccc-9a5cb08eb6e5" } } + }, + "title-cjk-emphasized-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "2be8bfb1-7a0c-452d-9532-ea2eda408b82" + }, + "title-cjk-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{extra-bold-font-weight}", + "uuid": "c03b6bc7-76b6-4533-883e-881438de975f" + }, + "title-cjk-font-family": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cjk-font-family}", + "uuid": "6fa83674-af7c-4656-8b33-d3312534ee53" + }, + "title-cjk-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "f421339b-fc3b-4d4e-86b4-65a63584131b" + }, + "title-cjk-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{bold-font-weight}", + "uuid": "57a5eaba-935d-47e5-9cc4-cc1da6a330de" + }, + "title-cjk-line-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cjk-line-height-100}", + "uuid": "999ba22a-87b6-45fe-9e89-9911f34ea330" + }, + "title-cjk-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "2fcf237b-6988-4c31-a806-f4176b94c2a8" + }, + "title-cjk-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "d1bccaa7-731f-4df2-a4c3-9dbec33145fd" + }, + "title-cjk-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "a134fab9-7606-453d-a64f-fd2daa989283" + }, + "title-cjk-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-300}", + "uuid": "99472fda-7d17-45d5-b2ba-0c79a45d628f" + }, + "title-cjk-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "f5966933-93a3-4615-a19b-b94d6a0367da" + }, + "title-cjk-size-xxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-400}", + "uuid": "abbc512e-fdce-4025-9d08-5a71692cf523" + }, + "title-cjk-size-xxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-500}", + "uuid": "223b1966-4dbb-4e89-b508-9191ffedc97c" + }, + "title-cjk-strong-emphasized-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "55c1dcc1-f296-47eb-989b-ae5e22748869" + }, + "title-cjk-strong-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{extra-bold-font-weight}", + "uuid": "ba6356fb-cada-4786-9306-71b940e61ca8" + }, + "title-cjk-strong-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "85e5ba03-3f0a-4245-a26c-ac9c3df23d1b" + }, + "title-cjk-strong-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{extra-bold-font-weight}", + "uuid": "93e5a426-7229-46ee-89f6-a84f7084592b" + }, + "title-line-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{line-height-100}", + "uuid": "e1397d35-0c23-410c-a213-65db1eb4887f" + }, + "title-margin-bottom-multiplier": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "value": "0.25", + "uuid": "73a0bd28-7691-47b0-9e9b-62ec22940e63" + }, + "title-margin-top-multiplier": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "value": "0.88888889", + "uuid": "14d9dc6c-28fc-41cf-a1ae-600a150f520a" + }, + "title-sans-serif-emphasized-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{italic-font-style}", + "uuid": "98fd5c98-b53d-49f0-bce1-705b53ae9ae4" + }, + "title-sans-serif-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{bold-font-weight}", + "uuid": "4fe9b508-ff74-4819-8188-e080d814d9ef" + }, + "title-sans-serif-font-family": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{sans-serif-font-family}", + "uuid": "9a65d2f0-87c0-404b-9965-6e4b00efeda8" + }, + "title-sans-serif-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "faa965d6-42c0-40f9-802e-ff0ea69d740d" + }, + "title-sans-serif-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{bold-font-weight}", + "uuid": "58a27a2e-58c6-42dc-b860-1a8458966da4" + }, + "title-sans-serif-strong-emphasized-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{italic-font-style}", + "uuid": "39c10c1e-56c1-4a94-b5b9-a91a2db92050" + }, + "title-sans-serif-strong-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{extra-bold-font-weight}", + "uuid": "ab0482d5-ff9a-4c50-876b-ed5accf067a4" + }, + "title-sans-serif-strong-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "871928bc-14ac-465d-b245-c39bcf265a72" + }, + "title-sans-serif-strong-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{extra-bold-font-weight}", + "uuid": "ace1f3cb-629c-4172-b64f-a8b1f5afbdcc" + }, + "title-serif-emphasized-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{italic-font-style}", + "uuid": "cf6281f7-00ef-437e-b89b-d6d774818f0b" + }, + "title-serif-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{bold-font-weight}", + "uuid": "3abd6cd1-42f5-4b4b-9732-bb826fe0a740" + }, + "title-serif-font-family": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{serif-font-family}", + "uuid": "b3098f42-d73e-4228-a4f9-9be4b0c46ce8" + }, + "title-serif-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "70955f1b-4124-432e-bd9d-c5b42c890195" + }, + "title-serif-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{bold-font-weight}", + "uuid": "23cf3a6f-911c-4e64-8952-7412bc7f4629" + }, + "title-serif-strong-emphasized-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{italic-font-style}", + "uuid": "6359f577-d462-456b-a748-ceecb893b4a2" + }, + "title-serif-strong-emphasized-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black-font-weight}", + "uuid": "c2a2882b-f048-4580-96c8-76556fccc87c" + }, + "title-serif-strong-font-style": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{default-font-style}", + "uuid": "6d2f0e78-e527-41c7-8843-af89a9790da6" + }, + "title-serif-strong-font-weight": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black-font-weight}", + "uuid": "a0367ebf-8cc8-4aa0-80c4-ccf4a03644a3" + }, + "title-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-300}", + "uuid": "0fb9e5ec-e5b7-41e0-8ef4-db9e4e33e060" + }, + "title-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "6d63a369-4261-44a4-bf8d-a567dffa8ef6" + }, + "title-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "0babc342-b506-495d-aaf1-20fe9e571e1b" + }, + "title-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-400}", + "uuid": "b5aaaa50-721b-4b41-ad90-345cd995f69e" + }, + "title-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "68dac9e8-9b07-4453-8cb2-24ed349d2134" + }, + "title-size-xxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-500}", + "uuid": "d4c4db99-70f2-4c79-8595-4d23407de068" + }, + "title-size-xxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-600}", + "uuid": "56152e6a-3058-4467-86a1-34fa2b6f75b2" } } \ No newline at end of file From fb61f17ed8e39522d6dfe8c39afdebae6637fa2c Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Mar 2024 13:21:14 -0600 Subject: [PATCH 111/295] chore: added changeset --- .changeset/sour-rabbits-own.md | 59 ++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .changeset/sour-rabbits-own.md diff --git a/.changeset/sour-rabbits-own.md b/.changeset/sour-rabbits-own.md new file mode 100644 index 00000000..634bb8a5 --- /dev/null +++ b/.changeset/sour-rabbits-own.md @@ -0,0 +1,59 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added Title typography tokens + +## Design Motivation + +Adding new typography styles for Title. While the Heading style is for the loudest, most broad message, there are still going to be other important items in your information hierarchy. The Title style is for text that’s communicating other need-to-know concepts. It’s often set in Bold weight, and it has a range of font sizes that can be paired with Body and Detail sizes to create visual balance. File names, cards, user names, panels, and other high-signal concepts in interfaces use the Title style. + +## Token Diff + +_Tokens added (45):_ + +- `title-cjk-emphasized-font-style` +- `title-cjk-emphasized-font-weight` +- `title-cjk-font-family` +- `title-cjk-font-style` +- `title-cjk-font-weight` +- `title-cjk-line-height` +- `title-cjk-size-l` +- `title-cjk-size-m` +- `title-cjk-size-s` +- `title-cjk-size-xl` +- `title-cjk-size-xs` +- `title-cjk-size-xxl` +- `title-cjk-size-xxxl` +- `title-cjk-strong-emphasized-font-style` +- `title-cjk-strong-emphasized-font-weight` +- `title-cjk-strong-font-style` +- `title-cjk-strong-font-weight` +- `title-line-height` +- `title-margin-bottom-multiplier` +- `title-margin-top-multiplier` +- `title-sans-serif-emphasized-font-style` +- `title-sans-serif-emphasized-font-weight` +- `title-sans-serif-font-family` +- `title-sans-serif-font-style` +- `title-sans-serif-font-weight` +- `title-sans-serif-strong-emphasized-font-style` +- `title-sans-serif-strong-emphasized-font-weight` +- `title-sans-serif-strong-font-style` +- `title-sans-serif-strong-font-weight` +- `title-serif-emphasized-font-style` +- `title-serif-emphasized-font-weight` +- `title-serif-font-family` +- `title-serif-font-style` +- `title-serif-font-weight` +- `title-serif-strong-emphasized-font-style` +- `title-serif-strong-emphasized-font-weight` +- `title-serif-strong-font-style` +- `title-serif-strong-font-weight` +- `title-size-l` +- `title-size-m` +- `title-size-s` +- `title-size-xl` +- `title-size-xs` +- `title-size-xxl` +- `title-size-xxxl` From b61fafad49a8197535df49e64e5553c7317d1046 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Mar 2024 13:21:46 -0600 Subject: [PATCH 112/295] chore: update dependencies --- package.json | 6 +- pnpm-lock.yaml | 172 +++++++++++++++++++++++++++---------------------- 2 files changed, 98 insertions(+), 80 deletions(-) diff --git a/package.json b/package.json index 47d634cd..f71c8515 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,9 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@changesets/cli": "^2.27.1", - "@commitlint/cli": "^19.0.3", - "@commitlint/config-conventional": "^19.0.3", - "@moonrepo/cli": "^1.22.2", + "@commitlint/cli": "^19.1.0", + "@commitlint/config-conventional": "^19.1.0", + "@moonrepo/cli": "^1.22.7", "ava": "^6.1.2", "husky": "^9.0.11", "lint-staged": "^15.2.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bc9f02a7..8f90f634 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,14 +11,14 @@ importers: specifier: ^2.27.1 version: 2.27.1 "@commitlint/cli": - specifier: ^19.0.3 - version: 19.0.3(@types/node@20.11.24)(typescript@5.3.3) + specifier: ^19.1.0 + version: 19.1.0(@types/node@20.11.27)(typescript@5.4.2) "@commitlint/config-conventional": - specifier: ^19.0.3 - version: 19.0.3 + specifier: ^19.1.0 + version: 19.1.0 "@moonrepo/cli": - specifier: ^1.22.2 - version: 1.22.2 + specifier: ^1.22.7 + version: 1.22.7 ava: specifier: ^6.1.2 version: 6.1.2 @@ -39,7 +39,7 @@ importers: version: 5.0.31 "@spectrum-css/table": specifier: ^4.0.60 - version: 4.0.60(@spectrum-css/icon@6.0.4)(@spectrum-css/vars@9.0.8) + version: 4.0.60(@spectrum-css/icon@6.0.5)(@spectrum-css/vars@9.0.8) "@spectrum-css/tokens": specifier: ^11.0.0 version: 11.0.0 @@ -443,17 +443,17 @@ packages: prettier: 2.8.8 dev: true - /@commitlint/cli@19.0.3(@types/node@20.11.24)(typescript@5.3.3): + /@commitlint/cli@19.1.0(@types/node@20.11.27)(typescript@5.4.2): resolution: { - integrity: sha512-mGhh/aYPib4Vy4h+AGRloMY+CqkmtdeKPV9poMcZeImF5e3knQ5VYaSeAM0mEzps1dbKsHvABwaDpafLUuM96g==, + integrity: sha512-SYGm8HGbVzrlSYeB6oo6pG1Ec6bOMJcDsXgNGa4vgZQsPj6nJkcbTWlIRmtmIk0tHi0d5sCljGuQ+g/0NCPv7w==, } engines: { node: ">=v18" } hasBin: true dependencies: "@commitlint/format": 19.0.3 - "@commitlint/lint": 19.0.3 - "@commitlint/load": 19.0.3(@types/node@20.11.24)(typescript@5.3.3) + "@commitlint/lint": 19.1.0 + "@commitlint/load": 19.1.0(@types/node@20.11.27)(typescript@5.4.2) "@commitlint/read": 19.0.3 "@commitlint/types": 19.0.3 execa: 8.0.1 @@ -463,10 +463,10 @@ packages: - typescript dev: true - /@commitlint/config-conventional@19.0.3: + /@commitlint/config-conventional@19.1.0: resolution: { - integrity: sha512-vh0L8XeLaEzTe8VCxSd0gAFvfTK0RFolrzw4o431bIuWJfi/yRCHJlsDwus7wW2eJaFFDR0VFXJyjGyDQhi4vA==, + integrity: sha512-KIKD2xrp6Uuk+dcZVj3++MlzIr/Su6zLE8crEDQCZNvWHNQSeeGbzOlNtsR32TUy6H3JbP7nWgduAHCaiGQ6EA==, } engines: { node: ">=v18" } dependencies: @@ -530,10 +530,10 @@ packages: semver: 7.6.0 dev: true - /@commitlint/lint@19.0.3: + /@commitlint/lint@19.1.0: resolution: { - integrity: sha512-uHPyRqIn57iIplYa5xBr6oNu5aPXKGC4WLeuHfqQHclwIqbJ33g3yA5fIA+/NYnp5ZM2EFiujqHFaVUYj6HlKA==, + integrity: sha512-ESjaBmL/9cxm+eePyEr6SFlBUIYlYpI80n+Ltm7IA3MAcrmiP05UMhJdAD66sO8jvo8O4xdGn/1Mt2G5VzfZKw==, } engines: { node: ">=v18" } dependencies: @@ -543,20 +543,20 @@ packages: "@commitlint/types": 19.0.3 dev: true - /@commitlint/load@19.0.3(@types/node@20.11.24)(typescript@5.3.3): + /@commitlint/load@19.1.0(@types/node@20.11.27)(typescript@5.4.2): resolution: { - integrity: sha512-18Tk/ZcDFRKIoKfEcl7kC+bYkEQ055iyKmGsYDoYWpKf6FUvBrP9bIWapuy/MB+kYiltmP9ITiUx6UXtqC9IRw==, + integrity: sha512-rWqnvNDpeshX8JfUC/qjpDkQB78qF+4uHcJmIRJMwvlj6zWce08SP/TPKN3GlNKgXhAawwcAPxXL9qOTTdiOBA==, } engines: { node: ">=v18" } dependencies: "@commitlint/config-validator": 19.0.3 "@commitlint/execute-rule": 19.0.0 - "@commitlint/resolve-extends": 19.0.3 + "@commitlint/resolve-extends": 19.1.0 "@commitlint/types": 19.0.3 chalk: 5.3.0 - cosmiconfig: 8.3.6(typescript@5.3.3) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.24)(cosmiconfig@8.3.6)(typescript@5.3.3) + cosmiconfig: 8.3.6(typescript@5.4.2) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.27)(cosmiconfig@8.3.6)(typescript@5.4.2) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -598,10 +598,10 @@ packages: minimist: 1.2.8 dev: true - /@commitlint/resolve-extends@19.0.3: + /@commitlint/resolve-extends@19.1.0: resolution: { - integrity: sha512-18BKmta8OC8+Ub+Q3QGM9l27VjQaXobloVXOrMvu8CpEwJYv62vC/t7Ka5kJnsW0tU9q1eMqJFZ/nN9T/cOaIA==, + integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==, } engines: { node: ">=v18" } dependencies: @@ -1031,29 +1031,29 @@ packages: - supports-color dev: true - /@moonrepo/cli@1.22.2: + /@moonrepo/cli@1.22.7: resolution: { - integrity: sha512-xZ+bFuVDcH52tlSDYn/2Ez6/avT2XbeeJ8sXaGe0Zhk07gh32lNzpZGtoS5aT94ME7abJlltfKEIdNFDbTRtPA==, + integrity: sha512-N4s5/JONW2vJtwDZKlsgejW9eQRoIT6Vu8TkitJf/fvNKZxGZkapNG+VWVRKy1hghX/4Khs4N5L4MqRhG8Ptsw==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.22.2 - "@moonrepo/core-linux-arm64-musl": 1.22.2 - "@moonrepo/core-linux-x64-gnu": 1.22.2 - "@moonrepo/core-linux-x64-musl": 1.22.2 - "@moonrepo/core-macos-arm64": 1.22.2 - "@moonrepo/core-macos-x64": 1.22.2 - "@moonrepo/core-windows-x64-msvc": 1.22.2 + "@moonrepo/core-linux-arm64-gnu": 1.22.7 + "@moonrepo/core-linux-arm64-musl": 1.22.7 + "@moonrepo/core-linux-x64-gnu": 1.22.7 + "@moonrepo/core-linux-x64-musl": 1.22.7 + "@moonrepo/core-macos-arm64": 1.22.7 + "@moonrepo/core-macos-x64": 1.22.7 + "@moonrepo/core-windows-x64-msvc": 1.22.7 dev: true - /@moonrepo/core-linux-arm64-gnu@1.22.2: + /@moonrepo/core-linux-arm64-gnu@1.22.7: resolution: { - integrity: sha512-Qp9ZVcN0nQ6wpN2vNxURDQdLk+2pSo7KUQbKTuExH+GuoApY/aReAw7ZRwKuIM3pJq5WfaiNYz76LhXtlX3rhw==, + integrity: sha512-dj1Mzsh0iZMa19LgXpt4a55kI1IeuRYYbSgVHJA7Fe8F1fTjOy4AM8vrGe4ZqBEDxKgKrkJdv1wqRZg4Z71qeg==, } cpu: [arm64] os: [linux] @@ -1061,10 +1061,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.22.2: + /@moonrepo/core-linux-arm64-musl@1.22.7: resolution: { - integrity: sha512-P0My0v0kMU2byLOcuLYoHVrA52TS+zIfSUJrG0PFy4xO6K5dzGrXNRPrP3/0RC9WhFCWeD3F9sFU2PCV/V48bg==, + integrity: sha512-IjgxrbL8pOyX1RATgLAqTFAtq/uByDexTYUXm3hFlgf/VDqS68JwH+MBHndBI903+0rV8NSDKjhYZTxCzZx+6Q==, } cpu: [arm64] os: [linux] @@ -1072,10 +1072,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.22.2: + /@moonrepo/core-linux-x64-gnu@1.22.7: resolution: { - integrity: sha512-A5xJ7oeygo2O7I/ZFxbSOZ520D1JAW0pG2x09pk4DHXWK1dxX4llzqp/TbHZfwxB+UvNxhl9/9VeGWe2DwWMsQ==, + integrity: sha512-qEFG18QnhYeUbCVDx1gVOUuClC+Oite5PQMQcXO47iKu5MenkiH9ldiVNzcTGI2Mo4CwIwgVkwaaTlJaGmTPCw==, } cpu: [x64] os: [linux] @@ -1083,10 +1083,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.22.2: + /@moonrepo/core-linux-x64-musl@1.22.7: resolution: { - integrity: sha512-We5ttPaPRTkLifTPc5dY9L5CTgh5x4i10Ti3cZHjXw0G9cu24dqygmU8JYqF2mUljQLS65dKC4dyyMv9ajwisA==, + integrity: sha512-jkn/ff0BWzSd97MP3VJ+s9hlpmNrygL5WV4MzGq6TF/gr/uER8cHDdSsN4/Dt06NFH8EQxXkesBNG/EJXo1Axg==, } cpu: [x64] os: [linux] @@ -1094,10 +1094,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.22.2: + /@moonrepo/core-macos-arm64@1.22.7: resolution: { - integrity: sha512-uWOm9TPDP7dtPtNq6n7mQgCn+feb0U7zFLKGbHNwKVi9e2PWJnN8vDUkH9LRthphVs1Qj4XnTixfDBSDybzNJw==, + integrity: sha512-/PqWbaY/T+jNunQ0t7aypYsY77CZ50nyUmasYcUyoeYXu6c7e1+qtXIuIG4HWeKaTTjRZKoBXZiL+GkbXlTQeQ==, } cpu: [arm64] os: [darwin] @@ -1105,10 +1105,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.22.2: + /@moonrepo/core-macos-x64@1.22.7: resolution: { - integrity: sha512-LGK2ufbfq9JWTe2pgBw05hg2WuT2uAsfk1kFyqCMl2Zi69fV0slw5GQMX4pHNHnO8Tuw/G9WwK/oV2B6qEPmqw==, + integrity: sha512-X6ahl3b+Nwhdw84NdUA9Ss5VMFlIsmK01u6iwJFy/ymfXwK05tM2LdEBhpJWxOsOTNjFS3gJp4zvNkgsLQb+kQ==, } cpu: [x64] os: [darwin] @@ -1116,10 +1116,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.22.2: + /@moonrepo/core-windows-x64-msvc@1.22.7: resolution: { - integrity: sha512-9vrZDtoX4COdYxHR1NK26WWToXfh9SRpud3HXiAdPqwabfhGD5owUVO5CcUaYj3nYxdZyNxtxoNIcQlRtsXS7g==, + integrity: sha512-t6xgorQGAXOIUyoMYMkOq408Kdr+hwqMBlyaZjEXC+p2H2TRFNXBWCsz3yFst++V3OT9lfipD9QUDpeQ06WWrw==, } cpu: [x64] os: [win32] @@ -1300,10 +1300,10 @@ packages: engines: { node: ">=18" } dev: true - /@spectrum-css/icon@6.0.4(@spectrum-css/tokens@11.0.0): + /@spectrum-css/icon@6.0.5(@spectrum-css/tokens@11.0.0): resolution: { - integrity: sha512-JDU9y1pEbUsNnJe6CyxCrxoklGQeECG5kmXu22ixPpzYwQBYQANV/AdoH77GD+bNbJZunyVjJVdySmaeNQkTiw==, + integrity: sha512-zxpNZ4NIV9ObuzCPX786GpaKV5Z1DZoGgo7vLgx8j/gldVu1DoTC9nhRwQGQGpR/xThoOUiZW2Fh0n+dUtVGiQ==, } peerDependencies: "@spectrum-css/tokens": ">=13.1" @@ -1320,7 +1320,7 @@ packages: "@spectrum-css/vars": 9.0.8 dev: false - /@spectrum-css/table@4.0.60(@spectrum-css/icon@6.0.4)(@spectrum-css/vars@9.0.8): + /@spectrum-css/table@4.0.60(@spectrum-css/icon@6.0.5)(@spectrum-css/vars@9.0.8): resolution: { integrity: sha512-eaBFdF/MJfRJtLkjlojAaFzI2dLnK0Xuk3lyXxVHIENzFsarlMVztHiDE2K/MThhsPsASJ7dc9ufOgtgjqxEHQ==, @@ -1329,7 +1329,7 @@ packages: "@spectrum-css/icon": ">=3" "@spectrum-css/vars": ">=9" dependencies: - "@spectrum-css/icon": 6.0.4(@spectrum-css/tokens@11.0.0) + "@spectrum-css/icon": 6.0.5(@spectrum-css/tokens@11.0.0) "@spectrum-css/vars": 9.0.8 dev: false @@ -1685,7 +1685,7 @@ packages: integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==, } dependencies: - "@types/node": 20.11.24 + "@types/node": 20.11.27 dev: true /@types/minimist@1.2.5: @@ -1711,6 +1711,15 @@ packages: undici-types: 5.26.5 dev: true + /@types/node@20.11.27: + resolution: + { + integrity: sha512-qyUZfMnCg1KEz57r7pzFtSGt49f6RPkPBis3Vo4PbS7roQEDn22hiHzl/Lo1q4i4hDEgBJmBF/NTNg2XR0HbFg==, + } + dependencies: + undici-types: 5.26.5 + dev: true + /@types/normalize-package-data@2.4.4: resolution: { @@ -2058,7 +2067,7 @@ packages: currently-unhandled: 0.4.1 debug: 4.3.4 emittery: 1.0.3 - figures: 6.0.1 + figures: 6.1.0 globby: 14.0.1 ignore-by-default: 2.1.0 indent-string: 5.0.0 @@ -2184,7 +2193,7 @@ packages: es-errors: 1.3.0 function-bind: 1.1.2 get-intrinsic: 1.2.4 - set-function-length: 1.2.1 + set-function-length: 1.2.2 dev: true /callsites@3.1.0: @@ -2589,7 +2598,7 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.24)(cosmiconfig@8.3.6)(typescript@5.3.3): + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.27)(cosmiconfig@8.3.6)(typescript@5.4.2): resolution: { integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, @@ -2600,13 +2609,13 @@ packages: cosmiconfig: ">=8.2" typescript: ">=4" dependencies: - "@types/node": 20.11.24 - cosmiconfig: 8.3.6(typescript@5.3.3) + "@types/node": 20.11.27 + cosmiconfig: 8.3.6(typescript@5.4.2) jiti: 1.21.0 - typescript: 5.3.3 + typescript: 5.4.2 dev: true - /cosmiconfig@8.3.6(typescript@5.3.3): + /cosmiconfig@8.3.6(typescript@5.4.2): resolution: { integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, @@ -2622,7 +2631,7 @@ packages: js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - typescript: 5.3.3 + typescript: 5.4.2 dev: true /cross-spawn@5.1.0: @@ -2920,7 +2929,7 @@ packages: has-property-descriptors: 1.0.2 has-proto: 1.0.3 has-symbols: 1.0.3 - hasown: 2.0.1 + hasown: 2.0.2 internal-slot: 1.0.7 is-array-buffer: 3.0.4 is-callable: 1.2.7 @@ -2934,7 +2943,7 @@ packages: object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.2 - safe-array-concat: 1.1.0 + safe-array-concat: 1.1.2 safe-regex-test: 1.0.3 string.prototype.trim: 1.2.8 string.prototype.trimend: 1.0.7 @@ -2944,7 +2953,7 @@ packages: typed-array-byte-offset: 1.0.2 typed-array-length: 1.0.5 unbox-primitive: 1.0.2 - which-typed-array: 1.1.14 + which-typed-array: 1.1.15 dev: true /es-define-property@1.0.0: @@ -2974,7 +2983,7 @@ packages: dependencies: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 - hasown: 2.0.1 + hasown: 2.0.2 dev: true /es-shim-unscopables@1.0.2: @@ -2983,7 +2992,7 @@ packages: integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, } dependencies: - hasown: 2.0.1 + hasown: 2.0.2 dev: true /es-to-primitive@1.2.1: @@ -3167,10 +3176,10 @@ packages: reusify: 1.0.4 dev: true - /figures@6.0.1: + /figures@6.1.0: resolution: { - integrity: sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==, + integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==, } engines: { node: ">=18" } dependencies: @@ -3408,7 +3417,7 @@ packages: function-bind: 1.1.2 has-proto: 1.0.3 has-symbols: 1.0.3 - hasown: 2.0.1 + hasown: 2.0.2 dev: true /get-stream@8.0.1: @@ -3634,10 +3643,10 @@ packages: } dev: true - /hasown@2.0.1: + /hasown@2.0.2: resolution: { - integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==, + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, } engines: { node: ">= 0.4" } dependencies: @@ -3799,7 +3808,7 @@ packages: engines: { node: ">= 0.4" } dependencies: es-errors: 1.3.0 - hasown: 2.0.1 + hasown: 2.0.2 side-channel: 1.0.6 dev: true @@ -3863,7 +3872,7 @@ packages: integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, } dependencies: - hasown: 2.0.1 + hasown: 2.0.2 dev: true /is-date-object@1.0.5: @@ -4052,7 +4061,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - which-typed-array: 1.1.14 + which-typed-array: 1.1.15 dev: true /is-unicode-supported@2.0.0: @@ -5587,10 +5596,10 @@ packages: queue-microtask: 1.2.3 dev: true - /safe-array-concat@1.1.0: + /safe-array-concat@1.1.2: resolution: { - integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==, + integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==, } engines: { node: ">=0.4" } dependencies: @@ -5690,10 +5699,10 @@ packages: } dev: true - /set-function-length@1.2.1: + /set-function-length@1.2.2: resolution: { - integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==, + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, } engines: { node: ">= 0.4" } dependencies: @@ -6389,6 +6398,15 @@ packages: hasBin: true dev: true + /typescript@5.4.2: + resolution: + { + integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==, + } + engines: { node: ">=14.17" } + hasBin: true + dev: true + /unbox-primitive@1.0.2: resolution: { @@ -6590,10 +6608,10 @@ packages: path-exists: 4.0.0 dev: true - /which-typed-array@1.1.14: + /which-typed-array@1.1.15: resolution: { - integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==, + integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==, } engines: { node: ">= 0.4" } dependencies: From 1ad3398b4314f10031227e001a1f632848d0a160 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 Mar 2024 19:24:48 +0000 Subject: [PATCH 113/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 60 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 62 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 45f4a3e3..7c865e5c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -31,6 +31,7 @@ "small-clocks-jam", "smooth-turtles-retire", "soft-moles-walk", + "sour-rabbits-own", "strange-rings-love", "sweet-pillows-protect", "tame-bobcats-beg", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 997581fc..8db6f2c0 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,65 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.20 + +### Minor Changes + +- fb61f17: Added Title typography tokens + + ## Design Motivation + + Adding new typography styles for Title. While the Heading style is for the loudest, most broad message, there are still going to be other important items in your information hierarchy. The Title style is for text that’s communicating other need-to-know concepts. It’s often set in Bold weight, and it has a range of font sizes that can be paired with Body and Detail sizes to create visual balance. File names, cards, user names, panels, and other high-signal concepts in interfaces use the Title style. + + ## Token Diff + + _Tokens added (45):_ + + - `title-cjk-emphasized-font-style` + - `title-cjk-emphasized-font-weight` + - `title-cjk-font-family` + - `title-cjk-font-style` + - `title-cjk-font-weight` + - `title-cjk-line-height` + - `title-cjk-size-l` + - `title-cjk-size-m` + - `title-cjk-size-s` + - `title-cjk-size-xl` + - `title-cjk-size-xs` + - `title-cjk-size-xxl` + - `title-cjk-size-xxxl` + - `title-cjk-strong-emphasized-font-style` + - `title-cjk-strong-emphasized-font-weight` + - `title-cjk-strong-font-style` + - `title-cjk-strong-font-weight` + - `title-line-height` + - `title-margin-bottom-multiplier` + - `title-margin-top-multiplier` + - `title-sans-serif-emphasized-font-style` + - `title-sans-serif-emphasized-font-weight` + - `title-sans-serif-font-family` + - `title-sans-serif-font-style` + - `title-sans-serif-font-weight` + - `title-sans-serif-strong-emphasized-font-style` + - `title-sans-serif-strong-emphasized-font-weight` + - `title-sans-serif-strong-font-style` + - `title-sans-serif-strong-font-weight` + - `title-serif-emphasized-font-style` + - `title-serif-emphasized-font-weight` + - `title-serif-font-family` + - `title-serif-font-style` + - `title-serif-font-weight` + - `title-serif-strong-emphasized-font-style` + - `title-serif-strong-emphasized-font-weight` + - `title-serif-strong-font-style` + - `title-serif-strong-font-weight` + - `title-size-l` + - `title-size-m` + - `title-size-s` + - `title-size-xl` + - `title-size-xs` + - `title-size-xxl` + - `title-size-xxxl` + ## 13.0.0-beta.19 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index cb571be0..a72cb127 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.19", + "version": "13.0.0-beta.20", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From dd9a6ae663c4d14d0487238391055671db390201 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 13 Mar 2024 13:33:59 -0600 Subject: [PATCH 114/295] ci: fixing release workflow --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index defe40ae..ce60b087 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,5 +1,8 @@ name: Release +permissions: + id-token: write + on: push: branches: From 4b797a87e60f1d86be37e4b1722bcb6c119270d1 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 14 Mar 2024 17:14:39 -0600 Subject: [PATCH 115/295] ci: update release script --- .github/workflows/release.yml | 6 +++--- package.json | 2 +- pnpm-lock.yaml | 28 +++++----------------------- 3 files changed, 9 insertions(+), 27 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce60b087..900d481d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,5 @@ name: Release -permissions: - id-token: write - on: push: branches: @@ -15,6 +12,9 @@ jobs: release: name: Release runs-on: ubuntu-latest + permissions: + contents: write + id-token: write steps: - uses: actions/checkout@v3 with: diff --git a/package.json b/package.json index f71c8515..802c9c5a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "moon": "moon", "pre-commit": "lint-staged", - "prepare": "husky install", + "prepare": "husky || true", "release": "changeset publish" }, "repository": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8f90f634..af6bf11b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -118,13 +118,13 @@ importers: devDependencies: "@types/node": specifier: ^20.4.2 - version: 20.11.24 + version: 20.11.27 typescript: specifier: ^5.1.6 - version: 5.3.3 + version: 5.4.2 vite: specifier: ^4.4.4 - version: 4.4.4(@types/node@20.11.24) + version: 4.4.4(@types/node@20.11.27) packages/tokens: devDependencies: @@ -1702,15 +1702,6 @@ packages: } dev: true - /@types/node@20.11.24: - resolution: - { - integrity: sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==, - } - dependencies: - undici-types: 5.26.5 - dev: true - /@types/node@20.11.27: resolution: { @@ -6389,15 +6380,6 @@ packages: possible-typed-array-names: 1.0.0 dev: true - /typescript@5.3.3: - resolution: - { - integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, - } - engines: { node: ">=14.17" } - hasBin: true - dev: true - /typescript@5.4.2: resolution: { @@ -6493,7 +6475,7 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite@4.4.4(@types/node@20.11.24): + /vite@4.4.4(@types/node@20.11.27): resolution: { integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==, @@ -6524,7 +6506,7 @@ packages: terser: optional: true dependencies: - "@types/node": 20.11.24 + "@types/node": 20.11.27 esbuild: 0.18.12 postcss: 8.4.26 rollup: 3.26.2 From 832b680a4c09a10fa6f3d4752a890ccd0ee28102 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 14 Mar 2024 23:18:45 +0000 Subject: [PATCH 116/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 36 +++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index a2812959..69f4af4b 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2593,18 +2593,35 @@ } }, "opacity-checkerboard-square-size": { + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use opacity-checkerboard-square-size-medium instead.", "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-checkerboard-square-size-medium}", + "uuid": "9ddf2e73-ad74-46d7-a79d-fe961b06dbbd" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-checkerboard-square-size-medium}", + "uuid": "879360e9-a7b0-47e0-bc4a-931a12877014" + } + } + }, + "opacity-checkerboard-square-size-medium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", - "uuid": "9ddf2e73-ad74-46d7-a79d-fe961b06dbbd" + "uuid": "ead3f34f-55b1-4012-a4af-0f7fbf226020" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", - "uuid": "879360e9-a7b0-47e0-bc4a-931a12877014" + "uuid": "cc6fdec6-c03a-4691-805f-b60d199bb60d" } } }, @@ -7378,5 +7395,20 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-600}", "uuid": "56152e6a-3058-4467-86a1-34fa2b6f75b2" + }, + "opacity-checkerboard-square-size-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "2537f52b-5cae-4a35-a1f3-b1d4fe89060d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "0916cc84-f46f-45c3-b76d-d7d85d576480" + } + } } } \ No newline at end of file From d71bea18124ccbee22e0d1e789ac37a9e94af3f5 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 14 Mar 2024 17:23:04 -0600 Subject: [PATCH 117/295] chore: added changeset --- .changeset/silly-radios-float.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .changeset/silly-radios-float.md diff --git a/.changeset/silly-radios-float.md b/.changeset/silly-radios-float.md new file mode 100644 index 00000000..7ad9343d --- /dev/null +++ b/.changeset/silly-radios-float.md @@ -0,0 +1,18 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 Opacity checkerboard non-color token updates + +## Design Motivation + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Tokens added (2):_ + +- `opacity-checkerboard-square-size-medium` +- `opacity-checkerboard-square-size-small` + _Newly deprecated tokens (1):_ +- `opacity-checkerboard-square-size` From ac334240ad8f921b2c9710fe1c77229c1140a3ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 14 Mar 2024 23:26:24 +0000 Subject: [PATCH 118/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 21 +++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 7c865e5c..47fce57d 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -26,6 +26,7 @@ "neat-balloons-rhyme", "olive-schools-warn", "real-seals-camp", + "silly-radios-float", "six-phones-rescue", "slimy-emus-enjoy", "small-clocks-jam", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 8db6f2c0..0b4ff252 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,26 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.21 + +### Minor Changes + +- d71bea1: S2 Opacity checkerboard non-color token updates + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + _Tokens added (2):_ + + - `opacity-checkerboard-square-size-medium` + - `opacity-checkerboard-square-size-small` + + _Newly deprecated token (1):_ + + - `opacity-checkerboard-square-size` + ## 13.0.0-beta.20 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index a72cb127..802a4d2a 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.20", + "version": "13.0.0-beta.21", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 6cc854d088d55b4a02ab37af31b70f44998277b6 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 21 Mar 2024 15:34:07 +0000 Subject: [PATCH 119/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 69f4af4b..106148a3 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2566,12 +2566,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-s}", + "value": "{title-size-xxl}", "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-xs}", + "value": "{title-size-xl}", "uuid": "3f362b57-09eb-4147-b366-5c1f04c9a29f" } } @@ -2582,12 +2582,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", + "value": "{body-size-m}", "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", + "value": "{body-size-s}", "uuid": "43c5762a-d3a6-49db-9e5e-4a524604fecc" } } @@ -7410,5 +7410,20 @@ "uuid": "0916cc84-f46f-45c3-b76d-d7d85d576480" } } + }, + "alert-banner-top-to-alert-icon": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "37px", + "uuid": "fa14092c-ef3f-4b11-8bc8-968d22bed6e0" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "29px", + "uuid": "7939208b-2f8c-4569-b7cb-1c1bcfc8705a" + } + } } } \ No newline at end of file From c42448c728c7c6ac6c75de36690ff9bc09c69ae1 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 21 Mar 2024 14:45:09 -0600 Subject: [PATCH 120/295] chore: changeset added --- .changeset/chatty-dolphins-build.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .changeset/chatty-dolphins-build.md diff --git a/.changeset/chatty-dolphins-build.md b/.changeset/chatty-dolphins-build.md new file mode 100644 index 00000000..821a3ca6 --- /dev/null +++ b/.changeset/chatty-dolphins-build.md @@ -0,0 +1,20 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated and added alert dialog tokens for both desktop and mobile. + +## Design Motivation + +Title text in alert dialog is now using the new Title typography token. Also updated the size for description text, and added a new token for top to alert icon. + +## Token Diff + +_Tokens added (1):_ + +- `alert-banner-top-to-alert-icon` + +_Token values updated (2):_ + +- `alert-dialog-description-size` +- `alert-dialog-title-size` From 89a2a76b899307b32e6946758a5a305af237ce0d Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 21 Mar 2024 20:55:48 +0000 Subject: [PATCH 121/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 693d665e..3c8931ed 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1668,5 +1668,10 @@ "uuid": "73e40908-216f-406e-993f-287477753e65" } } + }, + "title-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "a7e9c20c-ab9b-46de-bf6a-c8fec9a8986b" } -} +} \ No newline at end of file From 46a801cd8da244edf161cda05758fb6011f34709 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 21 Mar 2024 15:04:01 -0600 Subject: [PATCH 122/295] chore: added changeset --- .changeset/good-baboons-doubt.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/good-baboons-doubt.md diff --git a/.changeset/good-baboons-doubt.md b/.changeset/good-baboons-doubt.md new file mode 100644 index 00000000..276e43f3 --- /dev/null +++ b/.changeset/good-baboons-doubt.md @@ -0,0 +1,5 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added tokens for S2 title color From 42b7f12bf4ac855e5e9498b4020ba1583d1ebe28 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 21 Mar 2024 15:04:18 -0600 Subject: [PATCH 123/295] chore: update depenecies --- .github/workflows/deploy-docs.yml | 3 -- .github/workflows/release.yml | 3 -- package.json | 2 +- pnpm-lock.yaml | 50 +++++++++++++++---------------- 4 files changed, 26 insertions(+), 32 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index ca999927..628f479a 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -31,9 +31,6 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: pnpm/action-setup@v2 - with: - version: 8.15.4 - uses: moonrepo/setup-toolchain@v0 with: auto-install: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 900d481d..c4969583 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,9 +19,6 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: pnpm/action-setup@v2 - with: - version: 8.15.4 - uses: moonrepo/setup-toolchain@v0 with: auto-install: true diff --git a/package.json b/package.json index 802c9c5a..ecf6d4b4 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "@changesets/cli": "^2.27.1", "@commitlint/cli": "^19.1.0", "@commitlint/config-conventional": "^19.1.0", - "@moonrepo/cli": "^1.22.7", + "@moonrepo/cli": "^1.22.8", "ava": "^6.1.2", "husky": "^9.0.11", "lint-staged": "^15.2.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index af6bf11b..570ea351 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,8 +17,8 @@ importers: specifier: ^19.1.0 version: 19.1.0 "@moonrepo/cli": - specifier: ^1.22.7 - version: 1.22.7 + specifier: ^1.22.8 + version: 1.22.9 ava: specifier: ^6.1.2 version: 6.1.2 @@ -1031,29 +1031,29 @@ packages: - supports-color dev: true - /@moonrepo/cli@1.22.7: + /@moonrepo/cli@1.22.9: resolution: { - integrity: sha512-N4s5/JONW2vJtwDZKlsgejW9eQRoIT6Vu8TkitJf/fvNKZxGZkapNG+VWVRKy1hghX/4Khs4N5L4MqRhG8Ptsw==, + integrity: sha512-IzHyzj2bWasbVhAiq34XIIO+prM4/20a8AURU3RauO6WG+limC7illF0ER/6TPqxD+eVTa09+RuzRJLDZr+DIA==, } hasBin: true requiresBuild: true dependencies: detect-libc: 2.0.2 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.22.7 - "@moonrepo/core-linux-arm64-musl": 1.22.7 - "@moonrepo/core-linux-x64-gnu": 1.22.7 - "@moonrepo/core-linux-x64-musl": 1.22.7 - "@moonrepo/core-macos-arm64": 1.22.7 - "@moonrepo/core-macos-x64": 1.22.7 - "@moonrepo/core-windows-x64-msvc": 1.22.7 + "@moonrepo/core-linux-arm64-gnu": 1.22.9 + "@moonrepo/core-linux-arm64-musl": 1.22.9 + "@moonrepo/core-linux-x64-gnu": 1.22.9 + "@moonrepo/core-linux-x64-musl": 1.22.9 + "@moonrepo/core-macos-arm64": 1.22.9 + "@moonrepo/core-macos-x64": 1.22.9 + "@moonrepo/core-windows-x64-msvc": 1.22.9 dev: true - /@moonrepo/core-linux-arm64-gnu@1.22.7: + /@moonrepo/core-linux-arm64-gnu@1.22.9: resolution: { - integrity: sha512-dj1Mzsh0iZMa19LgXpt4a55kI1IeuRYYbSgVHJA7Fe8F1fTjOy4AM8vrGe4ZqBEDxKgKrkJdv1wqRZg4Z71qeg==, + integrity: sha512-Z9Wz9M8+nKeVJgL0LqsRFrcYHLTlgkOlFGtonxKRdRrP8qPCis/5KD6SO22rcF7gapQNnP1BWUAPeD3iTnOMaA==, } cpu: [arm64] os: [linux] @@ -1061,10 +1061,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.22.7: + /@moonrepo/core-linux-arm64-musl@1.22.9: resolution: { - integrity: sha512-IjgxrbL8pOyX1RATgLAqTFAtq/uByDexTYUXm3hFlgf/VDqS68JwH+MBHndBI903+0rV8NSDKjhYZTxCzZx+6Q==, + integrity: sha512-e9yZahh0kMhfqNJ1JD3EIllHmE/OQ61hT5D5vb2lkN1vLtDTSJXtCEHnjF/aBKYG8TnJa/tT8IJ/aStm3/Slcg==, } cpu: [arm64] os: [linux] @@ -1072,10 +1072,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.22.7: + /@moonrepo/core-linux-x64-gnu@1.22.9: resolution: { - integrity: sha512-qEFG18QnhYeUbCVDx1gVOUuClC+Oite5PQMQcXO47iKu5MenkiH9ldiVNzcTGI2Mo4CwIwgVkwaaTlJaGmTPCw==, + integrity: sha512-dw/CYa3DTkWb4hP9FW6PsklboIdF+POEWQFegYjgS7Iy+rTCfcrIdzlHZAid9aD1TNmiS9UoEmi9OeG/+lSiHg==, } cpu: [x64] os: [linux] @@ -1083,10 +1083,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.22.7: + /@moonrepo/core-linux-x64-musl@1.22.9: resolution: { - integrity: sha512-jkn/ff0BWzSd97MP3VJ+s9hlpmNrygL5WV4MzGq6TF/gr/uER8cHDdSsN4/Dt06NFH8EQxXkesBNG/EJXo1Axg==, + integrity: sha512-G5p/sMIAls+rMoOfneuhjAexIo1r0WlC15UNmzSlZRSO5/LCMCShGlEX37A3Nwt7doMXmdI5zrnAvelseXQvtg==, } cpu: [x64] os: [linux] @@ -1094,10 +1094,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.22.7: + /@moonrepo/core-macos-arm64@1.22.9: resolution: { - integrity: sha512-/PqWbaY/T+jNunQ0t7aypYsY77CZ50nyUmasYcUyoeYXu6c7e1+qtXIuIG4HWeKaTTjRZKoBXZiL+GkbXlTQeQ==, + integrity: sha512-VTTxB900VOMqMtBP1P2MnxpCaq0KLxrKUFcD1p5M43EQX2NNEPL23gwE4mFb9zBwkT+rsTVOk/8loQ05WAi+Sg==, } cpu: [arm64] os: [darwin] @@ -1105,10 +1105,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.22.7: + /@moonrepo/core-macos-x64@1.22.9: resolution: { - integrity: sha512-X6ahl3b+Nwhdw84NdUA9Ss5VMFlIsmK01u6iwJFy/ymfXwK05tM2LdEBhpJWxOsOTNjFS3gJp4zvNkgsLQb+kQ==, + integrity: sha512-uqNmkfxdRlneiNfnTaUE3x5JQfr6QxLDG+spsh4RrgPZnHFp3xMlPZ45vNJoTDHs1fqj8P4qhRd/DhtiBEYs3Q==, } cpu: [x64] os: [darwin] @@ -1116,10 +1116,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.22.7: + /@moonrepo/core-windows-x64-msvc@1.22.9: resolution: { - integrity: sha512-t6xgorQGAXOIUyoMYMkOq408Kdr+hwqMBlyaZjEXC+p2H2TRFNXBWCsz3yFst++V3OT9lfipD9QUDpeQ06WWrw==, + integrity: sha512-7+Mr2NrH81ZaFpkGsasP/Xmk0ZkQiJsdZOndQKTgN1IX8qqAHJuF3Sj3RJUrFh1g5jwl8gAl8NIcl6iht52EQA==, } cpu: [x64] os: [win32] From 267c2c8e4ee97c460a1a556fd77e618ff8616fd5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 21 Mar 2024 21:08:15 +0000 Subject: [PATCH 124/295] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/tokens/CHANGELOG.md | 23 +++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 47fce57d..88a5bfa7 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -13,6 +13,7 @@ "angry-zoos-applaud", "blue-parrots-hug", "brown-years-perform", + "chatty-dolphins-build", "clever-onions-compete", "dirty-pets-attend", "empty-steaks-dress", @@ -20,6 +21,7 @@ "fuzzy-cherries-buy", "gentle-months-carry", "gold-bags-talk", + "good-baboons-doubt", "good-peas-mix", "happy-students-vanish", "lemon-dragons-raise", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 0b4ff252..03556f7c 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,28 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.22 + +### Minor Changes + +- c42448c: Updated and added alert dialog tokens for both desktop and mobile. + + ## Design Motivation + + Title text in alert dialog is now using the new Title typography token. Also updated the size for description text, and added a new token for top to alert icon. + + ## Token Diff + + _Tokens added (1):_ + + - `alert-banner-top-to-alert-icon` + + _Token values updated (2):_ + + - `alert-dialog-description-size` + - `alert-dialog-title-size` + +- 46a801c: Added tokens for S2 title color + ## 13.0.0-beta.21 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 802a4d2a..8dffbb02 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.21", + "version": "13.0.0-beta.22", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 11f03ecaa2c06668995cf5f80e50fa686a496810 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 21 Mar 2024 15:29:01 -0600 Subject: [PATCH 125/295] chore: fixing changesets --- .changeset/good-baboons-doubt.md | 16 ++++++++++++++++ .moon/toolchain.yml | 2 +- package.json | 2 +- packages/tokens/CHANGELOG.md | 5 ++++- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.changeset/good-baboons-doubt.md b/.changeset/good-baboons-doubt.md index 276e43f3..9e59c2e6 100644 --- a/.changeset/good-baboons-doubt.md +++ b/.changeset/good-baboons-doubt.md @@ -3,3 +3,19 @@ --- Added tokens for S2 title color + +## Design Motivation + +Title is a new typography style for Spectrum 2, and has a default `title-color` token + +## Token Diff + +_Tokens added (2):_ + +- `alert-banner-top-to-alert-icon` +- `title-color` + +_Token values updated (2):_ + +- `alert-dialog-description-size` +- `alert-dialog-title-size` diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 0ca66c74..1a28d670 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "8.15.4" + version: "8.15.5" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index ecf6d4b4..2755f6c8 100644 --- a/package.json +++ b/package.json @@ -34,5 +34,5 @@ "engines": { "node": "~20.11" }, - "packageManager": "pnpm@8.15.4" + "packageManager": "pnpm@8.15.5" } diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 03556f7c..442237c8 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -10,11 +10,14 @@ Title text in alert dialog is now using the new Title typography token. Also updated the size for description text, and added a new token for top to alert icon. + Title is a new typography style for Spectrum 2, and has a default `title-color` token. + ## Token Diff - _Tokens added (1):_ + _Tokens added (2):_ - `alert-banner-top-to-alert-icon` + - `title-color` _Token values updated (2):_ From 7913b4bedfa3b48a12de7f3d4e2a96d56cc6626b Mon Sep 17 00:00:00 2001 From: GarthDB Date: Mon, 25 Mar 2024 23:01:37 +0000 Subject: [PATCH 126/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 106148a3..8e79d6ec 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3728,12 +3728,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", - "uuid": "229fa20e-6d13-40b0-b19f-5cf6386f81ac" + "uuid": "229fa20e-6d13-40b0-b19f-5cf6386f81ac", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", - "uuid": "bef73b91-db4f-4532-9f4d-f5a81ead625d" + "uuid": "bef73b91-db4f-4532-9f4d-f5a81ead625d", + "deprecated": true } } }, @@ -7425,5 +7427,20 @@ "uuid": "7939208b-2f8c-4569-b7cb-1c1bcfc8705a" } } + }, + "accordion-top-to-text-spacious-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "696ab6c1-0c23-4868-8d6c-039d6d430d29" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "7bcbaaf1-f1d8-4755-acb2-5f6a45c3b9fe" + } + } } } \ No newline at end of file From 936f608be6d293591bb280d0631be2b0d985258c Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 25 Mar 2024 17:09:31 -0600 Subject: [PATCH 127/295] chore: added changeset --- .changeset/dirty-keys-deny.md | 15 +++++++++++++++ packages/tokens/src/layout-component.json | 8 +++++--- 2 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 .changeset/dirty-keys-deny.md diff --git a/.changeset/dirty-keys-deny.md b/.changeset/dirty-keys-deny.md new file mode 100644 index 00000000..0afbb712 --- /dev/null +++ b/.changeset/dirty-keys-deny.md @@ -0,0 +1,15 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +Fixed misnamed accordion token. + +## Token Diff + +_Tokens added (1):_ + +- `accordion-top-to-text-spacious-small` + +_Newly deprecated token (1):_ + +- `accordion-small-top-to-text-spacious` diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 8e79d6ec..f5930df9 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3729,13 +3729,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "229fa20e-6d13-40b0-b19f-5cf6386f81ac", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Introduced as an error. Use accordion-top-to-text-spacious-small instead" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "12px", "uuid": "bef73b91-db4f-4532-9f4d-f5a81ead625d", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Introduced as an error. Use accordion-top-to-text-spacious-small instead" } } }, @@ -7443,4 +7445,4 @@ } } } -} \ No newline at end of file +} From c51428b048b408a900e34c5ec5e96b18821114a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 25 Mar 2024 23:12:00 +0000 Subject: [PATCH 128/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 16 ++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 88a5bfa7..f47ec16f 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -15,6 +15,7 @@ "brown-years-perform", "chatty-dolphins-build", "clever-onions-compete", + "dirty-keys-deny", "dirty-pets-attend", "empty-steaks-dress", "forty-lizards-thank", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 442237c8..8255e89c 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,21 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.23 + +### Patch Changes + +- 936f608: Fixed misnamed accordion token. + + ## Token Diff + + _Tokens added (1):_ + + - `accordion-top-to-text-spacious-small` + + _Newly deprecated token (1):_ + + - `accordion-small-top-to-text-spacious` + ## 13.0.0-beta.22 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 8dffbb02..9a1fcd0f 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.22", + "version": "13.0.0-beta.23", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 8360d963900b254bacedbef0d1b03d8b08aa7b2b Mon Sep 17 00:00:00 2001 From: GarthDB Date: Tue, 2 Apr 2024 16:52:08 +0000 Subject: [PATCH 129/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 110 +++++++++++++++++++++- packages/tokens/src/layout.json | 80 ++++------------ 2 files changed, 128 insertions(+), 62 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index f5930df9..f892ed6d 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -7078,7 +7078,8 @@ "tag-minimum-width-multiplier": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1", - "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f" + "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f", + "deprecated": true }, "tag-maximum-width-multiplier": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", @@ -7444,5 +7445,110 @@ "uuid": "7bcbaaf1-f1d8-4755-acb2-5f6a45c3b9fe" } } + }, + "field-default-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "192px", + "uuid": "39c39c14-0500-4bf6-a542-967697aaff41" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "240px", + "uuid": "976298d3-326f-43da-aa71-bbd2dc1fad3d" + } + } + }, + "field-default-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "208px", + "uuid": "f35ec29c-b8ee-46c9-9c8c-c40171a15920" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "256px", + "uuid": "db379ff6-9ef2-44ee-9fce-32f1a53d68da" + } + } + }, + "field-default-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "224px", + "uuid": "c6d08f8b-4e8c-478a-8b08-5b69d2da1a5e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "272px", + "uuid": "88dfd273-555a-49bc-9271-a63ad45964e2" + } + } + }, + "field-default-width-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "240px", + "uuid": "23090def-780a-48cb-b644-8edd55189d46" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "288px", + "uuid": "068a256a-8dfc-4616-bdc1-8895441ba90b" + } + } + }, + "tag-minimum-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "21px", + "uuid": "d3327dae-cc93-4099-ad75-b5a4193af8e4" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "25px", + "uuid": "3b9e5d81-e49a-4080-ac53-094e0f7eb151" + } + } + }, + "tag-minimum-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "27px", + "uuid": "9b373ba1-7381-4360-8730-bd91afacbfa7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "34px", + "uuid": "40485b19-e1ac-4981-a17c-bb6e264c730d" + } + } + }, + "tag-minimum-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "33px", + "uuid": "234b3886-77eb-4ad5-9d19-40d801a54617" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "42px", + "uuid": "b2788159-dd2d-4f94-9282-d8cdbba41807" + } + } } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 36893ace..e9bfc66b 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1523,7 +1523,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", + "value": "6px", "uuid": "5da7e575-d0c3-44e7-bbfa-6fa58972343b" } } @@ -1533,12 +1533,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "6px", "uuid": "7a3120a8-3c98-4227-afb4-5d6a8aa78e14" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "8px", "uuid": "7b4b7283-1223-4d2e-9f24-5ed6dada4711" } } @@ -1548,12 +1548,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "9px", "uuid": "24784275-a117-4767-98ee-5d8a08c89296" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", + "value": "11px", "uuid": "7a17cc60-fa76-4234-a99e-c4f711e63f5f" } } @@ -1563,12 +1563,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "11px", "uuid": "efcd740a-033e-493a-a902-e2f657897bd4" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "15px", "uuid": "263428f7-3b5a-449a-87d1-874cebf50fa8" } } @@ -1831,19 +1831,9 @@ } }, "field-width-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "4edc5620-2fd6-4656-ad4f-f5e44fc77ce9" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{field-default-width-small}", + "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861" }, "character-count-to-field-quiet-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -2244,48 +2234,18 @@ "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" }, "field-width-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "208px", - "uuid": "935927d3-b25e-468a-999a-938643901e50" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "256px", - "uuid": "4504fa00-b3ee-4065-9202-0ad226e731d7" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{field-default-width-medium}", + "uuid": "935927d3-b25e-468a-999a-938643901e50" }, "field-width-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "224px", - "uuid": "cc43e053-1255-403f-aaf5-2182f5438592" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "272px", - "uuid": "1767d955-b8c4-41b0-82d4-4aadc9f12ab1" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{field-default-width-large}", + "uuid": "cc43e053-1255-403f-aaf5-2182f5438592" }, "field-width-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "3abf72b5-5ed7-4d18-8eda-e137b2ac2f51" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{field-default-width-extra-large}", + "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5" } -} +} \ No newline at end of file From 3230aba19f4a4a98dee51984c6801e662f530045 Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 2 Apr 2024 14:09:36 -0600 Subject: [PATCH 130/295] chore: added deprecated message and changeset --- .changeset/chatty-turtles-sell.md | 35 +++++++++++++++++++++++++++++++ packages/tokens/src/layout.json | 20 ++++++++++++------ 2 files changed, 49 insertions(+), 6 deletions(-) create mode 100644 .changeset/chatty-turtles-sell.md diff --git a/.changeset/chatty-turtles-sell.md b/.changeset/chatty-turtles-sell.md new file mode 100644 index 00000000..79fbe10a --- /dev/null +++ b/.changeset/chatty-turtles-sell.md @@ -0,0 +1,35 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated and added S2 drop shadow tokens + +## Design Motivation + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Tokens added (7):_ + +- `field-default-width-extra-large` +- `field-default-width-large` +- `field-default-width-medium` +- `field-default-width-small` +- `tag-minimum-width-large` +- `tag-minimum-width-medium` +- `tag-minimum-width-small` + +_Token values updated (4):_ + +- `field-top-to-progress-circle-extra-large` +- `field-top-to-progress-circle-large` +- `field-top-to-progress-circle-medium` +- `field-top-to-progress-circle-small` + +_Newly Deprecated Tokens (4):_ + +- `field-width-extra-large` +- `field-width-large` +- `field-width-medium` +- `field-width-small` diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index e9bfc66b..027ab1be 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -1815,7 +1815,7 @@ }, "field-width": { "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-width-small instead.", + "deprecated_comment": "This token has been deprecated, use field-default-width-medium instead.", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -1833,7 +1833,9 @@ "field-width-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{field-default-width-small}", - "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861" + "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861", + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use field-default-width-small instead." }, "character-count-to-field-quiet-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -2236,16 +2238,22 @@ "field-width-medium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{field-default-width-medium}", - "uuid": "935927d3-b25e-468a-999a-938643901e50" + "uuid": "935927d3-b25e-468a-999a-938643901e50", + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use field-default-width-medium instead." }, "field-width-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{field-default-width-large}", - "uuid": "cc43e053-1255-403f-aaf5-2182f5438592" + "uuid": "cc43e053-1255-403f-aaf5-2182f5438592", + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use field-default-width-large instead." }, "field-width-extra-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{field-default-width-extra-large}", - "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5" + "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5", + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use field-default-width-extra-large instead." } -} \ No newline at end of file +} From 0c02fc74831963871252363d158725283c671452 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Tue, 2 Apr 2024 21:58:45 +0000 Subject: [PATCH 131/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 116 +++++++++++++++++++++++--------- 1 file changed, 86 insertions(+), 30 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 027ab1be..66dfcf37 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -55,39 +55,20 @@ "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" }, "drop-shadow-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-x-100}", + "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316", + "deprecated": true }, "drop-shadow-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "32950bbd-7292-452d-a445-4eb6de66c77d" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-y-100}", + "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" }, "drop-shadow-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "374f321e-8b0b-442b-9494-6a2ae9936c6b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-blur-100}", + "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" }, "android-elevation": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", @@ -2255,5 +2236,80 @@ "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5", "deprecated": true, "deprecated_comment": "This token has been deprecated, use field-default-width-extra-large instead." + }, + "drop-shadow-x-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "751d636e-efb5-411e-a5b8-06b11439cc90" + }, + "drop-shadow-x-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "0c76c925-4d29-49a3-b882-e946bd7fe9f1" + }, + "drop-shadow-y-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "ed1f46fd-a586-46a5-8cc1-d843a57e2cc2" + }, + "drop-shadow-y-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "d2d0320a-6984-4b3f-8f5d-ccb88892a26c" + }, + "drop-shadow-blur-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "025e39f4-dfe7-4a8a-beb5-bd0577f72eac" + }, + "drop-shadow-blur-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "2b08d425-ecf2-4891-83cd-005a2d5e76ce" + }, + "drop-shadow-emphasized-default-x": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-x-100}", + "uuid": "5b611aa8-9db2-495d-a119-3385eee62442" + }, + "drop-shadow-emphasized-default-y": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-y-100}", + "uuid": "02949dd5-0596-44bc-8b63-dcc7d2ba628b" + }, + "drop-shadow-emphasized-default-blur": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-blur-100}", + "uuid": "57920fe8-72ad-48d2-aa9b-feec4c989106" + }, + "drop-shadow-emphasized-hover-x": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-x-200}", + "uuid": "d86f7c89-92a6-4bad-83b0-43953472ce7f" + }, + "drop-shadow-emphasized-hover-y": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-y-200}", + "uuid": "da17e314-f3e9-4d49-9362-533eb65c0f7b" + }, + "drop-shadow-emphasized-hover-blur": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-blur-200}", + "uuid": "5f6674e8-ef00-490a-800d-3b946059bae2" + }, + "drop-shadow-elevated-x": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-x-200}", + "uuid": "59324423-4428-40d7-a227-5f75aeb38312" + }, + "drop-shadow-elevated-y": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-y-200}", + "uuid": "45f313a5-1749-4b95-b5e3-20944adbea84" + }, + "drop-shadow-elevated-blur": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-blur-200}", + "uuid": "f3487a86-3aea-4527-8b5c-287c0bddad6c" } -} +} \ No newline at end of file From 56305eff4ee9deb05db9d8ba86349f49a632df04 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Tue, 2 Apr 2024 21:58:45 +0000 Subject: [PATCH 132/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 66 +++++++++++++++++++------- 1 file changed, 48 insertions(+), 18 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 3c8931ed..15585051 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -40,24 +40,9 @@ } }, "drop-shadow-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.15)", - "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.8)", - "uuid": "e54491a8-d3ca-4d67-bacb-74ac192a387f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.15)", - "uuid": "1deef94a-efba-4670-a1be-78ee021bdfe8" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color-100}", + "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb" }, "opacity-disabled": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", @@ -1673,5 +1658,50 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "a7e9c20c-ab9b-46de-bf6a-c8fec9a8986b" + }, + "drop-shadow-color-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.12)", + "uuid": "5c0f0543-7e9b-43d6-9fea-c771b9b524c6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.36)", + "uuid": "8d7e0eb7-c3c7-485e-896c-d5d5107e3b8f" + } + } + }, + "drop-shadow-color-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.16)", + "uuid": "5945eb42-744c-41df-a4ab-a3d61f8782ee" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.48)", + "uuid": "c88f7b8e-e5f5-4d0e-a8dd-025f8d274948" + } + } + }, + "drop-shadow-emphasized-default-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color-100}", + "uuid": "af4e0a7a-7c6a-4cf2-a17b-0b07ef365869" + }, + "drop-shadow-emphasized-hover-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color-200}", + "uuid": "4c84adb3-9edf-4a5d-b39a-5f31a0d3529c" + }, + "drop-shadow-elevated-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color-200}", + "uuid": "e475981f-97af-479c-859b-7619dd87c448" } } \ No newline at end of file From e509f8a66f201ef596d0f3e50a64ac53ab5e9201 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 3 Apr 2024 15:39:26 -0600 Subject: [PATCH 133/295] fix: added wireframe values to newdrop-shadow color tokens --- package.json | 4 +- packages/tokens/src/color-aliases.json | 12 +- pnpm-lock.yaml | 320 ++++++++++++++++--------- 3 files changed, 221 insertions(+), 115 deletions(-) diff --git a/package.json b/package.json index 2755f6c8..38c57b28 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,9 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@changesets/cli": "^2.27.1", - "@commitlint/cli": "^19.1.0", + "@commitlint/cli": "^19.2.1", "@commitlint/config-conventional": "^19.1.0", - "@moonrepo/cli": "^1.22.8", + "@moonrepo/cli": "^1.23.3", "ava": "^6.1.2", "husky": "^9.0.11", "lint-staged": "^15.2.2", diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 15585051..35350561 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1671,6 +1671,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.36)", "uuid": "8d7e0eb7-c3c7-485e-896c-d5d5107e3b8f" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.12)", + "uuid": "8e496445-97fc-4ff6-96d4-81b0215b8ffe" } } }, @@ -1686,6 +1691,11 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.48)", "uuid": "c88f7b8e-e5f5-4d0e-a8dd-025f8d274948" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.16)", + "uuid": "aa54be1b-bf30-42b7-91ec-09259bea0bd3" } } }, @@ -1704,4 +1714,4 @@ "value": "{drop-shadow-color-200}", "uuid": "e475981f-97af-479c-859b-7619dd87c448" } -} \ No newline at end of file +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 570ea351..b18de423 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,14 +11,14 @@ importers: specifier: ^2.27.1 version: 2.27.1 "@commitlint/cli": - specifier: ^19.1.0 - version: 19.1.0(@types/node@20.11.27)(typescript@5.4.2) + specifier: ^19.2.1 + version: 19.2.1(@types/node@20.12.3)(typescript@5.4.3) "@commitlint/config-conventional": specifier: ^19.1.0 version: 19.1.0 "@moonrepo/cli": - specifier: ^1.22.8 - version: 1.22.9 + specifier: ^1.23.3 + version: 1.23.3 ava: specifier: ^6.1.2 version: 6.1.2 @@ -168,15 +168,15 @@ importers: version: 3.2.5 packages: - /@babel/code-frame@7.23.5: + /@babel/code-frame@7.24.2: resolution: { - integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, + integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/highlight": 7.23.4 - chalk: 2.4.2 + "@babel/highlight": 7.24.2 + picocolors: 1.0.0 dev: true /@babel/helper-validator-identifier@7.22.20: @@ -187,22 +187,23 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/highlight@7.23.4: + /@babel/highlight@7.24.2: resolution: { - integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, + integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==, } engines: { node: ">=6.9.0" } dependencies: "@babel/helper-validator-identifier": 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 + picocolors: 1.0.0 dev: true - /@babel/runtime@7.24.0: + /@babel/runtime@7.24.4: resolution: { - integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==, + integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==, } engines: { node: ">=6.9.0" } dependencies: @@ -215,7 +216,7 @@ packages: integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/config": 3.0.0 "@changesets/get-version-range-type": 0.4.0 "@changesets/git": 3.0.0 @@ -236,7 +237,7 @@ packages: integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/errors": 0.2.0 "@changesets/get-dependents-graph": 2.0.0 "@changesets/types": 6.0.0 @@ -260,7 +261,7 @@ packages: } hasBin: true dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/apply-release-plan": 7.0.0 "@changesets/assemble-release-plan": 6.0.0 "@changesets/changelog-git": 0.2.0 @@ -337,7 +338,7 @@ packages: integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/assemble-release-plan": 6.0.0 "@changesets/config": 3.0.0 "@changesets/pre": 2.0.0 @@ -359,7 +360,7 @@ packages: integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -393,7 +394,7 @@ packages: integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -406,7 +407,7 @@ packages: integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/git": 3.0.0 "@changesets/logger": 0.1.0 "@changesets/parse": 0.4.0 @@ -436,25 +437,25 @@ packages: integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 dev: true - /@commitlint/cli@19.1.0(@types/node@20.11.27)(typescript@5.4.2): + /@commitlint/cli@19.2.1(@types/node@20.12.3)(typescript@5.4.3): resolution: { - integrity: sha512-SYGm8HGbVzrlSYeB6oo6pG1Ec6bOMJcDsXgNGa4vgZQsPj6nJkcbTWlIRmtmIk0tHi0d5sCljGuQ+g/0NCPv7w==, + integrity: sha512-cbkYUJsLqRomccNxvoJTyv5yn0bSy05BBizVyIcLACkRbVUqYorC351Diw/XFSWC/GtpwiwT2eOvQgFZa374bg==, } engines: { node: ">=v18" } hasBin: true dependencies: "@commitlint/format": 19.0.3 "@commitlint/lint": 19.1.0 - "@commitlint/load": 19.1.0(@types/node@20.11.27)(typescript@5.4.2) - "@commitlint/read": 19.0.3 + "@commitlint/load": 19.2.0(@types/node@20.12.3)(typescript@5.4.3) + "@commitlint/read": 19.2.1 "@commitlint/types": 19.0.3 execa: 8.0.1 yargs: 17.7.2 @@ -543,10 +544,10 @@ packages: "@commitlint/types": 19.0.3 dev: true - /@commitlint/load@19.1.0(@types/node@20.11.27)(typescript@5.4.2): + /@commitlint/load@19.2.0(@types/node@20.12.3)(typescript@5.4.3): resolution: { - integrity: sha512-rWqnvNDpeshX8JfUC/qjpDkQB78qF+4uHcJmIRJMwvlj6zWce08SP/TPKN3GlNKgXhAawwcAPxXL9qOTTdiOBA==, + integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==, } engines: { node: ">=v18" } dependencies: @@ -555,8 +556,8 @@ packages: "@commitlint/resolve-extends": 19.1.0 "@commitlint/types": 19.0.3 chalk: 5.3.0 - cosmiconfig: 8.3.6(typescript@5.4.2) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.27)(cosmiconfig@8.3.6)(typescript@5.4.2) + cosmiconfig: 9.0.0(typescript@5.4.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.12.3)(cosmiconfig@9.0.0)(typescript@5.4.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -585,15 +586,16 @@ packages: conventional-commits-parser: 5.0.0 dev: true - /@commitlint/read@19.0.3: + /@commitlint/read@19.2.1: resolution: { - integrity: sha512-b5AflTyAXkUx5qKw4TkjjcOccXZHql3JqMi522knTQktq2AubKXFz60Sws+K4FsefwPws6fGz9mqiI/NvsvxFA==, + integrity: sha512-qETc4+PL0EUv7Q36lJbPG+NJiBOGg7SSC7B5BsPWOmei+Dyif80ErfWQ0qXoW9oCh7GTpTNRoaVhiI8RbhuaNw==, } engines: { node: ">=v18" } dependencies: "@commitlint/top-level": 19.0.0 "@commitlint/types": 19.0.3 + execa: 8.0.1 git-raw-commits: 4.0.0 minimist: 1.2.8 dev: true @@ -990,7 +992,7 @@ packages: integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -1002,7 +1004,7 @@ packages: integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, } dependencies: - "@babel/runtime": 7.24.0 + "@babel/runtime": 7.24.4 "@changesets/types": 4.1.0 "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 @@ -1017,7 +1019,7 @@ packages: } hasBin: true dependencies: - detect-libc: 2.0.2 + detect-libc: 2.0.3 https-proxy-agent: 5.0.1 make-dir: 3.1.0 node-fetch: 2.7.0 @@ -1025,35 +1027,35 @@ packages: npmlog: 5.0.1 rimraf: 3.0.2 semver: 7.6.0 - tar: 6.2.0 + tar: 6.2.1 transitivePeerDependencies: - encoding - supports-color dev: true - /@moonrepo/cli@1.22.9: + /@moonrepo/cli@1.23.3: resolution: { - integrity: sha512-IzHyzj2bWasbVhAiq34XIIO+prM4/20a8AURU3RauO6WG+limC7illF0ER/6TPqxD+eVTa09+RuzRJLDZr+DIA==, + integrity: sha512-8wyqpfifW84KyOBm1XIWs5neGRR7Yv7CWnKGV+Lu5kwpYwpvxMPMjxAShTw3tFZzwxDaGeCkAqo4I00jwsXDdg==, } hasBin: true requiresBuild: true dependencies: - detect-libc: 2.0.2 + detect-libc: 2.0.3 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.22.9 - "@moonrepo/core-linux-arm64-musl": 1.22.9 - "@moonrepo/core-linux-x64-gnu": 1.22.9 - "@moonrepo/core-linux-x64-musl": 1.22.9 - "@moonrepo/core-macos-arm64": 1.22.9 - "@moonrepo/core-macos-x64": 1.22.9 - "@moonrepo/core-windows-x64-msvc": 1.22.9 + "@moonrepo/core-linux-arm64-gnu": 1.23.3 + "@moonrepo/core-linux-arm64-musl": 1.23.3 + "@moonrepo/core-linux-x64-gnu": 1.23.3 + "@moonrepo/core-linux-x64-musl": 1.23.3 + "@moonrepo/core-macos-arm64": 1.23.3 + "@moonrepo/core-macos-x64": 1.23.3 + "@moonrepo/core-windows-x64-msvc": 1.23.3 dev: true - /@moonrepo/core-linux-arm64-gnu@1.22.9: + /@moonrepo/core-linux-arm64-gnu@1.23.3: resolution: { - integrity: sha512-Z9Wz9M8+nKeVJgL0LqsRFrcYHLTlgkOlFGtonxKRdRrP8qPCis/5KD6SO22rcF7gapQNnP1BWUAPeD3iTnOMaA==, + integrity: sha512-xIJnTgJNWndhZVfXI1iFqh3Sv0+E/wq6GcTHBGGD4mZuJuOo8/JWzKzzZVp6zDTWCrBDi98/UwXePPdkkrd/Qg==, } cpu: [arm64] os: [linux] @@ -1061,10 +1063,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-arm64-musl@1.22.9: + /@moonrepo/core-linux-arm64-musl@1.23.3: resolution: { - integrity: sha512-e9yZahh0kMhfqNJ1JD3EIllHmE/OQ61hT5D5vb2lkN1vLtDTSJXtCEHnjF/aBKYG8TnJa/tT8IJ/aStm3/Slcg==, + integrity: sha512-Z/15Zp5W3olZSOBhNpASsGAqepF7QHaZDnZ1SXWywlMglLgbUD/xlFS0vj5zrJ65cMRMmH3kiKF2tnYb3dnbrA==, } cpu: [arm64] os: [linux] @@ -1072,10 +1074,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-gnu@1.22.9: + /@moonrepo/core-linux-x64-gnu@1.23.3: resolution: { - integrity: sha512-dw/CYa3DTkWb4hP9FW6PsklboIdF+POEWQFegYjgS7Iy+rTCfcrIdzlHZAid9aD1TNmiS9UoEmi9OeG/+lSiHg==, + integrity: sha512-kXPmi656cQ+Rc0ApHsZ/d2cxKzYLZ4Jvoa027Z3k1c5cRLvBQWr3zDCBcNVk28jZP8JmmcYmn7b7X4yXqjGxdw==, } cpu: [x64] os: [linux] @@ -1083,10 +1085,10 @@ packages: dev: true optional: true - /@moonrepo/core-linux-x64-musl@1.22.9: + /@moonrepo/core-linux-x64-musl@1.23.3: resolution: { - integrity: sha512-G5p/sMIAls+rMoOfneuhjAexIo1r0WlC15UNmzSlZRSO5/LCMCShGlEX37A3Nwt7doMXmdI5zrnAvelseXQvtg==, + integrity: sha512-vSxauMlu8+xoaZeVYtx+nvrlvN56RyeN1NllHlF960Xlcnw1is5fPvbOZujaX1reW+QuPkYvYsI6rV51Pvsulw==, } cpu: [x64] os: [linux] @@ -1094,10 +1096,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-arm64@1.22.9: + /@moonrepo/core-macos-arm64@1.23.3: resolution: { - integrity: sha512-VTTxB900VOMqMtBP1P2MnxpCaq0KLxrKUFcD1p5M43EQX2NNEPL23gwE4mFb9zBwkT+rsTVOk/8loQ05WAi+Sg==, + integrity: sha512-5WFCf2hQBMjWHOUhVspmjbLZ+sUDQ6Wx1aVwIonfO2fM9qEEtZrNTg3dRy0Clbaoo2NaOtbAvVoqUL+idyq/QA==, } cpu: [arm64] os: [darwin] @@ -1105,10 +1107,10 @@ packages: dev: true optional: true - /@moonrepo/core-macos-x64@1.22.9: + /@moonrepo/core-macos-x64@1.23.3: resolution: { - integrity: sha512-uqNmkfxdRlneiNfnTaUE3x5JQfr6QxLDG+spsh4RrgPZnHFp3xMlPZ45vNJoTDHs1fqj8P4qhRd/DhtiBEYs3Q==, + integrity: sha512-y17I7cEox2VYfduuoop5O9CB0TqoX0cwBLaPaoti2KIWPf4GZyuG+jKun7Iejhd1/IoFoNKPM8Pv0lp8t7cAiw==, } cpu: [x64] os: [darwin] @@ -1116,10 +1118,10 @@ packages: dev: true optional: true - /@moonrepo/core-windows-x64-msvc@1.22.9: + /@moonrepo/core-windows-x64-msvc@1.23.3: resolution: { - integrity: sha512-7+Mr2NrH81ZaFpkGsasP/Xmk0ZkQiJsdZOndQKTgN1IX8qqAHJuF3Sj3RJUrFh1g5jwl8gAl8NIcl6iht52EQA==, + integrity: sha512-+a9v109SPi1uwUUNKjqAJ/JkzFw1NwmW79mX9lrjPj+Akx85NNOCu1EDYvpjCWOAM1RcIGatByvlmucmTqYqng==, } cpu: [x64] os: [win32] @@ -1685,7 +1687,7 @@ packages: integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==, } dependencies: - "@types/node": 20.11.27 + "@types/node": 20.12.3 dev: true /@types/minimist@1.2.5: @@ -1711,6 +1713,15 @@ packages: undici-types: 5.26.5 dev: true + /@types/node@20.12.3: + resolution: + { + integrity: sha512-sD+ia2ubTeWrOu+YMF+MTAB7E+O7qsMqAbMfW7DG3K1URwhZ5hN1pLlRVGbf4wDFzSfikL05M17EyorS86jShw==, + } + dependencies: + undici-types: 5.26.5 + dev: true + /@types/normalize-package-data@2.4.4: resolution: { @@ -1743,7 +1754,7 @@ packages: "@mapbox/node-pre-gyp": 1.0.11 "@rollup/pluginutils": 4.2.1 acorn: 8.11.3 - acorn-import-attributes: 1.9.2(acorn@8.11.3) + acorn-import-attributes: 1.9.5(acorn@8.11.3) async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 @@ -1775,10 +1786,10 @@ packages: } dev: true - /acorn-import-attributes@1.9.2(acorn@8.11.3): + /acorn-import-attributes@1.9.5(acorn@8.11.3): resolution: { - integrity: sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==, + integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==, } peerDependencies: acorn: ^8 @@ -1847,14 +1858,12 @@ packages: engines: { node: ">=6" } dev: true - /ansi-escapes@6.2.0: + /ansi-escapes@6.2.1: resolution: { - integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==, + integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==, } engines: { node: ">=14.16" } - dependencies: - type-fest: 3.13.1 dev: true /ansi-regex@5.0.1: @@ -1974,7 +1983,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.3 es-shim-unscopables: 1.0.2 dev: true @@ -1988,7 +1997,7 @@ packages: array-buffer-byte-length: 1.0.1 call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.3 es-errors: 1.3.0 get-intrinsic: 1.2.4 is-array-buffer: 3.0.4 @@ -2067,7 +2076,7 @@ packages: matcher: 5.0.0 memoize: 10.0.0 ms: 2.1.3 - p-map: 7.0.1 + p-map: 7.0.2 package-config: 5.0.0 picomatch: 3.0.1 plur: 5.1.0 @@ -2589,7 +2598,7 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.27)(cosmiconfig@8.3.6)(typescript@5.4.2): + /cosmiconfig-typescript-loader@5.0.0(@types/node@20.12.3)(cosmiconfig@9.0.0)(typescript@5.4.3): resolution: { integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, @@ -2600,16 +2609,16 @@ packages: cosmiconfig: ">=8.2" typescript: ">=4" dependencies: - "@types/node": 20.11.27 - cosmiconfig: 8.3.6(typescript@5.4.2) + "@types/node": 20.12.3 + cosmiconfig: 9.0.0(typescript@5.4.3) jiti: 1.21.0 - typescript: 5.4.2 + typescript: 5.4.3 dev: true - /cosmiconfig@8.3.6(typescript@5.4.2): + /cosmiconfig@9.0.0(typescript@5.4.3): resolution: { - integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, + integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==, } engines: { node: ">=14" } peerDependencies: @@ -2618,11 +2627,11 @@ packages: typescript: optional: true dependencies: + env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 - path-type: 4.0.0 - typescript: 5.4.2 + typescript: 5.4.3 dev: true /cross-spawn@5.1.0: @@ -2699,6 +2708,42 @@ packages: engines: { node: ">=12" } dev: true + /data-view-buffer@1.0.1: + resolution: + { + integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-length@1.0.1: + resolution: + { + integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-offset@1.0.0: + resolution: + { + integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + /date-time@3.1.0: resolution: { @@ -2806,10 +2851,10 @@ packages: engines: { node: ">=8" } dev: true - /detect-libc@2.0.2: + /detect-libc@2.0.3: resolution: { - integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==, + integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==, } engines: { node: ">=8" } dev: true @@ -2888,6 +2933,14 @@ packages: strip-ansi: 6.0.1 dev: true + /env-paths@2.2.1: + resolution: + { + integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==, + } + engines: { node: ">=6" } + dev: true + /error-ex@1.3.2: resolution: { @@ -2897,10 +2950,10 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract@1.22.5: + /es-abstract@1.23.3: resolution: { - integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==, + integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==, } engines: { node: ">= 0.4" } dependencies: @@ -2908,8 +2961,12 @@ packages: arraybuffer.prototype.slice: 1.0.3 available-typed-arrays: 1.0.7 call-bind: 1.0.7 + data-view-buffer: 1.0.1 + data-view-byte-length: 1.0.1 + data-view-byte-offset: 1.0.0 es-define-property: 1.0.0 es-errors: 1.3.0 + es-object-atoms: 1.0.0 es-set-tostringtag: 2.0.3 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 @@ -2924,6 +2981,7 @@ packages: internal-slot: 1.0.7 is-array-buffer: 3.0.4 is-callable: 1.2.7 + is-data-view: 1.0.1 is-negative-zero: 2.0.3 is-regex: 1.1.4 is-shared-array-buffer: 1.0.3 @@ -2936,13 +2994,13 @@ packages: regexp.prototype.flags: 1.5.2 safe-array-concat: 1.1.2 safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.8 - string.prototype.trimend: 1.0.7 - string.prototype.trimstart: 1.0.7 + string.prototype.trim: 1.2.9 + string.prototype.trimend: 1.0.8 + string.prototype.trimstart: 1.0.8 typed-array-buffer: 1.0.2 typed-array-byte-length: 1.0.1 typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.5 + typed-array-length: 1.0.6 unbox-primitive: 1.0.2 which-typed-array: 1.1.15 dev: true @@ -2965,6 +3023,16 @@ packages: engines: { node: ">= 0.4" } dev: true + /es-object-atoms@1.0.0: + resolution: + { + integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==, + } + engines: { node: ">= 0.4" } + dependencies: + es-errors: 1.3.0 + dev: true + /es-set-tostringtag@2.0.3: resolution: { @@ -3352,7 +3420,7 @@ packages: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.3 functions-have-names: 1.2.3 dev: true @@ -3866,6 +3934,16 @@ packages: hasown: 2.0.2 dev: true + /is-data-view@1.0.1: + resolution: + { + integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==, + } + engines: { node: ">= 0.4" } + dependencies: + is-typed-array: 1.1.13 + dev: true + /is-date-object@1.0.5: resolution: { @@ -4439,7 +4517,7 @@ packages: } engines: { node: ">=18" } dependencies: - ansi-escapes: 6.2.0 + ansi-escapes: 6.2.1 cli-cursor: 4.0.0 slice-ansi: 7.1.0 strip-ansi: 7.1.0 @@ -4545,7 +4623,7 @@ packages: } engines: { node: ">=18" } dependencies: - mimic-function: 5.0.0 + mimic-function: 5.0.1 dev: true /meow@12.1.1: @@ -4618,10 +4696,10 @@ packages: engines: { node: ">=12" } dev: true - /mimic-function@5.0.0: + /mimic-function@5.0.1: resolution: { - integrity: sha512-RBfQ+9X9DpXdEoK7Bu+KeEU6vFhumEIiXKWECPzRBmDserEq4uR2b/VCm0LwpMSosoq2k+Zuxj/GzOr0Fn6h/g==, + integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==, } engines: { node: ">=18" } dev: true @@ -5036,10 +5114,10 @@ packages: engines: { node: ">=6" } dev: true - /p-map@7.0.1: + /p-map@7.0.2: resolution: { - integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==, + integrity: sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==, } engines: { node: ">=18" } dev: true @@ -5090,7 +5168,7 @@ packages: } engines: { node: ">=8" } dependencies: - "@babel/code-frame": 7.23.5 + "@babel/code-frame": 7.24.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -5978,38 +6056,40 @@ packages: strip-ansi: 7.1.0 dev: true - /string.prototype.trim@1.2.8: + /string.prototype.trim@1.2.9: resolution: { - integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, + integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==, } engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 dev: true - /string.prototype.trimend@1.0.7: + /string.prototype.trimend@1.0.8: resolution: { - integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, + integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==, } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-object-atoms: 1.0.0 dev: true - /string.prototype.trimstart@1.0.7: + /string.prototype.trimstart@1.0.8: resolution: { - integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, + integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==, } + engines: { node: ">= 0.4" } dependencies: call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.5 + es-object-atoms: 1.0.0 dev: true /string_decoder@1.3.0: @@ -6169,6 +6249,21 @@ packages: yallist: 4.0.0 dev: true + /tar@6.2.1: + resolution: + { + integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==, + } + engines: { node: ">=10" } + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + dev: true + /temp-dir@3.0.0: resolution: { @@ -6316,14 +6411,6 @@ packages: engines: { node: ">=8" } dev: true - /type-fest@3.13.1: - resolution: - { - integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, - } - engines: { node: ">=14.16" } - dev: true - /typed-array-buffer@1.0.2: resolution: { @@ -6365,10 +6452,10 @@ packages: is-typed-array: 1.1.13 dev: true - /typed-array-length@1.0.5: + /typed-array-length@1.0.6: resolution: { - integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==, + integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==, } engines: { node: ">= 0.4" } dependencies: @@ -6389,6 +6476,15 @@ packages: hasBin: true dev: true + /typescript@5.4.3: + resolution: + { + integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==, + } + engines: { node: ">=14.17" } + hasBin: true + dev: true + /unbox-primitive@1.0.2: resolution: { From 1c8f7ab42223a573963904618dd8851d98ec071c Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 3 Apr 2024 16:01:15 -0600 Subject: [PATCH 134/295] chore: added changeset --- .changeset/sour-wasps-sparkle.md | 49 ++++++++++++++++++++++++++++++++ pnpm-lock.yaml | 45 ++++------------------------- 2 files changed, 55 insertions(+), 39 deletions(-) create mode 100644 .changeset/sour-wasps-sparkle.md diff --git a/.changeset/sour-wasps-sparkle.md b/.changeset/sour-wasps-sparkle.md new file mode 100644 index 00000000..5b93043b --- /dev/null +++ b/.changeset/sour-wasps-sparkle.md @@ -0,0 +1,49 @@ +--- +"@adobe/spectrum-tokens": major +--- + +Renamed previous drop shadow tokens from S1 and pointed them to the new `100` S2 drop shadow tokens +Added new drop shadow tokens, `100`, `200`, `emphasized-default`, `emphasized-hover`, `elevated`. + +## Design Motivation + +These tokens reflect the updates to drop tokens foundations in Spectrum 2, allowing more options and flexibility of usage in containers + +## Token Diff + +_Tokens added (24):_ + +- `drop-shadow-blur` +- `drop-shadow-blur-100` +- `drop-shadow-blur-200` +- `drop-shadow-color` +- `drop-shadow-color-100` +- `drop-shadow-color-200` +- `drop-shadow-elevated-blur` +- `drop-shadow-elevated-color` +- `drop-shadow-elevated-x` +- `drop-shadow-elevated-y` +- `drop-shadow-emphasized-default-blur` +- `drop-shadow-emphasized-default-color` +- `drop-shadow-emphasized-default-x` +- `drop-shadow-emphasized-default-y` +- `drop-shadow-emphasized-hover-blur` +- `drop-shadow-emphasized-hover-color` +- `drop-shadow-emphasized-hover-x` +- `drop-shadow-emphasized-hover-y` +- `drop-shadow-x` +- `drop-shadow-x-100` +- `drop-shadow-x-200` +- `drop-shadow-y` +- `drop-shadow-y-100` +- `drop-shadow-y-200` + +_Tokens deleted (2):_ + +- `drop-shadow-blur` +- `drop-shadow-y` + +_Token values updated (2):_ + +- `color-handle-drop-shadow-color` +- `drop-shadow-color` diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b18de423..fe0bfc19 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -118,13 +118,13 @@ importers: devDependencies: "@types/node": specifier: ^20.4.2 - version: 20.11.27 + version: 20.12.3 typescript: specifier: ^5.1.6 - version: 5.4.2 + version: 5.4.3 vite: specifier: ^4.4.4 - version: 4.4.4(@types/node@20.11.27) + version: 4.4.4(@types/node@20.12.3) packages/tokens: devDependencies: @@ -148,7 +148,7 @@ importers: version: 2.3.0 tar: specifier: ^6.2.0 - version: 6.2.0 + version: 6.2.1 tmp-promise: specifier: ^3.0.3 version: 3.0.3 @@ -1704,15 +1704,6 @@ packages: } dev: true - /@types/node@20.11.27: - resolution: - { - integrity: sha512-qyUZfMnCg1KEz57r7pzFtSGt49f6RPkPBis3Vo4PbS7roQEDn22hiHzl/Lo1q4i4hDEgBJmBF/NTNg2XR0HbFg==, - } - dependencies: - undici-types: 5.26.5 - dev: true - /@types/node@20.12.3: resolution: { @@ -6234,21 +6225,6 @@ packages: engines: { node: ">= 0.4" } dev: true - /tar@6.2.0: - resolution: - { - integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==, - } - engines: { node: ">=10" } - dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 5.0.0 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 - dev: true - /tar@6.2.1: resolution: { @@ -6467,15 +6443,6 @@ packages: possible-typed-array-names: 1.0.0 dev: true - /typescript@5.4.2: - resolution: - { - integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==, - } - engines: { node: ">=14.17" } - hasBin: true - dev: true - /typescript@5.4.3: resolution: { @@ -6571,7 +6538,7 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite@4.4.4(@types/node@20.11.27): + /vite@4.4.4(@types/node@20.12.3): resolution: { integrity: sha512-4mvsTxjkveWrKDJI70QmelfVqTm+ihFAb6+xf4sjEU2TmUCTlVX87tmg/QooPEMQb/lM9qGHT99ebqPziEd3wg==, @@ -6602,7 +6569,7 @@ packages: terser: optional: true dependencies: - "@types/node": 20.11.27 + "@types/node": 20.12.3 esbuild: 0.18.12 postcss: 8.4.26 rollup: 3.26.2 From df66026c9cdbc088552eb29dead01525cbafae16 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 3 Apr 2024 22:24:19 +0000 Subject: [PATCH 135/295] chore: release (beta) --- .changeset/pre.json | 2 + packages/tokens/CHANGELOG.md | 84 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 87 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index f47ec16f..260ed9be 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -14,6 +14,7 @@ "blue-parrots-hug", "brown-years-perform", "chatty-dolphins-build", + "chatty-turtles-sell", "clever-onions-compete", "dirty-keys-deny", "dirty-pets-attend", @@ -36,6 +37,7 @@ "smooth-turtles-retire", "soft-moles-walk", "sour-rabbits-own", + "sour-wasps-sparkle", "strange-rings-love", "sweet-pillows-protect", "tame-bobcats-beg", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 8255e89c..fa2aadb0 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,89 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.24 + +### Major Changes + +- 1c8f7ab: Renamed previous drop shadow tokens from S1 and pointed them to the new `100` S2 drop shadow tokens + Added new drop shadow tokens, `100`, `200`, `emphasized-default`, `emphasized-hover`, `elevated`. + + ## Design Motivation + + These tokens reflect the updates to drop tokens foundations in Spectrum 2, allowing more options and flexibility of usage in containers + + ## Token Diff + + _Tokens added (24):_ + + - `drop-shadow-blur` + - `drop-shadow-blur-100` + - `drop-shadow-blur-200` + - `drop-shadow-color` + - `drop-shadow-color-100` + - `drop-shadow-color-200` + - `drop-shadow-elevated-blur` + - `drop-shadow-elevated-color` + - `drop-shadow-elevated-x` + - `drop-shadow-elevated-y` + - `drop-shadow-emphasized-default-blur` + - `drop-shadow-emphasized-default-color` + - `drop-shadow-emphasized-default-x` + - `drop-shadow-emphasized-default-y` + - `drop-shadow-emphasized-hover-blur` + - `drop-shadow-emphasized-hover-color` + - `drop-shadow-emphasized-hover-x` + - `drop-shadow-emphasized-hover-y` + - `drop-shadow-x` + - `drop-shadow-x-100` + - `drop-shadow-x-200` + - `drop-shadow-y` + - `drop-shadow-y-100` + - `drop-shadow-y-200` + + _Tokens deleted (2):_ + + - `drop-shadow-blur` + - `drop-shadow-y` + + _Token values updated (2):_ + + - `color-handle-drop-shadow-color` + - `drop-shadow-color` + +### Minor Changes + +- 3230aba: Updated and added S2 drop shadow tokens + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + _Tokens added (7):_ + + - `field-default-width-extra-large` + - `field-default-width-large` + - `field-default-width-medium` + - `field-default-width-small` + - `tag-minimum-width-large` + - `tag-minimum-width-medium` + - `tag-minimum-width-small` + + _Token values updated (4):_ + + - `field-top-to-progress-circle-extra-large` + - `field-top-to-progress-circle-large` + - `field-top-to-progress-circle-medium` + - `field-top-to-progress-circle-small` + + _Newly Deprecated Tokens (4):_ + + - `field-width-extra-large` + - `field-width-large` + - `field-width-medium` + - `field-width-small` + ## 13.0.0-beta.23 ### Patch Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 9a1fcd0f..444a8f42 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.23", + "version": "13.0.0-beta.24", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From e559a922a29628d0dac29423e48d6ea1c776832d Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 11 Apr 2024 13:51:53 +0000 Subject: [PATCH 136/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 14 +- packages/tokens/src/layout-component.json | 259 +++++++++++++++------- packages/tokens/src/layout.json | 6 +- 3 files changed, 188 insertions(+), 91 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 768717df..39fbb453 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -106,15 +106,17 @@ }, "color-loupe-drop-shadow-y": { "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-elevated-y}", + "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b", + "deprecated": true }, "color-loupe-drop-shadow-blur": { "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-elevated-blur}", + "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d", + "deprecated": true }, "color-loupe-inner-border": { "component": "color-loupe", diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index f892ed6d..bfe2aebc 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2284,77 +2284,39 @@ "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2", - "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b" + "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", + "deprecated": true }, "combo-box-visual-to-field-button-small": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "4ccba158-da29-43a1-bbba-6531ecf98807" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" }, "combo-box-visual-to-field-button-medium": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fefb7088-21e0-4cdf-a8a4-af2a6dcc2a1a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" }, "combo-box-visual-to-field-button-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1a529788-8b87-4eef-aa07-a4ffb955761c" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" }, "combo-box-visual-to-field-button-extra-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "50ecd11d-6710-46e9-b1c6-923bb1d9f494" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" }, "combo-box-visual-to-field-button-quiet": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", + "deprecated": true }, "thumbnail-size-50": { "component": "thumbnail", @@ -2562,35 +2524,15 @@ }, "alert-dialog-title-size": { "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "3f362b57-09eb-4147-b366-5c1f04c9a29f" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{alert-dialog-title-font-size}", + "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197" }, "alert-dialog-description-size": { "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "43c5762a-d3a6-49db-9e5e-4a524604fecc" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{alert-dialog-description-font-size}", + "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599" }, "opacity-checkerboard-square-size": { "deprecated": true, @@ -6233,7 +6175,8 @@ "in-field-button-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43" + "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43", + "deprecated": true }, "in-field-button-stacked-inner-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", @@ -7550,5 +7493,155 @@ "uuid": "b2788159-dd2d-4f94-9282-d8cdbba41807" } } + }, + "in-field-button-edge-to-fill-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "0171b422-021a-4f25-bbe3-7d6ca6459166" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "a2143caf-07e6-4d45-977c-3d79d69c335e" + } + } + }, + "in-field-button-edge-to-fill-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "4b212f73-7a28-4d95-b06b-6d3f0d7e5cf9" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "61cf3878-48bd-4785-ad71-ec35c4f99656" + } + } + }, + "in-field-progress-circle-edge-to-fill": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "b49756fe-40d5-439a-ba07-4e5eb07e7cc5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "1263a125-9e9d-4eb4-8b71-024899dcf623" + } + } + }, + "in-field-progress-circle-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "dbb4f6bf-ddfb-4184-babe-63815cad7202" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "c43c89a6-2ae5-4d29-99ab-2c64e153d4e7" + } + } + }, + "in-field-progress-circle-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "ef5f40e8-d6e9-45a7-b8cf-1689e44e713c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "c522b33c-93b8-491f-b4df-c241f5b5ade8" + } + } + }, + "in-field-progress-circle-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "86567889-978e-4dfe-8412-42c8f33c3f44" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "28px", + "uuid": "85377238-7488-42e0-99ce-f4fd73316d24" + } + } + }, + "in-field-progress-circle-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "26px", + "uuid": "32d0a47d-c4bb-4955-aef0-28e07f429b92" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "9e740bd1-b98a-416a-be82-20e222cab3b1" + } + } + }, + "combo-box-visual-to-field-button": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" + }, + "in-field-button-edge-to-fill-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" + }, + "in-field-button-edge-to-fill-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" + }, + "alert-dialog-description-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-m}", + "uuid": "eda300de-5f0a-42e9-9880-9244a45d4e7d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "e969f730-9eea-4a35-8981-2804d660c23e" + } + } + }, + "alert-dialog-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xxl}", + "uuid": "749fa425-de12-464d-a1e2-80eb135d3ea6" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xl}", + "uuid": "c84328d2-578b-4a36-9065-6c6a9e1d311f" + } + } } } \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 66dfcf37..8fd719f1 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -63,12 +63,14 @@ "drop-shadow-y": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-y-100}", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" + "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962", + "deprecated": true }, "drop-shadow-blur": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-blur-100}", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" + "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429", + "deprecated": true }, "android-elevation": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", From c00906f5cf0bffeeb0910e2a0231d33126bf41db Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 11 Apr 2024 13:52:28 +0000 Subject: [PATCH 137/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 14 +- packages/tokens/src/layout-component.json | 352 ++++++++++++++-------- packages/tokens/src/layout.json | 6 +- 3 files changed, 242 insertions(+), 130 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 768717df..39fbb453 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -106,15 +106,17 @@ }, "color-loupe-drop-shadow-y": { "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-elevated-y}", + "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b", + "deprecated": true }, "color-loupe-drop-shadow-blur": { "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-elevated-blur}", + "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d", + "deprecated": true }, "color-loupe-inner-border": { "component": "color-loupe", diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index f892ed6d..58b1274f 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2284,77 +2284,39 @@ "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2", - "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b" + "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", + "deprecated": true }, "combo-box-visual-to-field-button-small": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "4ccba158-da29-43a1-bbba-6531ecf98807" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" }, "combo-box-visual-to-field-button-medium": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fefb7088-21e0-4cdf-a8a4-af2a6dcc2a1a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" }, "combo-box-visual-to-field-button-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1a529788-8b87-4eef-aa07-a4ffb955761c" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" }, "combo-box-visual-to-field-button-extra-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "50ecd11d-6710-46e9-b1c6-923bb1d9f494" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" }, "combo-box-visual-to-field-button-quiet": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", + "deprecated": true }, "thumbnail-size-50": { "component": "thumbnail", @@ -2562,35 +2524,15 @@ }, "alert-dialog-title-size": { "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "3f362b57-09eb-4147-b366-5c1f04c9a29f" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{alert-dialog-title-font-size}", + "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197" }, "alert-dialog-description-size": { "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "43c5762a-d3a6-49db-9e5e-4a524604fecc" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{alert-dialog-description-font-size}", + "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599" }, "opacity-checkerboard-square-size": { "deprecated": true, @@ -3653,51 +3595,21 @@ }, "coach-mark-title-size": { "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-xs}", - "uuid": "331604db-3f28-472e-810d-9010ed2c8e33" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-xxs}", - "uuid": "cd4848b6-d560-475a-9d80-f7b5acebce10" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{coach-mark-title-font-size}", + "uuid": "331604db-3f28-472e-810d-9010ed2c8e33" }, "coach-mark-body-size": { "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "eba9f466-deda-48d5-a120-14419d5a670f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "a0abef77-dafe-4158-9faa-a4b4b2871e54" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{coach-mark-body-font-size}", + "uuid": "eba9f466-deda-48d5-a120-14419d5a670f" }, "coach-mark-pagination-body-size": { "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "df8bc8ae-b6fa-4414-93b7-c89d8097fe11" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "350d9235-ff9e-43d7-9298-56b36d58d6de" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{coach-mark-pagination-body-font-size}", + "uuid": "df8bc8ae-b6fa-4414-93b7-c89d8097fe11" }, "accordion-top-to-text-compact-small": { "component": "accordion", @@ -6233,7 +6145,8 @@ "in-field-button-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43" + "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43", + "deprecated": true }, "in-field-button-stacked-inner-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", @@ -7550,5 +7463,200 @@ "uuid": "b2788159-dd2d-4f94-9282-d8cdbba41807" } } + }, + "in-field-button-edge-to-fill-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "0171b422-021a-4f25-bbe3-7d6ca6459166" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "a2143caf-07e6-4d45-977c-3d79d69c335e" + } + } + }, + "in-field-button-edge-to-fill-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "4b212f73-7a28-4d95-b06b-6d3f0d7e5cf9" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "61cf3878-48bd-4785-ad71-ec35c4f99656" + } + } + }, + "in-field-progress-circle-edge-to-fill": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "b49756fe-40d5-439a-ba07-4e5eb07e7cc5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "1263a125-9e9d-4eb4-8b71-024899dcf623" + } + } + }, + "in-field-progress-circle-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "dbb4f6bf-ddfb-4184-babe-63815cad7202" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "c43c89a6-2ae5-4d29-99ab-2c64e153d4e7" + } + } + }, + "in-field-progress-circle-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "ef5f40e8-d6e9-45a7-b8cf-1689e44e713c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "c522b33c-93b8-491f-b4df-c241f5b5ade8" + } + } + }, + "in-field-progress-circle-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "86567889-978e-4dfe-8412-42c8f33c3f44" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "28px", + "uuid": "85377238-7488-42e0-99ce-f4fd73316d24" + } + } + }, + "in-field-progress-circle-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "26px", + "uuid": "32d0a47d-c4bb-4955-aef0-28e07f429b92" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "9e740bd1-b98a-416a-be82-20e222cab3b1" + } + } + }, + "combo-box-visual-to-field-button": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" + }, + "in-field-button-edge-to-fill-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" + }, + "in-field-button-edge-to-fill-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" + }, + "alert-dialog-description-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-m}", + "uuid": "67af40c2-5774-4c4b-80d9-b237f756dea4" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "5a4777f3-6c1c-4cdc-94ba-40830c1297ff" + } + } + }, + "alert-dialog-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xxl}", + "uuid": "edca7a6f-7777-4d7e-a407-bddc972b0c93" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xl}", + "uuid": "2010a8cd-87dd-46eb-8350-1a920bc9e9dc" + } + } + }, + "coach-mark-body-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-m}", + "uuid": "4b88a0d5-2d07-4e63-afa6-cdd611f0a8c1" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "73959c3d-afc2-4f6e-bd34-0399bf3b5b73" + } + } + }, + "coach-mark-pagination-body-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "06ae2458-8490-4741-8a02-97f60cc01592" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-xs}", + "uuid": "4f8c99a5-0942-41b0-ac41-923ea9ca2bf2" + } + } + }, + "coach-mark-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-m}", + "uuid": "5b132698-4ee2-40e4-83c0-9ad80f36f5fd" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-s}", + "uuid": "45855bc5-3b86-49a9-b443-7be9aa763c4e" + } + } } } \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 66dfcf37..8fd719f1 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -63,12 +63,14 @@ "drop-shadow-y": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-y-100}", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" + "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962", + "deprecated": true }, "drop-shadow-blur": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-blur-100}", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" + "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429", + "deprecated": true }, "android-elevation": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", From c264fe3ee04bf0c2a5b28f535e51882b66bcbb3b Mon Sep 17 00:00:00 2001 From: GarthDB Date: Thu, 4 Apr 2024 15:51:38 +0000 Subject: [PATCH 138/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 197 +++++++++++++++------- packages/tokens/src/layout.json | 6 +- 2 files changed, 144 insertions(+), 59 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index f892ed6d..eeb1486a 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2284,77 +2284,39 @@ "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2", - "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b" + "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", + "deprecated": true }, "combo-box-visual-to-field-button-small": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "4ccba158-da29-43a1-bbba-6531ecf98807" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" }, "combo-box-visual-to-field-button-medium": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fefb7088-21e0-4cdf-a8a4-af2a6dcc2a1a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" }, "combo-box-visual-to-field-button-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1a529788-8b87-4eef-aa07-a4ffb955761c" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" }, "combo-box-visual-to-field-button-extra-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "50ecd11d-6710-46e9-b1c6-923bb1d9f494" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" }, "combo-box-visual-to-field-button-quiet": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", + "deprecated": true }, "thumbnail-size-50": { "component": "thumbnail", @@ -6233,7 +6195,8 @@ "in-field-button-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43" + "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43", + "deprecated": true }, "in-field-button-stacked-inner-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", @@ -7550,5 +7513,125 @@ "uuid": "b2788159-dd2d-4f94-9282-d8cdbba41807" } } + }, + "combo-box-visual-to-field-button": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" + }, + "in-field-button-edge-to-fill-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "0171b422-021a-4f25-bbe3-7d6ca6459166" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "a2143caf-07e6-4d45-977c-3d79d69c335e" + } + } + }, + "in-field-button-edge-to-fill-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" + }, + "in-field-button-edge-to-fill-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" + }, + "in-field-button-edge-to-fill-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "4b212f73-7a28-4d95-b06b-6d3f0d7e5cf9" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "61cf3878-48bd-4785-ad71-ec35c4f99656" + } + } + }, + "in-field-progress-circle-edge-to-fill": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "b49756fe-40d5-439a-ba07-4e5eb07e7cc5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "1263a125-9e9d-4eb4-8b71-024899dcf623" + } + } + }, + "in-field-progress-circle-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "dbb4f6bf-ddfb-4184-babe-63815cad7202" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "c43c89a6-2ae5-4d29-99ab-2c64e153d4e7" + } + } + }, + "in-field-progress-circle-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "ef5f40e8-d6e9-45a7-b8cf-1689e44e713c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "c522b33c-93b8-491f-b4df-c241f5b5ade8" + } + } + }, + "in-field-progress-circle-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "86567889-978e-4dfe-8412-42c8f33c3f44" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "28px", + "uuid": "85377238-7488-42e0-99ce-f4fd73316d24" + } + } + }, + "in-field-progress-circle-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "26px", + "uuid": "32d0a47d-c4bb-4955-aef0-28e07f429b92" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "9e740bd1-b98a-416a-be82-20e222cab3b1" + } + } } } \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 66dfcf37..8fd719f1 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -63,12 +63,14 @@ "drop-shadow-y": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-y-100}", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" + "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962", + "deprecated": true }, "drop-shadow-blur": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-blur-100}", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" + "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429", + "deprecated": true }, "android-elevation": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", From 413f6e756e5f90b1ffbeced2847de94660ac813a Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 09:04:40 -0600 Subject: [PATCH 139/295] fix: updated deprecated tokens --- packages/tokens/src/layout-component.json | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index eeb1486a..308d0194 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2291,32 +2291,41 @@ "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" + "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-medium": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" + "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-large": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" + "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-extra-large": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" + "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-quiet": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "thumbnail-size-50": { "component": "thumbnail", @@ -7634,4 +7643,4 @@ } } } -} \ No newline at end of file +} From 011acc6796d3de85c5983c80795257d92d1a6bc3 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 09:05:02 -0600 Subject: [PATCH 140/295] chore: added changeset --- .changeset/five-steaks-argue.md | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .changeset/five-steaks-argue.md diff --git a/.changeset/five-steaks-argue.md b/.changeset/five-steaks-argue.md new file mode 100644 index 00000000..12c17033 --- /dev/null +++ b/.changeset/five-steaks-argue.md @@ -0,0 +1,38 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 Combo box, In-field button and In-field progress circle updates + +## Motivation and context + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Tokens added (15):_ + +- `combo-box-visual-to-field-button` +- `combo-box-visual-to-field-button-extra-large` +- `combo-box-visual-to-field-button-large` +- `combo-box-visual-to-field-button-medium` +- `combo-box-visual-to-field-button-quiet` +- `combo-box-visual-to-field-button-small` +- `in-field-button-edge-to-fill-extra-large` +- `in-field-button-edge-to-fill-large` +- `in-field-button-edge-to-fill-medium` +- `in-field-button-edge-to-fill-small` +- `in-field-progress-circle-edge-to-fill` +- `in-field-progress-circle-size-100` +- `in-field-progress-circle-size-200` +- `in-field-progress-circle-size-300` +- `in-field-progress-circle-size-75` + +_Newly deprecated tokens (6):_ + +- `combo-box-quiet-minimum-width-multiplier` +- `combo-box-visual-to-field-button-small` +- `combo-box-visual-to-field-button-medium` +- `combo-box-visual-to-field-button-large` +- `combo-box-visual-to-field-button-extra-large` +- `in-field-button-edge-to-fill` From b612b62d5a590847c11976c7df02fd28cc24f97b Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 10 Apr 2024 17:18:20 +0000 Subject: [PATCH 141/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 14 +- packages/tokens/src/layout-component.json | 199 +++++++++++++++------- packages/tokens/src/layout.json | 6 +- 3 files changed, 153 insertions(+), 66 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 768717df..39fbb453 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -106,15 +106,17 @@ }, "color-loupe-drop-shadow-y": { "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-elevated-y}", + "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b", + "deprecated": true }, "color-loupe-drop-shadow-blur": { "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-elevated-blur}", + "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d", + "deprecated": true }, "color-loupe-inner-border": { "component": "color-loupe", diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index f892ed6d..96457895 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2284,77 +2284,39 @@ "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "2", - "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b" + "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", + "deprecated": true }, "combo-box-visual-to-field-button-small": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "4ccba158-da29-43a1-bbba-6531ecf98807" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" }, "combo-box-visual-to-field-button-medium": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fefb7088-21e0-4cdf-a8a4-af2a6dcc2a1a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" }, "combo-box-visual-to-field-button-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1a529788-8b87-4eef-aa07-a4ffb955761c" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" }, "combo-box-visual-to-field-button-extra-large": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "50ecd11d-6710-46e9-b1c6-923bb1d9f494" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" }, "combo-box-visual-to-field-button-quiet": { "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{combo-box-visual-to-field-button}", + "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", + "deprecated": true }, "thumbnail-size-50": { "component": "thumbnail", @@ -6233,7 +6195,8 @@ "in-field-button-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43" + "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43", + "deprecated": true }, "in-field-button-stacked-inner-edge-to-fill": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", @@ -7550,5 +7513,125 @@ "uuid": "b2788159-dd2d-4f94-9282-d8cdbba41807" } } + }, + "combo-box-visual-to-field-button": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" + }, + "in-field-button-edge-to-fill-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "0171b422-021a-4f25-bbe3-7d6ca6459166" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "a2143caf-07e6-4d45-977c-3d79d69c335e" + } + } + }, + "in-field-button-edge-to-fill-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" + }, + "in-field-button-edge-to-fill-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" + }, + "in-field-button-edge-to-fill-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "4b212f73-7a28-4d95-b06b-6d3f0d7e5cf9" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "61cf3878-48bd-4785-ad71-ec35c4f99656" + } + } + }, + "in-field-progress-circle-edge-to-fill": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "b49756fe-40d5-439a-ba07-4e5eb07e7cc5" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "1263a125-9e9d-4eb4-8b71-024899dcf623" + } + } + }, + "in-field-progress-circle-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "dbb4f6bf-ddfb-4184-babe-63815cad7202" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "c43c89a6-2ae5-4d29-99ab-2c64e153d4e7" + } + } + }, + "in-field-progress-circle-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "ef5f40e8-d6e9-45a7-b8cf-1689e44e713c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "c522b33c-93b8-491f-b4df-c241f5b5ade8" + } + } + }, + "in-field-progress-circle-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "86567889-978e-4dfe-8412-42c8f33c3f44" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "28px", + "uuid": "85377238-7488-42e0-99ce-f4fd73316d24" + } + } + }, + "in-field-progress-circle-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "26px", + "uuid": "32d0a47d-c4bb-4955-aef0-28e07f429b92" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "9e740bd1-b98a-416a-be82-20e222cab3b1" + } + } } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 66dfcf37..8fd719f1 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -63,12 +63,14 @@ "drop-shadow-y": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-y-100}", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962" + "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962", + "deprecated": true }, "drop-shadow-blur": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-blur-100}", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429" + "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429", + "deprecated": true }, "android-elevation": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", From 6f88880b66ab15640790f6c0d4a3a26d6e887612 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 09:04:40 -0600 Subject: [PATCH 142/295] fix: updated deprecated tokens --- packages/tokens/src/layout-component.json | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 96457895..308d0194 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2291,32 +2291,41 @@ "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8" + "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-medium": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36" + "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-large": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb" + "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-extra-large": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc" + "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc", + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "combo-box-visual-to-field-button-quiet": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{combo-box-visual-to-field-button}", "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with combo-box-visual-to-field-button" }, "thumbnail-size-50": { "component": "thumbnail", From e79ddd6d5d517cdc1bf367ed6ab4307ec9856288 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 09:05:02 -0600 Subject: [PATCH 143/295] chore: added changeset --- .changeset/five-steaks-argue.md | 38 +++++++++++++++++++++++++++++++++ .changeset/red-snails-roll.md | 16 ++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 .changeset/five-steaks-argue.md create mode 100644 .changeset/red-snails-roll.md diff --git a/.changeset/five-steaks-argue.md b/.changeset/five-steaks-argue.md new file mode 100644 index 00000000..12c17033 --- /dev/null +++ b/.changeset/five-steaks-argue.md @@ -0,0 +1,38 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 Combo box, In-field button and In-field progress circle updates + +## Motivation and context + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Tokens added (15):_ + +- `combo-box-visual-to-field-button` +- `combo-box-visual-to-field-button-extra-large` +- `combo-box-visual-to-field-button-large` +- `combo-box-visual-to-field-button-medium` +- `combo-box-visual-to-field-button-quiet` +- `combo-box-visual-to-field-button-small` +- `in-field-button-edge-to-fill-extra-large` +- `in-field-button-edge-to-fill-large` +- `in-field-button-edge-to-fill-medium` +- `in-field-button-edge-to-fill-small` +- `in-field-progress-circle-edge-to-fill` +- `in-field-progress-circle-size-100` +- `in-field-progress-circle-size-200` +- `in-field-progress-circle-size-300` +- `in-field-progress-circle-size-75` + +_Newly deprecated tokens (6):_ + +- `combo-box-quiet-minimum-width-multiplier` +- `combo-box-visual-to-field-button-small` +- `combo-box-visual-to-field-button-medium` +- `combo-box-visual-to-field-button-large` +- `combo-box-visual-to-field-button-extra-large` +- `in-field-button-edge-to-fill` diff --git a/.changeset/red-snails-roll.md b/.changeset/red-snails-roll.md new file mode 100644 index 00000000..6f99f85b --- /dev/null +++ b/.changeset/red-snails-roll.md @@ -0,0 +1,16 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 Color loupe tokens update + +## Design Motivation + +These changes occurred as a result of scaling things for S2 design language and experiences. + +## Token Diff + +_Tokens added (2):_ + +- `color-loupe-drop-shadow-blur` +- `color-loupe-drop-shadow-y` From 2e9a0821135bd4a55920d1411ac2c49e80c7c347 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 11 Apr 2024 17:56:19 +0000 Subject: [PATCH 144/295] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/tokens/CHANGELOG.md | 52 ++++++++++++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 55 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 260ed9be..b076aadb 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -19,6 +19,7 @@ "dirty-keys-deny", "dirty-pets-attend", "empty-steaks-dress", + "five-steaks-argue", "forty-lizards-thank", "fuzzy-cherries-buy", "gentle-months-carry", @@ -30,6 +31,7 @@ "neat-balloons-rhyme", "olive-schools-warn", "real-seals-camp", + "red-snails-roll", "silly-radios-float", "six-phones-rescue", "slimy-emus-enjoy", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index fa2aadb0..1eb78368 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,57 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.25 + +### Minor Changes + +- e79ddd6: S2 Combo box, In-field button and In-field progress circle updates + + ## Motivation and context + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + _Tokens added (15):_ + + - `combo-box-visual-to-field-button` + - `combo-box-visual-to-field-button-extra-large` + - `combo-box-visual-to-field-button-large` + - `combo-box-visual-to-field-button-medium` + - `combo-box-visual-to-field-button-quiet` + - `combo-box-visual-to-field-button-small` + - `in-field-button-edge-to-fill-extra-large` + - `in-field-button-edge-to-fill-large` + - `in-field-button-edge-to-fill-medium` + - `in-field-button-edge-to-fill-small` + - `in-field-progress-circle-edge-to-fill` + - `in-field-progress-circle-size-100` + - `in-field-progress-circle-size-200` + - `in-field-progress-circle-size-300` + - `in-field-progress-circle-size-75` + + _Newly deprecated tokens (6):_ + + - `combo-box-quiet-minimum-width-multiplier` + - `combo-box-visual-to-field-button-small` + - `combo-box-visual-to-field-button-medium` + - `combo-box-visual-to-field-button-large` + - `combo-box-visual-to-field-button-extra-large` + - `in-field-button-edge-to-fill` + +- e79ddd6: S2 Color loupe tokens update + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + _Newly deprecated tokens (2):_ + + - `color-loupe-drop-shadow-blur` + - `color-loupe-drop-shadow-y` + ## 13.0.0-beta.24 ### Major Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 444a8f42..31917856 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.24", + "version": "13.0.0-beta.25", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 5af622f021299a18fab665f25d550bad7b543c09 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 12:15:04 -0600 Subject: [PATCH 145/295] fix: updated deprecated messages --- packages/tokens/src/layout-component.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index acb5baf5..630c997a 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2535,13 +2535,17 @@ "component": "alert-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{alert-dialog-title-font-size}", - "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197" + "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197", + "deprecated": true, + "deprecated_comment": "Replace with alert-dialog-title-font-size" }, "alert-dialog-description-size": { "component": "alert-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{alert-dialog-description-font-size}", - "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599" + "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599", + "deprecated": true, + "deprecated_comment": "Replace with alert-dialog-description-font-size" }, "opacity-checkerboard-square-size": { "deprecated": true, From b59fa8f418be7b4cc9bda4af556280197d773c3e Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 12:17:05 -0600 Subject: [PATCH 146/295] chore: added changeset --- .changeset/dull-eyes-grab.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .changeset/dull-eyes-grab.md diff --git a/.changeset/dull-eyes-grab.md b/.changeset/dull-eyes-grab.md new file mode 100644 index 00000000..4e06c306 --- /dev/null +++ b/.changeset/dull-eyes-grab.md @@ -0,0 +1,19 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated alert dialog tokens + +## Token Diff + +_Tokens added (4):_ + +- `alert-dialog-description-font-size` +- `alert-dialog-description-size` +- `alert-dialog-title-font-size` +- `alert-dialog-title-size` + +_Newly deprecated tokens (2):_ + +- `alert-dialog-description-size` +- `alert-dialog-title-size` From 33673a6dae7b67d59892a5b3d822d4fc0e1f6c03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 11 Apr 2024 18:19:46 +0000 Subject: [PATCH 147/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 20 ++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index b076aadb..1d074f42 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -18,6 +18,7 @@ "clever-onions-compete", "dirty-keys-deny", "dirty-pets-attend", + "dull-eyes-grab", "empty-steaks-dress", "five-steaks-argue", "forty-lizards-thank", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 1eb78368..baafb8bb 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,25 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.26 + +### Minor Changes + +- b59fa8f: Updated alert dialog tokens + + ## Token Diff + + _Tokens added (4):_ + + - `alert-dialog-description-font-size` + - `alert-dialog-description-size` + - `alert-dialog-title-font-size` + - `alert-dialog-title-size` + + _Newly deprecated tokens (2):_ + + - `alert-dialog-description-size` + - `alert-dialog-title-size` + ## 13.0.0-beta.25 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 31917856..5c779462 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.25", + "version": "13.0.0-beta.26", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From ed434468c3c41173f9d5f9cb0c66a7e53426129d Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 13:11:40 -0600 Subject: [PATCH 148/295] fix: update deprecated tokens --- packages/tokens/src/layout-component.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index d96e4939..3af877d9 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3610,19 +3610,25 @@ "component": "coach-mark", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{coach-mark-title-font-size}", - "uuid": "331604db-3f28-472e-810d-9010ed2c8e33" + "uuid": "331604db-3f28-472e-810d-9010ed2c8e33", + "deprecated": true, + "deprecated_comment": "Replace with coach-mark-title-font-size" }, "coach-mark-body-size": { "component": "coach-mark", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{coach-mark-body-font-size}", - "uuid": "eba9f466-deda-48d5-a120-14419d5a670f" + "uuid": "eba9f466-deda-48d5-a120-14419d5a670f", + "deprecated": true, + "deprecated_comment": "Replace with coach-mark-body-font-size" }, "coach-mark-pagination-body-size": { "component": "coach-mark", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{coach-mark-pagination-body-font-size}", - "uuid": "df8bc8ae-b6fa-4414-93b7-c89d8097fe11" + "uuid": "df8bc8ae-b6fa-4414-93b7-c89d8097fe11", + "deprecated": true, + "deprecated_comment": "Replace with coach-mark-pagination-body-font-size" }, "accordion-top-to-text-compact-small": { "component": "accordion", From 3236495eb669169de26d8245514164cc97037f80 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 11 Apr 2024 13:11:56 -0600 Subject: [PATCH 149/295] chore: added changeset --- .changeset/rotten-rice-end.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .changeset/rotten-rice-end.md diff --git a/.changeset/rotten-rice-end.md b/.changeset/rotten-rice-end.md new file mode 100644 index 00000000..8f149204 --- /dev/null +++ b/.changeset/rotten-rice-end.md @@ -0,0 +1,19 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated coach mark tokens for both desktop and mobile + +## Token Diff + +_Tokens added (6):_ + +- `coach-mark-body-font-size` +- `coach-mark-pagination-body-font-size` +- `coach-mark-title-font-size` + +_Newly deprecated tokens (3):_ + +- `coach-mark-body-size` +- `coach-mark-pagination-body-size` +- `coach-mark-title-size` From eaaf4909e3cf35103de3b30516c477d99e555952 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 11 Apr 2024 19:15:08 +0000 Subject: [PATCH 150/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 20 ++++++++++++++++++++ packages/tokens/package.json | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 1d074f42..cca57ebd 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -33,6 +33,7 @@ "olive-schools-warn", "real-seals-camp", "red-snails-roll", + "rotten-rice-end", "silly-radios-float", "six-phones-rescue", "slimy-emus-enjoy", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index baafb8bb..114a72ae 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,25 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.27 + +### Minor Changes + +- 3236495: Updated coach mark tokens for both desktop and mobile + + ## Token Diff + + _Tokens added (6):_ + + - `coach-mark-body-font-size` + - `coach-mark-pagination-body-font-size` + - `coach-mark-title-font-size` + + _Newly deprecated tokens (3):_ + + - `coach-mark-body-size` + - `coach-mark-pagination-body-size` + - `coach-mark-title-size` + ## 13.0.0-beta.26 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 5c779462..1522a8f3 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.26", + "version": "13.0.0-beta.27", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "tasks/buildSpectrumTokens.js", From 115033194c66259d79b82592f122ca77e6e90a12 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Sat, 13 Apr 2024 22:53:40 -0600 Subject: [PATCH 151/295] fix: removed duplicate tokens, added test to catch it next time --- .changeset/lazy-bears-remember.md | 5 + packages/tokens/index.js | 52 ++++++++ packages/tokens/package.json | 3 +- packages/tokens/src/layout-component.json | 15 --- packages/tokens/test/checkUniqueTokenNames.js | 32 +++++ pnpm-lock.yaml | 123 ++++++++++++++++++ 6 files changed, 214 insertions(+), 16 deletions(-) create mode 100644 .changeset/lazy-bears-remember.md create mode 100644 packages/tokens/index.js create mode 100644 packages/tokens/test/checkUniqueTokenNames.js diff --git a/.changeset/lazy-bears-remember.md b/.changeset/lazy-bears-remember.md new file mode 100644 index 00000000..78a3b5b8 --- /dev/null +++ b/.changeset/lazy-bears-remember.md @@ -0,0 +1,5 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +Removed duplicate tokens from src files. diff --git a/packages/tokens/index.js b/packages/tokens/index.js new file mode 100644 index 00000000..f3d273e6 --- /dev/null +++ b/packages/tokens/index.js @@ -0,0 +1,52 @@ +/* +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. +*/ + +import { glob } from "glob"; + +import { resolve } from "path"; +import { readFile } from "fs/promises"; +import * as url from "url"; +import { writeFile } from "fs/promises"; +import { format } from "prettier"; + +export const __dirname = url.fileURLToPath(new URL(".", import.meta.url)); + +export const tokenFileNames = await glob( + `${resolve(__dirname, "./src")}/**/*.json`, +); + +export const readJson = async (fileName) => + JSON.parse(await readFile(fileName, "utf8")); + +export const writeJson = async (fileName, jsonData) => { + await writeFile( + fileName, + await format(JSON.stringify(jsonData), { parser: "json-stringify" }), + ); +}; + +export const getFileTokens = async (tokenFileName) => + await readJson(resolve(__dirname, "src", tokenFileName)); + +export const getAllTokens = async () => { + return await Promise.all(tokenFileNames.map(getFileTokens)).then( + (tokenFileDataAr) => { + return tokenFileDataAr.reduce( + (tokenDataAcc, tokenFileData) => ({ + ...tokenDataAcc, + ...tokenFileData, + }), + {}, + ); + }, + ); +}; diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 1522a8f3..dc538891 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -3,7 +3,7 @@ "version": "13.0.0-beta.27", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", - "main": "tasks/buildSpectrumTokens.js", + "main": "index.js", "tokens": "dist/json/variables.json", "scripts": {}, "repository": { @@ -26,6 +26,7 @@ "ajv": "^8.12.0", "ajv-formats": "^2.1.1", "deep-object-diff": "^1.1.9", + "find-duplicated-property-keys": "^1.2.9", "glob": "^10.3.10", "style-dictionary": "^3.9.2", "style-dictionary-sets": "^2.3.0", diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 3af877d9..187b38fa 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -7603,21 +7603,6 @@ } } }, - "combo-box-visual-to-field-button": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" - }, - "in-field-button-edge-to-fill-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" - }, - "in-field-button-edge-to-fill-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" - }, "alert-dialog-description-font-size": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { diff --git a/packages/tokens/test/checkUniqueTokenNames.js b/packages/tokens/test/checkUniqueTokenNames.js new file mode 100644 index 00000000..5dbede7f --- /dev/null +++ b/packages/tokens/test/checkUniqueTokenNames.js @@ -0,0 +1,32 @@ +/* +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. +*/ + +import test from "ava"; +import { readFile } from "fs/promises"; +import { tokenFileNames } from "../index.js"; +import findDuplicatedPropertyKeys from "find-duplicated-property-keys"; + +test("check for duplicate token names across all token files", async (t) => { + const result = await Promise.all( + tokenFileNames.map(async (tokenFileName) => { + const tokenDataString = await readFile(tokenFileName, "utf8"); + return tokenDataString.substring( + tokenDataString.indexOf("{") + 1, + tokenDataString.lastIndexOf("}"), + ); + }), + ).then((tokenDataArray) => { + return findDuplicatedPropertyKeys(`{${tokenDataArray.join(",")}}`); + }); + // t.pass(); + t.deepEqual(result, []); +}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fe0bfc19..e423a732 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -137,6 +137,9 @@ importers: deep-object-diff: specifier: ^1.1.9 version: 1.1.9 + find-duplicated-property-keys: + specifier: ^1.2.9 + version: 1.2.9 glob: specifier: ^10.3.10 version: 10.3.10 @@ -1931,6 +1934,22 @@ packages: } dev: true + /array-back@3.1.0: + resolution: + { + integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==, + } + engines: { node: ">=6" } + dev: true + + /array-back@4.0.2: + resolution: + { + integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==, + } + engines: { node: ">=8" } + dev: true + /array-buffer-byte-length@1.0.1: resolution: { @@ -2472,6 +2491,32 @@ packages: } dev: true + /command-line-args@5.2.1: + resolution: + { + integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==, + } + engines: { node: ">=4.0.0" } + dependencies: + array-back: 3.1.0 + find-replace: 3.0.0 + lodash.camelcase: 4.3.0 + typical: 4.0.0 + dev: true + + /command-line-usage@6.1.3: + resolution: + { + integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==, + } + engines: { node: ">=8.0.0" } + dependencies: + array-back: 4.0.2 + chalk: 2.4.2 + table-layout: 1.0.2 + typical: 5.2.0 + dev: true + /commander@11.1.0: resolution: { @@ -2779,6 +2824,14 @@ packages: engines: { node: ">=0.10.0" } dev: true + /deep-extend@0.6.0: + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, + } + engines: { node: ">=4.0.0" } + dev: true + /deep-object-diff@1.1.9: resolution: { @@ -3253,6 +3306,28 @@ packages: to-regex-range: 5.0.1 dev: true + /find-duplicated-property-keys@1.2.9: + resolution: + { + integrity: sha512-sQbiPRRTGL1L9YJIIyp02Ld+2VY03tOfoI5hykUDUFgeAgIVXTajSRjO9JbERN39bei7juNJBY9qknGpupwkAw==, + } + hasBin: true + dependencies: + chalk: 4.1.2 + command-line-args: 5.2.1 + command-line-usage: 6.1.3 + dev: true + + /find-replace@3.0.0: + resolution: + { + integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==, + } + engines: { node: ">=4.0.0" } + dependencies: + array-back: 3.1.0 + dev: true + /find-up-simple@1.0.0: resolution: { @@ -5509,6 +5584,14 @@ packages: strip-indent: 3.0.0 dev: true + /reduce-flatten@2.0.0: + resolution: + { + integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==, + } + engines: { node: ">=6" } + dev: true + /regenerator-runtime@0.14.1: resolution: { @@ -6225,6 +6308,19 @@ packages: engines: { node: ">= 0.4" } dev: true + /table-layout@1.0.2: + resolution: + { + integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==, + } + engines: { node: ">=8.0.0" } + dependencies: + array-back: 4.0.2 + deep-extend: 0.6.0 + typical: 5.2.0 + wordwrapjs: 4.0.1 + dev: true + /tar@6.2.1: resolution: { @@ -6452,6 +6548,22 @@ packages: hasBin: true dev: true + /typical@4.0.0: + resolution: + { + integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==, + } + engines: { node: ">=8" } + dev: true + + /typical@5.2.0: + resolution: + { + integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==, + } + engines: { node: ">=8" } + dev: true + /unbox-primitive@1.0.2: resolution: { @@ -6696,6 +6808,17 @@ packages: string-width: 4.2.3 dev: true + /wordwrapjs@4.0.1: + resolution: + { + integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==, + } + engines: { node: ">=8.0.0" } + dependencies: + reduce-flatten: 2.0.0 + typical: 5.2.0 + dev: true + /wrap-ansi@6.2.0: resolution: { From f84b9f135bcd38fc72d1000ee6111013842e00a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 14 Apr 2024 05:11:02 +0000 Subject: [PATCH 152/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 6 ++++++ packages/tokens/package.json | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index cca57ebd..f1971b5b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -28,6 +28,7 @@ "good-baboons-doubt", "good-peas-mix", "happy-students-vanish", + "lazy-bears-remember", "lemon-dragons-raise", "neat-balloons-rhyme", "olive-schools-warn", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 114a72ae..ea439beb 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,11 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.28 + +### Patch Changes + +- 1150331: Removed duplicate tokens from src files. + ## 13.0.0-beta.27 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index dc538891..1ae399ec 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.27", + "version": "13.0.0-beta.28", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", From 384786bde5b3f53820fac55953cf7ddb4b9b4cde Mon Sep 17 00:00:00 2001 From: mrcjhicks Date: Tue, 16 Apr 2024 19:56:51 +0000 Subject: [PATCH 153/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 5 +++-- packages/tokens/src/color-component.json | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 35350561..662d1e49 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -42,7 +42,8 @@ "drop-shadow-color": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-color-100}", - "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb" + "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb", + "deprecated": true }, "opacity-disabled": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", @@ -1714,4 +1715,4 @@ "value": "{drop-shadow-color-200}", "uuid": "e475981f-97af-479c-859b-7619dd87c448" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index e5c8bfde..b28a1378 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -101,8 +101,9 @@ "color-loupe-drop-shadow-color": { "component": "color-loupe", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-300}", - "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + "value": "{drop-shadow-elevated-color}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9", + "deprecated": true }, "color-loupe-drop-shadow-y": { "component": "color-loupe", From 664ab0bba68b9f4752599ed73c98b5d339414478 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 17 Apr 2024 13:43:03 -0600 Subject: [PATCH 154/295] fix: cleanup deprecated tokens, added changeset --- .changeset/kind-geese-hope.md | 12 ++++++++++++ packages/tokens/src/color-aliases.json | 5 +++-- packages/tokens/src/color-component.json | 3 ++- 3 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 .changeset/kind-geese-hope.md diff --git a/.changeset/kind-geese-hope.md b/.changeset/kind-geese-hope.md new file mode 100644 index 00000000..3ee56559 --- /dev/null +++ b/.changeset/kind-geese-hope.md @@ -0,0 +1,12 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 Color loupe tokens update (color-only) + +## Token Diff + +_Newly deprecated tokens (2):_ + +- `color-loupe-drop-shadow-color` +- `drop-shadow-color` diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 662d1e49..08e93c93 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -43,7 +43,8 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-color-100}", "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Replaced with drop-shadow-color-100" }, "opacity-disabled": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", @@ -1715,4 +1716,4 @@ "value": "{drop-shadow-color-200}", "uuid": "e475981f-97af-479c-859b-7619dd87c448" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index b28a1378..ad80b000 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -103,7 +103,8 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-elevated-color}", "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use `drop-shadow-elevated-color` instead" }, "color-loupe-drop-shadow-y": { "component": "color-loupe", From 776c4785745f1cc52f33b6c6717d031400ed7c79 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 17 Apr 2024 13:57:24 -0600 Subject: [PATCH 155/295] chore: added @changesets/changelog-github --- package.json | 5 ++++- pnpm-lock.yaml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6bbc1e79..d11eea34 100644 --- a/package.json +++ b/package.json @@ -36,5 +36,8 @@ "engines": { "node": "~20.12" }, - "packageManager": "pnpm@9.0.2" + "packageManager": "pnpm@9.0.2", + "dependencies": { + "@changesets/changelog-github": "^0.5.0" + } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 511df1f6..7f5fe6d9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,6 +6,10 @@ settings: importers: .: + dependencies: + "@changesets/changelog-github": + specifier: ^0.5.0 + version: 0.5.0 devDependencies: "@action-validator/core": specifier: ^0.6.0 @@ -235,6 +239,12 @@ packages: integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==, } + "@changesets/changelog-github@0.5.0": + resolution: + { + integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==, + } + "@changesets/cli@2.27.1": resolution: { @@ -260,6 +270,12 @@ packages: integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==, } + "@changesets/get-github-info@0.6.0": + resolution: + { + integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==, + } + "@changesets/get-release-plan@4.0.0": resolution: { @@ -2072,6 +2088,12 @@ packages: } engines: { node: ">= 0.4" } + dataloader@1.4.0: + resolution: + { + integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==, + } + date-time@3.1.0: resolution: { @@ -2185,6 +2207,13 @@ packages: } engines: { node: ">=8" } + dotenv@8.6.0: + resolution: + { + integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==, + } + engines: { node: ">=10" } + eastasianwidth@0.2.0: resolution: { @@ -5127,6 +5156,14 @@ snapshots: dependencies: "@changesets/types": 6.0.0 + "@changesets/changelog-github@0.5.0": + dependencies: + "@changesets/get-github-info": 0.6.0 + "@changesets/types": 6.0.0 + dotenv: 8.6.0 + transitivePeerDependencies: + - encoding + "@changesets/cli@2.27.1": dependencies: "@babel/runtime": 7.24.4 @@ -5184,6 +5221,13 @@ snapshots: fs-extra: 7.0.1 semver: 7.6.0 + "@changesets/get-github-info@0.6.0": + dependencies: + dataloader: 1.4.0 + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + "@changesets/get-release-plan@4.0.0": dependencies: "@babel/runtime": 7.24.4 @@ -6337,6 +6381,8 @@ snapshots: es-errors: 1.3.0 is-data-view: 1.0.1 + dataloader@1.4.0: {} + date-time@3.1.0: dependencies: time-zone: 1.0.0 @@ -6393,6 +6439,8 @@ snapshots: dependencies: is-obj: 2.0.0 + dotenv@8.6.0: {} + eastasianwidth@0.2.0: {} emittery@1.0.3: {} From 1acc0bc8612a570cc4fc1216942403c4108993ee Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 17 Apr 2024 19:48:19 +0000 Subject: [PATCH 156/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 20ddb800..721535b9 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -547,7 +547,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "6px", "uuid": "7332a4d3-3775-4247-a4c0-fb01f0604d63" } } @@ -557,12 +557,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", + "value": "6px", "uuid": "dd9e6e28-a382-46a1-a6e0-f73c8cc0ed70" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "8px", "uuid": "cf58ae75-8f3f-4b9e-809b-ee78abbb2f2f" } } @@ -572,12 +572,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "9px", "uuid": "64cdd254-d3fe-40e6-97a8-76dd8156afa8" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "989aee4c-5c90-454a-b68d-a7564669c2bd" } } @@ -587,12 +587,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "9654369a-5bf8-4436-a331-aeac1fd25a70" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "15px", "uuid": "cb4f356c-2dcd-4043-8f5c-3da904716b48" } } @@ -2314,4 +2314,4 @@ "value": "{drop-shadow-blur-200}", "uuid": "f3487a86-3aea-4527-8b5c-287c0bddad6c" } -} +} \ No newline at end of file From 5f962fc864c516213db58bece2c47a74c68cc985 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 17 Apr 2024 14:10:18 -0600 Subject: [PATCH 157/295] chore: added changeset --- .changeset/fluffy-bees-play.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .changeset/fluffy-bees-play.md diff --git a/.changeset/fluffy-bees-play.md b/.changeset/fluffy-bees-play.md new file mode 100644 index 00000000..a01135b3 --- /dev/null +++ b/.changeset/fluffy-bees-play.md @@ -0,0 +1,16 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated values for component pill edge to visual only tokens for both desktop and mobile. + +These values are updated based on the new workflow icon size. + +## Token Diff + +_Token values updated (4):_ + +- `component-pill-edge-to-visual-only-100` +- `component-pill-edge-to-visual-only-200` +- `component-pill-edge-to-visual-only-300` +- `component-pill-edge-to-visual-only-75` From 3278d8ead6db92d56613b8ad425ac4acb1e23a18 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 17 Apr 2024 20:17:15 +0000 Subject: [PATCH 158/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 52 ++++++++++++++++++++++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 187b38fa..589a83c8 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -7677,5 +7677,55 @@ "uuid": "45855bc5-3b86-49a9-b443-7be9aa763c4e" } } + }, + "standard-dialog-maximum-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "400px", + "uuid": "c00d9b06-f198-4cd5-9b69-ed3796314dab" + }, + "standard-dialog-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "288px", + "uuid": "27f2bc13-53e4-4416-8592-a2a44909d22d" + }, + "standard-dialog-maximum-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "480px", + "uuid": "1c886eb9-f651-42ce-baff-9b3996077f92" + }, + "standard-dialog-maximum-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "640px", + "uuid": "5ec703d4-19d9-4be5-976f-e4c1966c0d3d" + }, + "standard-dialog-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xxl}", + "uuid": "d4e81ac4-8855-4ac4-b28f-ad054f74e517" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xl}", + "uuid": "02c75ba4-2c9f-45f3-8e74-c9a1065142ac" + } + } + }, + "standard-dialog-body-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-m}", + "uuid": "84aa108a-3c23-494f-b9c0-da64acdbeb79" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "f33e2125-0424-4329-bf60-ec42a15c36bc" + } + } } -} +} \ No newline at end of file From 8c09f2cfed3f21319f1cbc33a85a18757cc94ed9 Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 17 Apr 2024 20:17:33 +0000 Subject: [PATCH 159/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 114 ++++++++++++++++++---- 1 file changed, 97 insertions(+), 17 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 187b38fa..903c6c0a 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -771,9 +771,19 @@ }, "status-light-dot-size-small": { "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "04485265-2983-4377-9ec5-f2456863a1df" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "04485265-2983-4377-9ec5-f2456863a1df" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "5945e9fe-311a-4d2c-8052-ca4eae4c7c63" + } + } }, "status-light-dot-size-medium": { "component": "status-light", @@ -781,12 +791,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "10px", "uuid": "ada7bd8c-04c9-4d77-a6e8-072ff86984ae" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "12px", "uuid": "a7fc9ca1-ad6d-47cb-8798-4a18ba4acc79" } } @@ -797,12 +807,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "12px", "uuid": "45832ec2-5f33-4861-a857-1ca2352213db" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "14px", "uuid": "6554dae9-18b6-4c90-b2f4-8aeaab0724ad" } } @@ -813,12 +823,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "14px", "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "16px", "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" } } @@ -834,7 +844,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", + "value": "10px", "uuid": "a4f43adc-1db1-4e2f-a5d1-3ec06c62c9ff" } } @@ -845,12 +855,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "11px", "uuid": "e2aa334e-ebb7-4e5f-a735-4f6a43b2d6cf" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "14px", "uuid": "321a462b-8811-4264-ac1f-4608df8f8c53" } } @@ -861,12 +871,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "14px", "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "18px", "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" } } @@ -877,12 +887,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "17px", "uuid": "899c7b7c-7405-4e29-8d42-edf41ca2943f" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", + "value": "22px", "uuid": "b351cade-6d69-449e-908a-518793fef5b9" } } @@ -7677,5 +7687,75 @@ "uuid": "45855bc5-3b86-49a9-b443-7be9aa763c4e" } } + }, + "standard-dialog-maximum-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "400px", + "uuid": "e34da300-1bb6-44ee-9734-fca307e454e2" + }, + "standard-dialog-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "288px", + "uuid": "60d70785-4b35-478e-ad22-164c234726e3" + }, + "standard-dialog-maximum-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "480px", + "uuid": "c0e0a1e4-6ef3-472b-97cd-09c11ebc0bb6" + }, + "standard-dialog-maximum-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "640px", + "uuid": "e622c6b6-4f65-4d84-85cb-af7d70fec814" + }, + "standard-dialog-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xxl}", + "uuid": "bc5f837f-db55-4866-b48a-d372cd7072cd" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xl}", + "uuid": "9a08aef2-0f8c-4717-bb7f-afa0801144eb" + } + } + }, + "standard-dialog-body-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-m}", + "uuid": "4707be27-a79d-49df-89bb-e7aeeadef6fb" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "ebc3924a-f6ed-4294-90b9-e2cb383dfed5" + } + } + }, + "status-light-text-to-visual-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-75}", + "uuid": "ea98b9b0-20b5-4f19-aa4f-375559b1362a" + }, + "status-light-text-to-visual-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-100}", + "uuid": "752a84f5-cbb7-4d18-85ca-fc913a061bb5" + }, + "status-light-text-to-visual-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-200}", + "uuid": "d3e53f14-b91e-4d10-8508-17360ae5620e" + }, + "status-light-text-to-visual-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-300}", + "uuid": "ee780be7-b32c-4da8-a6bc-fc0897799537" } -} +} \ No newline at end of file From b127f73e6bb894b2635afda4a1769df4c291ba8c Mon Sep 17 00:00:00 2001 From: GarthDB Date: Wed, 17 Apr 2024 20:18:02 +0000 Subject: [PATCH 160/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 118 ++++++++++++++++++---- 1 file changed, 99 insertions(+), 19 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 187b38fa..f8611f1f 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -771,9 +771,19 @@ }, "status-light-dot-size-small": { "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "04485265-2983-4377-9ec5-f2456863a1df" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "04485265-2983-4377-9ec5-f2456863a1df" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "d9b2fede-b7d1-4099-b11d-a48fd85a7fb4" + } + } }, "status-light-dot-size-medium": { "component": "status-light", @@ -781,12 +791,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "10px", "uuid": "ada7bd8c-04c9-4d77-a6e8-072ff86984ae" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "12px", "uuid": "a7fc9ca1-ad6d-47cb-8798-4a18ba4acc79" } } @@ -797,12 +807,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "12px", "uuid": "45832ec2-5f33-4861-a857-1ca2352213db" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "14px", "uuid": "6554dae9-18b6-4c90-b2f4-8aeaab0724ad" } } @@ -813,12 +823,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "14px", "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "16px", "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" } } @@ -834,7 +844,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", + "value": "10px", "uuid": "a4f43adc-1db1-4e2f-a5d1-3ec06c62c9ff" } } @@ -845,12 +855,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "11px", "uuid": "e2aa334e-ebb7-4e5f-a735-4f6a43b2d6cf" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "14px", "uuid": "321a462b-8811-4264-ac1f-4608df8f8c53" } } @@ -861,12 +871,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "14px", "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "18px", "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" } } @@ -877,12 +887,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "17px", "uuid": "899c7b7c-7405-4e29-8d42-edf41ca2943f" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", + "value": "22px", "uuid": "b351cade-6d69-449e-908a-518793fef5b9" } } @@ -3084,12 +3094,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "18px", "uuid": "fbe047c4-0346-4b81-bdf6-6565cede7a28" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", + "value": "20px", "uuid": "402c755b-322c-4ea0-856c-ca209bdaa8ec" } } @@ -7677,5 +7687,75 @@ "uuid": "45855bc5-3b86-49a9-b443-7be9aa763c4e" } } + }, + "standard-dialog-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xxl}", + "uuid": "d4e81ac4-8855-4ac4-b28f-ad054f74e517" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xl}", + "uuid": "02c75ba4-2c9f-45f3-8e74-c9a1065142ac" + } + } + }, + "standard-dialog-body-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-m}", + "uuid": "84aa108a-3c23-494f-b9c0-da64acdbeb79" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "f33e2125-0424-4329-bf60-ec42a15c36bc" + } + } + }, + "standard-dialog-maximum-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "400px", + "uuid": "c00d9b06-f198-4cd5-9b69-ed3796314dab" + }, + "standard-dialog-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "288px", + "uuid": "27f2bc13-53e4-4416-8592-a2a44909d22d" + }, + "standard-dialog-maximum-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "480px", + "uuid": "1c886eb9-f651-42ce-baff-9b3996077f92" + }, + "standard-dialog-maximum-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "640px", + "uuid": "5ec703d4-19d9-4be5-976f-e4c1966c0d3d" + }, + "status-light-text-to-visual-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-75}", + "uuid": "4ad3d235-0ab4-4cda-8c14-6cd03aae0c4c" + }, + "status-light-text-to-visual-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-100}", + "uuid": "f78bce2b-1666-4e0a-9579-66195bfad97f" + }, + "status-light-text-to-visual-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-200}", + "uuid": "30402c2d-1fbd-4940-bad7-23086c7d9c27" + }, + "status-light-text-to-visual-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-visual-300}", + "uuid": "22efc9f4-4206-48ea-9161-885623309b64" } -} +} \ No newline at end of file From 995ca3bc418d6e813e6ab4a4fc62c5055df5e8db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 17 Apr 2024 20:12:59 +0000 Subject: [PATCH 161/295] chore: release (beta) --- .changeset/pre.json | 5 ++++- packages/tokens/CHANGELOG.md | 26 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 8 ++++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 tools/token-csv-generator/CHANGELOG.md diff --git a/.changeset/pre.json b/.changeset/pre.json index f1971b5b..bd45c436 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -7,7 +7,8 @@ "@adobe/spectrum-tokens": "12.19.1", "system-set-merge": "0.0.1", "token-manifest-builder": "0.0.1", - "transform-tokens-json": "0.0.1" + "transform-tokens-json": "0.0.1", + "token-csv-generator": "0.0.1" }, "changesets": [ "angry-zoos-applaud", @@ -21,6 +22,7 @@ "dull-eyes-grab", "empty-steaks-dress", "five-steaks-argue", + "fluffy-bees-play", "forty-lizards-thank", "fuzzy-cherries-buy", "gentle-months-carry", @@ -28,6 +30,7 @@ "good-baboons-doubt", "good-peas-mix", "happy-students-vanish", + "kind-geese-hope", "lazy-bears-remember", "lemon-dragons-raise", "neat-balloons-rhyme", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index ea439beb..da14afa0 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,31 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.29 + +### Minor Changes + +- [#319](https://github.com/adobe/spectrum-tokens/pull/319) [`5f962fc`](https://github.com/adobe/spectrum-tokens/commit/5f962fc864c516213db58bece2c47a74c68cc985) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated values for component pill edge to visual only tokens for both desktop and mobile. + + These values are updated based on the new workflow icon size. + + ## Token Diff + + _Token values updated (4):_ + + - `component-pill-edge-to-visual-only-100` + - `component-pill-edge-to-visual-only-200` + - `component-pill-edge-to-visual-only-300` + - `component-pill-edge-to-visual-only-75` + +- [#316](https://github.com/adobe/spectrum-tokens/pull/316) [`664ab0b`](https://github.com/adobe/spectrum-tokens/commit/664ab0bba68b9f4752599ed73c98b5d339414478) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - S2 Color loupe tokens update (color-only) + + ## Token Diff + + _Newly deprecated tokens (2):_ + + - `color-loupe-drop-shadow-color` + - `drop-shadow-color` + ## 13.0.0-beta.28 ### Patch Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index bb06d2f5..41ae1f92 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.28", + "version": "13.0.0-beta.29", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md new file mode 100644 index 00000000..5cb67172 --- /dev/null +++ b/tools/token-csv-generator/CHANGELOG.md @@ -0,0 +1,8 @@ +# token-csv-generator + +## 0.0.2-beta.0 + +### Patch Changes + +- Updated dependencies [[`5f962fc`](https://github.com/adobe/spectrum-tokens/commit/5f962fc864c516213db58bece2c47a74c68cc985), [`664ab0b`](https://github.com/adobe/spectrum-tokens/commit/664ab0bba68b9f4752599ed73c98b5d339414478)]: + - @adobe/spectrum-tokens@13.0.0-beta.29 diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index eb6986a6..4a2f220b 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.1", + "version": "0.0.2-beta.0", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From e392c497a4d474c9619a882ad9ab4948441712e0 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 18 Apr 2024 09:59:09 -0600 Subject: [PATCH 162/295] chore: added changeset --- .changeset/purple-worms-add.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .changeset/purple-worms-add.md diff --git a/.changeset/purple-worms-add.md b/.changeset/purple-worms-add.md new file mode 100644 index 00000000..e74dc33b --- /dev/null +++ b/.changeset/purple-worms-add.md @@ -0,0 +1,33 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added new Standard dialog, status light, and updated alert-banner-top-to-workflow-icon tokens + +## Token Diff + +_Tokens added (10):_ + +- `standard-dialog-body-font-size` +- `standard-dialog-maximum-width-large` +- `standard-dialog-maximum-width-medium` +- `standard-dialog-maximum-width-small` +- `standard-dialog-minimum-width` +- `standard-dialog-title-font-size` +- `status-light-text-to-visual-100` +- `status-light-text-to-visual-200` +- `status-light-text-to-visual-300` +- `status-light-text-to-visual-75` + +_Token values updated (10):_ + +- `alert-banner-to-top-workflow-icon` +- `alert-banner-top-to-workflow-icon` +- `status-light-dot-size-extra-large` +- `status-light-dot-size-large` +- `status-light-dot-size-medium` +- `status-light-top-to-dot-extra-large` +- `status-light-top-to-dot-large` +- `status-light-top-to-dot-medium` +- `status-light-top-to-dot-small` +- `status-light-dot-size-small` From 4d99d8e1970412496acf74a793ef2a5b75ce4f7c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 18 Apr 2024 16:01:41 +0000 Subject: [PATCH 163/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 34 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 ++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 44 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index bd45c436..14177619 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -35,6 +35,7 @@ "lemon-dragons-raise", "neat-balloons-rhyme", "olive-schools-warn", + "purple-worms-add", "real-seals-camp", "red-snails-roll", "rotten-rice-end", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index da14afa0..ed3d6e07 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,39 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.30 + +### Minor Changes + +- [#321](https://github.com/adobe/spectrum-tokens/pull/321) [`e392c49`](https://github.com/adobe/spectrum-tokens/commit/e392c497a4d474c9619a882ad9ab4948441712e0) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added new Standard dialog, status light, and updated alert-banner-top-to-workflow-icon tokens + + ## Token Diff + + _Tokens added (10):_ + + - `standard-dialog-body-font-size` + - `standard-dialog-maximum-width-large` + - `standard-dialog-maximum-width-medium` + - `standard-dialog-maximum-width-small` + - `standard-dialog-minimum-width` + - `standard-dialog-title-font-size` + - `status-light-text-to-visual-100` + - `status-light-text-to-visual-200` + - `status-light-text-to-visual-300` + - `status-light-text-to-visual-75` + + _Token values updated (10):_ + + - `alert-banner-to-top-workflow-icon` + - `alert-banner-top-to-workflow-icon` + - `status-light-dot-size-extra-large` + - `status-light-dot-size-large` + - `status-light-dot-size-medium` + - `status-light-top-to-dot-extra-large` + - `status-light-top-to-dot-large` + - `status-light-top-to-dot-medium` + - `status-light-top-to-dot-small` + - `status-light-dot-size-small` + ## 13.0.0-beta.29 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 41ae1f92..b256b9d3 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.29", + "version": "13.0.0-beta.30", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 5cb67172..6fa77e97 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.1 + +### Patch Changes + +- Updated dependencies [[`e392c49`](https://github.com/adobe/spectrum-tokens/commit/e392c497a4d474c9619a882ad9ab4948441712e0)]: + - @adobe/spectrum-tokens@13.0.0-beta.30 + ## 0.0.2-beta.0 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 4a2f220b..be91e77e 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.0", + "version": "0.0.2-beta.1", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 16f5d1d517ea16bf833dccb703d5764e065c7087 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 25 Apr 2024 10:16:27 -0400 Subject: [PATCH 164/295] feat: added private boolean to tokens --- .moon/toolchain.yml | 2 +- .../public/schemas/token-types/alias.json | 1 + .../public/schemas/token-types/color-set.json | 1 + .../public/schemas/token-types/color.json | 1 + .../public/schemas/token-types/dimension.json | 1 + .../schemas/token-types/font-family.json | 1 + .../public/schemas/token-types/font-size.json | 1 + .../schemas/token-types/font-style.json | 1 + .../schemas/token-types/font-weight.json | 1 + .../schemas/token-types/multiplier.json | 1 + .../public/schemas/token-types/opacity.json | 1 + .../public/schemas/token-types/scale-set.json | 1 + .../schemas/token-types/system-set.json | 1 + .../schemas/token-types/text-transform.json | 1 + .../public/schemas/token-types/token.json | 7 +- package.json | 2 +- .../tokens/schemas/token-types/alias.json | 1 + .../tokens/schemas/token-types/color-set.json | 1 + .../tokens/schemas/token-types/color.json | 1 + .../tokens/schemas/token-types/dimension.json | 1 + .../schemas/token-types/font-family.json | 1 + .../tokens/schemas/token-types/font-size.json | 1 + .../schemas/token-types/font-style.json | 1 + .../schemas/token-types/font-weight.json | 1 + .../schemas/token-types/multiplier.json | 1 + .../tokens/schemas/token-types/opacity.json | 1 + .../tokens/schemas/token-types/scale-set.json | 1 + .../schemas/token-types/system-set.json | 1 + .../schemas/token-types/text-transform.json | 1 + .../tokens/schemas/token-types/token.json | 7 +- packages/tokens/src/color-component.json | 4 +- packages/tokens/src/color-palette.json | 987 ++++++++++++------ packages/tokens/src/layout-component.json | 258 ++++- packages/tokens/tasks/addPrivate.js | 22 + packages/tokens/test/checkComponentProps.js | 28 + packages/tokens/test/checkPrivate.js | 22 + 36 files changed, 978 insertions(+), 387 deletions(-) create mode 100644 packages/tokens/tasks/addPrivate.js create mode 100644 packages/tokens/test/checkComponentProps.js create mode 100644 packages/tokens/test/checkPrivate.js diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 34fdf663..2c52d9d7 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "9.0.2" + version: "9.0.6" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/docs/site/public/schemas/token-types/alias.json b/docs/site/public/schemas/token-types/alias.json index 7989b893..7a7586d3 100644 --- a/docs/site/public/schemas/token-types/alias.json +++ b/docs/site/public/schemas/token-types/alias.json @@ -18,6 +18,7 @@ "pattern": "^\\{(\\w|-)*\\}$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/color-set.json b/docs/site/public/schemas/token-types/color-set.json index 636d5867..fa228073 100644 --- a/docs/site/public/schemas/token-types/color-set.json +++ b/docs/site/public/schemas/token-types/color-set.json @@ -61,6 +61,7 @@ ] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/color.json b/docs/site/public/schemas/token-types/color.json index 24db23bd..9f04138f 100644 --- a/docs/site/public/schemas/token-types/color.json +++ b/docs/site/public/schemas/token-types/color.json @@ -18,6 +18,7 @@ "pattern": "^rgba\\((([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]),\\s?){3}(0|1|0?\\.\\d+)\\)|rgb\\(([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]){1,3}(,\\s?\\d{1,3}%?){2}\\)$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/dimension.json b/docs/site/public/schemas/token-types/dimension.json index 0aac5359..f1c60cd8 100644 --- a/docs/site/public/schemas/token-types/dimension.json +++ b/docs/site/public/schemas/token-types/dimension.json @@ -18,6 +18,7 @@ "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em|%))|0|\\d+dp$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/font-family.json b/docs/site/public/schemas/token-types/font-family.json index 321f61ec..c474a95b 100644 --- a/docs/site/public/schemas/token-types/font-family.json +++ b/docs/site/public/schemas/token-types/font-family.json @@ -18,6 +18,7 @@ "pattern": "^(?:\"?\\w+\"? ?,? ?)*\"?\\w+\"?$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/font-size.json b/docs/site/public/schemas/token-types/font-size.json index e0132631..923a6ead 100644 --- a/docs/site/public/schemas/token-types/font-size.json +++ b/docs/site/public/schemas/token-types/font-size.json @@ -18,6 +18,7 @@ "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em))$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/font-style.json b/docs/site/public/schemas/token-types/font-style.json index 81ed3be4..46c6e434 100644 --- a/docs/site/public/schemas/token-types/font-style.json +++ b/docs/site/public/schemas/token-types/font-style.json @@ -18,6 +18,7 @@ "enum": ["italic", "normal"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/font-weight.json b/docs/site/public/schemas/token-types/font-weight.json index 067d8505..83394c7b 100644 --- a/docs/site/public/schemas/token-types/font-weight.json +++ b/docs/site/public/schemas/token-types/font-weight.json @@ -18,6 +18,7 @@ "enum": ["light", "regular", "medium", "bold", "extra-bold", "black"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/multiplier.json b/docs/site/public/schemas/token-types/multiplier.json index 0b4f2271..3986b92c 100644 --- a/docs/site/public/schemas/token-types/multiplier.json +++ b/docs/site/public/schemas/token-types/multiplier.json @@ -18,6 +18,7 @@ "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/opacity.json b/docs/site/public/schemas/token-types/opacity.json index 4344fc7f..6f25b633 100644 --- a/docs/site/public/schemas/token-types/opacity.json +++ b/docs/site/public/schemas/token-types/opacity.json @@ -18,6 +18,7 @@ "pattern": "^(?:\\d+(?:\\.\\d)+%)|(?:1|0)(?:\\.0)?|0?\\.\\d*$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/scale-set.json b/docs/site/public/schemas/token-types/scale-set.json index 2ff25d6e..86c83751 100644 --- a/docs/site/public/schemas/token-types/scale-set.json +++ b/docs/site/public/schemas/token-types/scale-set.json @@ -52,6 +52,7 @@ "required": ["mobile", "desktop"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/system-set.json b/docs/site/public/schemas/token-types/system-set.json index d4b3ab73..476a89a1 100644 --- a/docs/site/public/schemas/token-types/system-set.json +++ b/docs/site/public/schemas/token-types/system-set.json @@ -74,6 +74,7 @@ ] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/text-transform.json b/docs/site/public/schemas/token-types/text-transform.json index ffb4466d..c6ec60f5 100644 --- a/docs/site/public/schemas/token-types/text-transform.json +++ b/docs/site/public/schemas/token-types/text-transform.json @@ -18,6 +18,7 @@ "enum": ["uppercase", "lowercase", "capitalize", "none"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/docs/site/public/schemas/token-types/token.json b/docs/site/public/schemas/token-types/token.json index 4dba66bc..08a3fa4c 100644 --- a/docs/site/public/schemas/token-types/token.json +++ b/docs/site/public/schemas/token-types/token.json @@ -11,8 +11,13 @@ "component": { "type": "string" }, + "private": { + "type": "boolean", + "default": false + }, "deprecated": { - "type": "boolean" + "type": "boolean", + "default": false }, "deprecated_comment": { "type": "string" diff --git a/package.json b/package.json index d11eea34..0d1af861 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "engines": { "node": "~20.12" }, - "packageManager": "pnpm@9.0.2", + "packageManager": "pnpm@9.0.6", "dependencies": { "@changesets/changelog-github": "^0.5.0" } diff --git a/packages/tokens/schemas/token-types/alias.json b/packages/tokens/schemas/token-types/alias.json index 7989b893..7a7586d3 100644 --- a/packages/tokens/schemas/token-types/alias.json +++ b/packages/tokens/schemas/token-types/alias.json @@ -18,6 +18,7 @@ "pattern": "^\\{(\\w|-)*\\}$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/color-set.json b/packages/tokens/schemas/token-types/color-set.json index 636d5867..fa228073 100644 --- a/packages/tokens/schemas/token-types/color-set.json +++ b/packages/tokens/schemas/token-types/color-set.json @@ -61,6 +61,7 @@ ] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/color.json b/packages/tokens/schemas/token-types/color.json index 24db23bd..9f04138f 100644 --- a/packages/tokens/schemas/token-types/color.json +++ b/packages/tokens/schemas/token-types/color.json @@ -18,6 +18,7 @@ "pattern": "^rgba\\((([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]),\\s?){3}(0|1|0?\\.\\d+)\\)|rgb\\(([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]){1,3}(,\\s?\\d{1,3}%?){2}\\)$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/dimension.json b/packages/tokens/schemas/token-types/dimension.json index 0aac5359..f1c60cd8 100644 --- a/packages/tokens/schemas/token-types/dimension.json +++ b/packages/tokens/schemas/token-types/dimension.json @@ -18,6 +18,7 @@ "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em|%))|0|\\d+dp$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/font-family.json b/packages/tokens/schemas/token-types/font-family.json index 321f61ec..c474a95b 100644 --- a/packages/tokens/schemas/token-types/font-family.json +++ b/packages/tokens/schemas/token-types/font-family.json @@ -18,6 +18,7 @@ "pattern": "^(?:\"?\\w+\"? ?,? ?)*\"?\\w+\"?$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/font-size.json b/packages/tokens/schemas/token-types/font-size.json index e0132631..923a6ead 100644 --- a/packages/tokens/schemas/token-types/font-size.json +++ b/packages/tokens/schemas/token-types/font-size.json @@ -18,6 +18,7 @@ "pattern": "^(?:-?((?:\\d+\\.?\\d*)|(?:\\.?\\d+))(px|rem|em))$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/font-style.json b/packages/tokens/schemas/token-types/font-style.json index 81ed3be4..46c6e434 100644 --- a/packages/tokens/schemas/token-types/font-style.json +++ b/packages/tokens/schemas/token-types/font-style.json @@ -18,6 +18,7 @@ "enum": ["italic", "normal"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/font-weight.json b/packages/tokens/schemas/token-types/font-weight.json index 067d8505..83394c7b 100644 --- a/packages/tokens/schemas/token-types/font-weight.json +++ b/packages/tokens/schemas/token-types/font-weight.json @@ -18,6 +18,7 @@ "enum": ["light", "regular", "medium", "bold", "extra-bold", "black"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/multiplier.json b/packages/tokens/schemas/token-types/multiplier.json index 0b4f2271..3986b92c 100644 --- a/packages/tokens/schemas/token-types/multiplier.json +++ b/packages/tokens/schemas/token-types/multiplier.json @@ -18,6 +18,7 @@ "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/opacity.json b/packages/tokens/schemas/token-types/opacity.json index 4344fc7f..6f25b633 100644 --- a/packages/tokens/schemas/token-types/opacity.json +++ b/packages/tokens/schemas/token-types/opacity.json @@ -18,6 +18,7 @@ "pattern": "^(?:\\d+(?:\\.\\d)+%)|(?:1|0)(?:\\.0)?|0?\\.\\d*$" }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/scale-set.json b/packages/tokens/schemas/token-types/scale-set.json index 2ff25d6e..86c83751 100644 --- a/packages/tokens/schemas/token-types/scale-set.json +++ b/packages/tokens/schemas/token-types/scale-set.json @@ -52,6 +52,7 @@ "required": ["mobile", "desktop"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/system-set.json b/packages/tokens/schemas/token-types/system-set.json index d4b3ab73..476a89a1 100644 --- a/packages/tokens/schemas/token-types/system-set.json +++ b/packages/tokens/schemas/token-types/system-set.json @@ -74,6 +74,7 @@ ] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/text-transform.json b/packages/tokens/schemas/token-types/text-transform.json index ffb4466d..c6ec60f5 100644 --- a/packages/tokens/schemas/token-types/text-transform.json +++ b/packages/tokens/schemas/token-types/text-transform.json @@ -18,6 +18,7 @@ "enum": ["uppercase", "lowercase", "capitalize", "none"] }, "component": {}, + "private": {}, "deprecated": {}, "deprecated_comment": {}, "uuid": {} diff --git a/packages/tokens/schemas/token-types/token.json b/packages/tokens/schemas/token-types/token.json index 4dba66bc..08a3fa4c 100644 --- a/packages/tokens/schemas/token-types/token.json +++ b/packages/tokens/schemas/token-types/token.json @@ -11,8 +11,13 @@ "component": { "type": "string" }, + "private": { + "type": "boolean", + "default": false + }, "deprecated": { - "type": "boolean" + "type": "boolean", + "default": false }, "deprecated_comment": { "type": "string" diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index ad80b000..5efbe4ca 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -133,13 +133,13 @@ "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" }, "card-selection-background-color": { - "component": "cards", + "component": "card", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" }, "card-selection-background-color-opacity": { - "component": "cards", + "component": "card", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.95", "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index e4900ad0..a7b6e6aa 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -2,142 +2,170 @@ "white": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", - "uuid": "9b799da8-2130-417e-b7ee-5e1154a89837" + "uuid": "9b799da8-2130-417e-b7ee-5e1154a89837", + "private": true }, "transparent-white-25": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0)", - "uuid": "98a7279b-e21c-41ae-9bae-8b9b2b243e35" + "uuid": "98a7279b-e21c-41ae-9bae-8b9b2b243e35", + "private": true }, "transparent-white-50": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.04)", - "uuid": "db1dbf26-fa48-42e1-b724-7953b0a6a543" + "uuid": "db1dbf26-fa48-42e1-b724-7953b0a6a543", + "private": true }, "transparent-white-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.07)", - "uuid": "28d11d38-570d-4d99-b581-855781b972c5" + "uuid": "28d11d38-570d-4d99-b581-855781b972c5", + "private": true }, "transparent-white-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.11)", - "uuid": "a1b64a62-7c78-415e-a9be-c86acbf361ca" + "uuid": "a1b64a62-7c78-415e-a9be-c86acbf361ca", + "private": true }, "transparent-white-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.14)", - "uuid": "936db837-bc5a-40b0-a0e8-8e39b9fc62cb" + "uuid": "936db837-bc5a-40b0-a0e8-8e39b9fc62cb", + "private": true }, "transparent-white-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.17)", - "uuid": "5ffa0283-ce9c-4f96-9227-f559ec54ee0c" + "uuid": "5ffa0283-ce9c-4f96-9227-f559ec54ee0c", + "private": true }, "transparent-white-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.21)", - "uuid": "12e610d4-e3dc-4e86-9c09-09d86915b6f1" + "uuid": "12e610d4-e3dc-4e86-9c09-09d86915b6f1", + "private": true }, "transparent-white-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.39)", - "uuid": "89c1380f-3e8e-4895-b025-027cee7ecd5b" + "uuid": "89c1380f-3e8e-4895-b025-027cee7ecd5b", + "private": true }, "transparent-white-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.51)", - "uuid": "b24431ee-5c72-4a73-8733-746c6f5d77c0" + "uuid": "b24431ee-5c72-4a73-8733-746c6f5d77c0", + "private": true }, "transparent-white-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.66)", - "uuid": "3ecc14ec-a21e-47ba-8225-915509a532af" + "uuid": "3ecc14ec-a21e-47ba-8225-915509a532af", + "private": true }, "transparent-white-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.85)", - "uuid": "b85836bf-af47-412a-900a-4ec5ad0733b2" + "uuid": "b85836bf-af47-412a-900a-4ec5ad0733b2", + "private": true }, "transparent-white-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(255, 255, 255, 0.94)", - "uuid": "c5c823c6-1911-4e0e-ba2f-5105f467e108" + "uuid": "c5c823c6-1911-4e0e-ba2f-5105f467e108", + "private": true }, "transparent-white-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(255, 255, 255)", - "uuid": "1409a50a-9a9d-463d-957f-fa2e4f98a0cd" + "uuid": "1409a50a-9a9d-463d-957f-fa2e4f98a0cd", + "private": true }, "black": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 0, 0)", - "uuid": "28dea8b0-4e9a-46f9-babb-c8910e6ae783" + "uuid": "28dea8b0-4e9a-46f9-babb-c8910e6ae783", + "private": true }, "transparent-black-25": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0)", - "uuid": "d0867b86-6245-4c02-8617-ea7fd5c80288" + "uuid": "d0867b86-6245-4c02-8617-ea7fd5c80288", + "private": true }, "transparent-black-50": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.03)", - "uuid": "d6aa176c-30bd-423f-b05f-4360672bd87e" + "uuid": "d6aa176c-30bd-423f-b05f-4360672bd87e", + "private": true }, "transparent-black-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.05)", - "uuid": "d33a66ea-ca60-416f-9e92-967dbbb1e983" + "uuid": "d33a66ea-ca60-416f-9e92-967dbbb1e983", + "private": true }, "transparent-black-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.09)", - "uuid": "7565eb32-d745-4fc3-8779-a717f8ba910a" + "uuid": "7565eb32-d745-4fc3-8779-a717f8ba910a", + "private": true }, "transparent-black-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.12)", - "uuid": "a84ecad8-8005-4ce4-add6-7f83f7e05ba0" + "uuid": "a84ecad8-8005-4ce4-add6-7f83f7e05ba0", + "private": true }, "transparent-black-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.15)", - "uuid": "16a871e1-d9df-42bb-8889-99059d70e82e" + "uuid": "16a871e1-d9df-42bb-8889-99059d70e82e", + "private": true }, "transparent-black-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.22)", - "uuid": "b769453b-586c-4dd2-b3a1-ddf5964160bc" + "uuid": "b769453b-586c-4dd2-b3a1-ddf5964160bc", + "private": true }, "transparent-black-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.44)", - "uuid": "cebedd9f-9e4b-47cf-addb-45d8ff9c9179" + "uuid": "cebedd9f-9e4b-47cf-addb-45d8ff9c9179", + "private": true }, "transparent-black-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.56)", - "uuid": "199e19a5-bf7d-4933-8425-d7d5881e4cf5" + "uuid": "199e19a5-bf7d-4933-8425-d7d5881e4cf5", + "private": true }, "transparent-black-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.69)", - "uuid": "56da822f-98ea-4ad1-b993-3f052de45f36" + "uuid": "56da822f-98ea-4ad1-b993-3f052de45f36", + "private": true }, "transparent-black-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.84)", - "uuid": "3e89f180-b0f0-4de0-904b-c80f0210a361" + "uuid": "3e89f180-b0f0-4de0-904b-c80f0210a361", + "private": true }, "transparent-black-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgba(0, 0, 0, 0.93)", - "uuid": "c0a331f9-53e3-4c72-b5e3-139d730a1752" + "uuid": "c0a331f9-53e3-4c72-b5e3-139d730a1752", + "private": true }, "transparent-black-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(0, 0, 0)", - "uuid": "098f2f56-e52f-47b1-943a-d1d7218de484" + "uuid": "098f2f56-e52f-47b1-943a-d1d7218de484", + "private": true }, "gray-25": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -157,7 +185,8 @@ "value": "rgb(255, 255, 255)", "uuid": "0906f3b2-74a9-4012-9e26-4d8f68f0eba9" } - } + }, + "private": true }, "gray-50": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -177,7 +206,8 @@ "value": "rgb(255, 255, 255)", "uuid": "16ee1a81-e7d0-46ff-af81-5eca376ce203" } - } + }, + "private": true }, "gray-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -197,7 +227,8 @@ "value": "rgb(253, 253, 254)", "uuid": "4b6e738d-ac71-4d34-83eb-cd45e511b144" } - } + }, + "private": true }, "gray-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -217,7 +248,8 @@ "value": "rgb(244, 246, 252)", "uuid": "3605974e-8f93-4907-81b3-fb6ab55d03f8" } - } + }, + "private": true }, "gray-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -237,7 +269,8 @@ "value": "rgb(230, 236, 248)", "uuid": "eaad36fe-2827-4404-8876-060de75c2b34" } - } + }, + "private": true }, "gray-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -257,7 +290,8 @@ "value": "rgb(210, 220, 243)", "uuid": "57d4b287-c9d9-4c56-894b-2df496d9a3b4" } - } + }, + "private": true }, "gray-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -277,7 +311,8 @@ "value": "rgb(183, 200, 235)", "uuid": "4634f126-2240-4de9-b244-ab2b833d70ef" } - } + }, + "private": true }, "gray-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -297,7 +332,8 @@ "value": "rgb(152, 176, 226)", "uuid": "bc09529e-716c-4541-a75a-081ed9fdd860" } - } + }, + "private": true }, "gray-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -317,7 +353,8 @@ "value": "rgb(113, 144, 210)", "uuid": "3ab25385-aece-42c4-af86-01ea97ed2455" } - } + }, + "private": true }, "gray-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -337,7 +374,8 @@ "value": "rgb(78, 112, 187)", "uuid": "b5201efc-0a69-4a87-8b9b-e869bcf03457" } - } + }, + "private": true }, "gray-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -357,7 +395,8 @@ "value": "rgb(73, 110, 194)", "uuid": "22e79b14-2a60-4721-8e9b-800fa9e7a128" } - } + }, + "private": true }, "gray-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -377,7 +416,8 @@ "value": "rgb(72, 110, 194)", "uuid": "93fb6cac-b190-4a5a-951f-f5dc4c0d5978" } - } + }, + "private": true }, "gray-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -397,7 +437,8 @@ "value": "rgb(8, 12, 22)", "uuid": "e804baf9-ae2c-4574-96d9-10cd5253fe47" } - } + }, + "private": true }, "blue-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -417,7 +458,8 @@ "value": "rgb(246, 248, 252)", "uuid": "05ffb7a9-8bd9-46cd-bfb0-66217d52ceb1" } - } + }, + "private": true }, "blue-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -437,7 +479,8 @@ "value": "rgb(235, 239, 248)", "uuid": "1f9bd0a5-d1ed-4d24-b8bf-273f5f22a5f4" } - } + }, + "private": true }, "blue-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -457,7 +500,8 @@ "value": "rgb(216, 224, 242)", "uuid": "94ed3997-5b56-41e8-9746-1d7515244c6e" } - } + }, + "private": true }, "blue-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -477,7 +521,8 @@ "value": "rgb(192, 205, 234)", "uuid": "23852b5e-2d80-4c89-946c-1c8c2fe37b39" } - } + }, + "private": true }, "blue-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -497,7 +542,8 @@ "value": "rgb(164, 183, 225)", "uuid": "ca7117db-c105-446f-85e5-72f1191b9cfd" } - } + }, + "private": true }, "blue-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -517,7 +563,8 @@ "value": "rgb(135, 160, 215)", "uuid": "560dddaa-d4ae-4d84-8750-30eb72f9e33c" } - } + }, + "private": true }, "blue-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -537,7 +584,8 @@ "value": "rgb(113, 142, 208)", "uuid": "0a50f1d3-8ae9-4955-9b1e-3d18121a3302" } - } + }, + "private": true }, "blue-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -557,7 +605,8 @@ "value": "rgb(93, 127, 201)", "uuid": "84bc6532-7cb0-47ea-8951-b16bc2a7aab9" } - } + }, + "private": true }, "blue-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -577,7 +626,8 @@ "value": "rgb(74, 111, 195)", "uuid": "895407bb-8fda-4857-92a9-bf0cc06f2c3f" } - } + }, + "private": true }, "blue-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -597,7 +647,8 @@ "value": "rgb(61, 94, 165)", "uuid": "a50fef9e-d01f-490c-9baa-8c9672f1ac96" } - } + }, + "private": true }, "blue-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -617,7 +668,8 @@ "value": "rgb(52, 79, 140)", "uuid": "85683533-e660-4037-ad0a-3d5e7714a757" } - } + }, + "private": true }, "blue-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -637,7 +689,8 @@ "value": "rgb(42, 65, 114)", "uuid": "ccde5f80-26bb-4de8-9982-0f7fd3a97e7d" } - } + }, + "private": true }, "blue-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -657,7 +710,8 @@ "value": "rgb(34, 51, 91)", "uuid": "4dbbc998-deeb-4268-9a6a-c49a57ff0bcc" } - } + }, + "private": true }, "blue-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -677,7 +731,8 @@ "value": "rgb(25, 39, 69)", "uuid": "0284c8ef-fd73-4c33-8f31-bc9a83a5a84f" } - } + }, + "private": true }, "blue-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -697,7 +752,8 @@ "value": "rgb(18, 27, 48)", "uuid": "07862296-803e-42fc-8ba1-ff8c25e76f66" } - } + }, + "private": true }, "blue-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -717,7 +773,8 @@ "value": "rgb(8, 12, 22)", "uuid": "9d380e6c-f6e9-433d-a8d8-f2432181736c" } - } + }, + "private": true }, "red-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -737,7 +794,8 @@ "value": "rgb(246, 248, 252)", "uuid": "b9752d64-5683-4ddc-ae30-164c475a5d90" } - } + }, + "private": true }, "red-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -757,7 +815,8 @@ "value": "rgb(235, 239, 248)", "uuid": "1d78cfc4-2c54-450e-9c5a-e3d3a40bcf32" } - } + }, + "private": true }, "red-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -777,7 +836,8 @@ "value": "rgb(216, 224, 242)", "uuid": "c020ab70-b666-478b-aaf2-8e06c033f307" } - } + }, + "private": true }, "red-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -797,7 +857,8 @@ "value": "rgb(192, 205, 234)", "uuid": "4ca331f0-9278-4ad7-9328-766e8a5f83e6" } - } + }, + "private": true }, "red-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -817,7 +878,8 @@ "value": "rgb(164, 183, 225)", "uuid": "92784233-e6b0-4de0-8069-f3c037472dec" } - } + }, + "private": true }, "red-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -837,7 +899,8 @@ "value": "rgb(135, 160, 215)", "uuid": "3fe966a7-eac1-4e06-9652-271182ff332d" } - } + }, + "private": true }, "red-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -857,7 +920,8 @@ "value": "rgb(113, 142, 208)", "uuid": "fd598b48-a775-4c72-92e5-55f357c33537" } - } + }, + "private": true }, "red-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -877,7 +941,8 @@ "value": "rgb(93, 127, 201)", "uuid": "abc67d6b-bd80-4e94-a91b-1f52216a5013" } - } + }, + "private": true }, "red-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -897,7 +962,8 @@ "value": "rgb(74, 111, 195)", "uuid": "f9fbdd87-77f6-4b99-b5f5-357604b57a48" } - } + }, + "private": true }, "red-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -917,7 +983,8 @@ "value": "rgb(61, 94, 165)", "uuid": "d3c2852d-4d9f-4493-af1a-cba5269baf22" } - } + }, + "private": true }, "red-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -937,7 +1004,8 @@ "value": "rgb(52, 79, 140)", "uuid": "fb1cf925-d51e-4b6a-9cd1-ee711193a03a" } - } + }, + "private": true }, "red-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -957,7 +1025,8 @@ "value": "rgb(42, 65, 114)", "uuid": "2caf3838-8be9-41d9-9cb9-fa2e6a2f8373" } - } + }, + "private": true }, "red-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -977,7 +1046,8 @@ "value": "rgb(34, 51, 91)", "uuid": "5e630b5e-ff35-4463-8db5-79519a54d64f" } - } + }, + "private": true }, "red-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -997,7 +1067,8 @@ "value": "rgb(25, 39, 69)", "uuid": "e70a8b5a-06ec-4771-9c16-9e74ae15c9bc" } - } + }, + "private": true }, "red-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1017,7 +1088,8 @@ "value": "rgb(18, 27, 48)", "uuid": "421ec0d6-4d71-4c2d-8a39-19e3700451f0" } - } + }, + "private": true }, "red-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1037,7 +1109,8 @@ "value": "rgb(8, 12, 22)", "uuid": "50807cbc-ade6-4f6d-8711-f569a52adaf8" } - } + }, + "private": true }, "orange-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1057,7 +1130,8 @@ "value": "rgb(246, 248, 252)", "uuid": "e4fff178-2055-4ec8-83e8-636a4ea8bb8c" } - } + }, + "private": true }, "orange-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1077,7 +1151,8 @@ "value": "rgb(235, 239, 248)", "uuid": "47e53be7-b33b-48e3-abdf-fe48d59f8819" } - } + }, + "private": true }, "orange-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1097,7 +1172,8 @@ "value": "rgb(216, 224, 242)", "uuid": "c455298b-cc23-4504-b731-27be6433fbcd" } - } + }, + "private": true }, "orange-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1117,7 +1193,8 @@ "value": "rgb(192, 205, 234)", "uuid": "2c08292c-e6cc-4dcb-9046-8a2af09d1e43" } - } + }, + "private": true }, "orange-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1137,7 +1214,8 @@ "value": "rgb(164, 183, 225)", "uuid": "e6c70e40-f9e7-4975-af39-9458a8325c6f" } - } + }, + "private": true }, "orange-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1157,7 +1235,8 @@ "value": "rgb(135, 160, 215)", "uuid": "8a201cca-353e-4538-a6b5-efbc2fc86186" } - } + }, + "private": true }, "orange-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1177,7 +1256,8 @@ "value": "rgb(113, 142, 208)", "uuid": "58992b4e-69ab-4919-922a-dd9277cb770e" } - } + }, + "private": true }, "orange-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1197,7 +1277,8 @@ "value": "rgb(93, 127, 201)", "uuid": "8f42ee1b-59a5-4759-bef3-614835b348b2" } - } + }, + "private": true }, "orange-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1217,7 +1298,8 @@ "value": "rgb(74, 111, 195)", "uuid": "69637678-cb68-46f1-9353-1c7d0f86e51e" } - } + }, + "private": true }, "orange-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1237,7 +1319,8 @@ "value": "rgb(61, 94, 165)", "uuid": "bc744bfa-dd64-4660-b67c-105f07e66644" } - } + }, + "private": true }, "orange-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1257,7 +1340,8 @@ "value": "rgb(52, 79, 140)", "uuid": "7aea0d8d-0fb0-47c1-ae6a-97510159359b" } - } + }, + "private": true }, "orange-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1277,7 +1361,8 @@ "value": "rgb(42, 65, 114)", "uuid": "269da724-5ec7-4ceb-991d-1e83495cfaed" } - } + }, + "private": true }, "orange-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1297,7 +1382,8 @@ "value": "rgb(34, 51, 91)", "uuid": "c1389efc-8e68-4e2d-94b1-17e193264be7" } - } + }, + "private": true }, "orange-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1317,7 +1403,8 @@ "value": "rgb(25, 39, 69)", "uuid": "0d6ed0c9-b185-4656-9985-04904a39f5e6" } - } + }, + "private": true }, "orange-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1337,7 +1424,8 @@ "value": "rgb(18, 27, 48)", "uuid": "ea973b33-e10f-44b6-a621-92c752edb8af" } - } + }, + "private": true }, "orange-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1357,7 +1445,8 @@ "value": "rgb(8, 12, 22)", "uuid": "c93608b1-700d-496c-90c4-298870776956" } - } + }, + "private": true }, "yellow-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1377,7 +1466,8 @@ "value": "rgb(246, 248, 252)", "uuid": "be46f4fb-64d6-4e04-abd1-1f87c634d272" } - } + }, + "private": true }, "yellow-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1397,7 +1487,8 @@ "value": "rgb(235, 239, 248)", "uuid": "2e4d1e66-b660-4e99-8f01-ff9964aa19d8" } - } + }, + "private": true }, "yellow-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1417,7 +1508,8 @@ "value": "rgb(216, 224, 242)", "uuid": "6547eb52-a3a5-4004-8125-df92fed7a062" } - } + }, + "private": true }, "yellow-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1437,7 +1529,8 @@ "value": "rgb(192, 205, 234)", "uuid": "2c6515da-f97b-4961-93cf-5b6c668fc0fc" } - } + }, + "private": true }, "yellow-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1457,7 +1550,8 @@ "value": "rgb(164, 183, 225)", "uuid": "8e450204-2aa5-4cb2-959b-8fc28f7f55bf" } - } + }, + "private": true }, "yellow-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1477,7 +1571,8 @@ "value": "rgb(135, 160, 215)", "uuid": "dfdf38c7-1e23-44a8-8a62-a5f6c3a341bf" } - } + }, + "private": true }, "yellow-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1497,7 +1592,8 @@ "value": "rgb(113, 142, 208)", "uuid": "69c7c213-9a1c-4cd2-ac90-2142aa955e00" } - } + }, + "private": true }, "yellow-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1517,7 +1613,8 @@ "value": "rgb(93, 127, 201)", "uuid": "9ebe0ca0-5580-4083-899a-ba4a4638254d" } - } + }, + "private": true }, "yellow-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1537,7 +1634,8 @@ "value": "rgb(74, 111, 195)", "uuid": "a9e4cb0b-80af-417f-b8d5-b1a7aefa15e5" } - } + }, + "private": true }, "yellow-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1557,7 +1655,8 @@ "value": "rgb(61, 94, 165)", "uuid": "7e7a2c49-bf61-4402-b85b-bf4df9ca8ff0" } - } + }, + "private": true }, "yellow-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1577,7 +1676,8 @@ "value": "rgb(52, 79, 140)", "uuid": "b54bc7bb-2347-4265-ba88-8af7fa420bdf" } - } + }, + "private": true }, "yellow-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1597,7 +1697,8 @@ "value": "rgb(42, 65, 114)", "uuid": "2e92e2de-12fa-45d3-be1d-5d875311bf1e" } - } + }, + "private": true }, "yellow-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1617,7 +1718,8 @@ "value": "rgb(34, 51, 91)", "uuid": "21c27c6d-f054-48b4-abb8-5b0907e238e2" } - } + }, + "private": true }, "yellow-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1637,7 +1739,8 @@ "value": "rgb(25, 39, 69)", "uuid": "e0d95ec7-193d-40d1-9bd9-e68ff27c0275" } - } + }, + "private": true }, "yellow-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1657,7 +1760,8 @@ "value": "rgb(18, 27, 48)", "uuid": "8be0ad1a-0cdf-409d-953f-0a203282e1d9" } - } + }, + "private": true }, "yellow-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1677,7 +1781,8 @@ "value": "rgb(8, 12, 22)", "uuid": "15f47c52-fa9c-4982-ad9c-684024a9a667" } - } + }, + "private": true }, "chartreuse-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1697,7 +1802,8 @@ "value": "rgb(246, 248, 252)", "uuid": "cc59e104-9997-4ed2-a29e-0af0b1a04b67" } - } + }, + "private": true }, "chartreuse-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1717,7 +1823,8 @@ "value": "rgb(235, 239, 248)", "uuid": "838a5de8-2ec7-4814-8ba9-eaa4b0ad8e55" } - } + }, + "private": true }, "chartreuse-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1737,7 +1844,8 @@ "value": "rgb(216, 224, 242)", "uuid": "bbb32db5-4835-4520-8bb1-ef2c8916c604" } - } + }, + "private": true }, "chartreuse-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1757,7 +1865,8 @@ "value": "rgb(192, 205, 234)", "uuid": "eb857d3b-1956-4870-98cb-eaaffffaed85" } - } + }, + "private": true }, "chartreuse-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1777,7 +1886,8 @@ "value": "rgb(164, 183, 225)", "uuid": "7bffe928-4940-41b1-a9d4-3cbee27cb472" } - } + }, + "private": true }, "chartreuse-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1797,7 +1907,8 @@ "value": "rgb(135, 160, 215)", "uuid": "788108ff-5238-4a75-8936-092df93a3fd0" } - } + }, + "private": true }, "chartreuse-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1817,7 +1928,8 @@ "value": "rgb(113, 142, 208)", "uuid": "0386fb0b-3653-4015-a3a1-cbf047435f0f" } - } + }, + "private": true }, "chartreuse-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1837,7 +1949,8 @@ "value": "rgb(93, 127, 201)", "uuid": "c8046b7e-506c-47b7-8105-4d7e805f6b92" } - } + }, + "private": true }, "chartreuse-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1857,7 +1970,8 @@ "value": "rgb(74, 111, 195)", "uuid": "5f1f16c2-d562-4dd8-9b96-9d19b9a88093" } - } + }, + "private": true }, "chartreuse-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1877,7 +1991,8 @@ "value": "rgb(61, 94, 165)", "uuid": "9a6983b0-a2ba-4633-a618-f3b4ac8f05c6" } - } + }, + "private": true }, "chartreuse-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1897,7 +2012,8 @@ "value": "rgb(52, 79, 140)", "uuid": "8e44257e-ec8e-4459-863e-0bbbab65f6e0" } - } + }, + "private": true }, "chartreuse-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1917,7 +2033,8 @@ "value": "rgb(42, 65, 114)", "uuid": "9af36936-6d05-4ba4-8beb-9b65bafb9277" } - } + }, + "private": true }, "chartreuse-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1937,7 +2054,8 @@ "value": "rgb(34, 51, 91)", "uuid": "acb36528-7ad1-497c-baf7-c53171ce4112" } - } + }, + "private": true }, "chartreuse-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1957,7 +2075,8 @@ "value": "rgb(25, 39, 69)", "uuid": "485b7081-a921-42ee-b781-8a99bfeb84fa" } - } + }, + "private": true }, "chartreuse-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1977,7 +2096,8 @@ "value": "rgb(18, 27, 48)", "uuid": "75e5c281-4c83-4ffe-a1de-aedfa65be894" } - } + }, + "private": true }, "chartreuse-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -1997,7 +2117,8 @@ "value": "rgb(8, 12, 22)", "uuid": "a8d9965e-14d9-4015-9a6f-421400c6d011" } - } + }, + "private": true }, "celery-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2017,7 +2138,8 @@ "value": "rgb(246, 248, 252)", "uuid": "a52ac86a-8627-483b-b747-6e8aa5fa7249" } - } + }, + "private": true }, "celery-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2037,7 +2159,8 @@ "value": "rgb(235, 239, 248)", "uuid": "a83229ca-de1f-4fdb-a72b-b8a3498a31bb" } - } + }, + "private": true }, "celery-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2057,7 +2180,8 @@ "value": "rgb(216, 224, 242)", "uuid": "5b271002-0fe2-4407-be21-7c09646a2303" } - } + }, + "private": true }, "celery-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2077,7 +2201,8 @@ "value": "rgb(192, 205, 234)", "uuid": "813b3e86-659b-48ee-b88d-122c13fa96e8" } - } + }, + "private": true }, "celery-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2097,7 +2222,8 @@ "value": "rgb(164, 183, 225)", "uuid": "13e77335-22c0-470a-a5e5-da6363f622e0" } - } + }, + "private": true }, "celery-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2117,7 +2243,8 @@ "value": "rgb(135, 160, 215)", "uuid": "a52a4fbf-dc30-4c09-b1d8-b25bcead712c" } - } + }, + "private": true }, "celery-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2137,7 +2264,8 @@ "value": "rgb(113, 142, 208)", "uuid": "3e9a8018-a0bf-4562-867d-555c75c08d9f" } - } + }, + "private": true }, "celery-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2157,7 +2285,8 @@ "value": "rgb(93, 127, 201)", "uuid": "7a5096e0-6845-4ae5-bab4-d958c7e3dadb" } - } + }, + "private": true }, "celery-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2177,7 +2306,8 @@ "value": "rgb(74, 111, 195)", "uuid": "10c7c9b0-0d15-43ae-bf6f-84384783a9aa" } - } + }, + "private": true }, "celery-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2197,7 +2327,8 @@ "value": "rgb(61, 94, 165)", "uuid": "085d2bcb-85b1-4b55-842b-9559c457a1a0" } - } + }, + "private": true }, "celery-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2217,7 +2348,8 @@ "value": "rgb(52, 79, 140)", "uuid": "5c9ac732-7e1a-448c-b338-18d3b265d5d1" } - } + }, + "private": true }, "celery-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2237,7 +2369,8 @@ "value": "rgb(42, 65, 114)", "uuid": "865fc403-cab2-4e38-a181-e5e10523e04d" } - } + }, + "private": true }, "celery-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2257,7 +2390,8 @@ "value": "rgb(34, 51, 91)", "uuid": "cc88021a-ce1a-4f69-9208-d1b897a1d71b" } - } + }, + "private": true }, "celery-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2277,7 +2411,8 @@ "value": "rgb(25, 39, 69)", "uuid": "0fd51556-72b0-48ea-86f2-435bf64de316" } - } + }, + "private": true }, "celery-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2297,7 +2432,8 @@ "value": "rgb(18, 27, 48)", "uuid": "fe522078-7e21-447e-bd4f-e5f2ea6845d9" } - } + }, + "private": true }, "celery-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2317,7 +2453,8 @@ "value": "rgb(8, 12, 22)", "uuid": "99fb92f6-7186-4432-99ec-d5fa5b35c5be" } - } + }, + "private": true }, "green-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2337,7 +2474,8 @@ "value": "rgb(246, 248, 252)", "uuid": "f0702380-ed81-4f16-844c-b4c3b797161c" } - } + }, + "private": true }, "green-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2357,7 +2495,8 @@ "value": "rgb(235, 239, 248)", "uuid": "b5d964d5-e68d-44c6-880f-2e23d2bae7ec" } - } + }, + "private": true }, "green-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2377,7 +2516,8 @@ "value": "rgb(216, 224, 242)", "uuid": "1aaecce9-f58c-44a5-9bb9-f62172ebcd21" } - } + }, + "private": true }, "green-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2397,7 +2537,8 @@ "value": "rgb(192, 205, 234)", "uuid": "8143aced-4012-4dc3-a132-2b5701e09a52" } - } + }, + "private": true }, "green-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2417,7 +2558,8 @@ "value": "rgb(164, 183, 225)", "uuid": "9418d6a8-69a1-49a4-ac3d-d81c81a633be" } - } + }, + "private": true }, "green-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2437,7 +2579,8 @@ "value": "rgb(135, 160, 215)", "uuid": "57d2a064-3028-4225-82c4-e200e4abc6a3" } - } + }, + "private": true }, "green-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2457,7 +2600,8 @@ "value": "rgb(113, 142, 208)", "uuid": "fa823d25-6075-455b-a6f4-18de77a01f06" } - } + }, + "private": true }, "green-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2477,7 +2621,8 @@ "value": "rgb(93, 127, 201)", "uuid": "12755af6-ac1f-441a-80fb-07c3d61dc6c9" } - } + }, + "private": true }, "green-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2497,7 +2642,8 @@ "value": "rgb(74, 111, 195)", "uuid": "81174c05-0b05-4030-a8b7-e2fc13533954" } - } + }, + "private": true }, "green-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2517,7 +2663,8 @@ "value": "rgb(61, 94, 165)", "uuid": "a1c41ddd-5c54-4dce-bea3-51768998639c" } - } + }, + "private": true }, "green-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2537,7 +2684,8 @@ "value": "rgb(52, 79, 140)", "uuid": "7f426d3d-5ff9-4ee2-b0e1-07282fe389df" } - } + }, + "private": true }, "green-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2557,7 +2705,8 @@ "value": "rgb(42, 65, 114)", "uuid": "515298b6-f629-4c08-9e0f-18a5ba8fe20f" } - } + }, + "private": true }, "green-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2577,7 +2726,8 @@ "value": "rgb(34, 51, 91)", "uuid": "ce02582f-b327-4367-9f66-92dcc67fd072" } - } + }, + "private": true }, "green-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2597,7 +2747,8 @@ "value": "rgb(25, 39, 69)", "uuid": "51b8502d-e045-4b40-93e1-e2b49f6bf90c" } - } + }, + "private": true }, "green-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2617,7 +2768,8 @@ "value": "rgb(18, 27, 48)", "uuid": "490cf084-b56e-4464-8e38-1bb15458213e" } - } + }, + "private": true }, "green-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2637,7 +2789,8 @@ "value": "rgb(8, 12, 22)", "uuid": "96e3e83b-1878-460e-9bc2-aa25a36ff887" } - } + }, + "private": true }, "seafoam-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2657,7 +2810,8 @@ "value": "rgb(246, 248, 252)", "uuid": "3c862893-b1e9-45df-99da-33906686d3c1" } - } + }, + "private": true }, "seafoam-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2677,7 +2831,8 @@ "value": "rgb(235, 239, 248)", "uuid": "4115d94a-b52e-4cc8-8067-cd9184030ffe" } - } + }, + "private": true }, "seafoam-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2697,7 +2852,8 @@ "value": "rgb(216, 224, 242)", "uuid": "56c4f393-086d-41d9-87d0-babaea86a2a4" } - } + }, + "private": true }, "seafoam-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2717,7 +2873,8 @@ "value": "rgb(192, 205, 234)", "uuid": "21467045-093e-461e-86ac-dc65b657bf50" } - } + }, + "private": true }, "seafoam-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2737,7 +2894,8 @@ "value": "rgb(164, 183, 225)", "uuid": "50117040-ca43-4b90-832d-7e4c2d83c31c" } - } + }, + "private": true }, "seafoam-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2757,7 +2915,8 @@ "value": "rgb(135, 160, 215)", "uuid": "0a450ad0-dd5e-414c-9b76-dac4ca20a1b8" } - } + }, + "private": true }, "seafoam-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2777,7 +2936,8 @@ "value": "rgb(113, 142, 208)", "uuid": "c26d7e9d-fef9-4aa9-991b-bbac307e3c7a" } - } + }, + "private": true }, "seafoam-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2797,7 +2957,8 @@ "value": "rgb(93, 127, 201)", "uuid": "7a88f0bf-59cb-4af3-9542-f7648fecd50e" } - } + }, + "private": true }, "seafoam-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2817,7 +2978,8 @@ "value": "rgb(74, 111, 195)", "uuid": "8e444b02-f977-4948-b862-63275642ad58" } - } + }, + "private": true }, "seafoam-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2837,7 +2999,8 @@ "value": "rgb(61, 94, 165)", "uuid": "72873817-3cf5-4a14-aa93-1f86b4c6f7f2" } - } + }, + "private": true }, "seafoam-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2857,7 +3020,8 @@ "value": "rgb(52, 79, 140)", "uuid": "fb3f4cf4-e032-4cc1-94b1-d122f0d695ac" } - } + }, + "private": true }, "seafoam-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2877,7 +3041,8 @@ "value": "rgb(42, 65, 114)", "uuid": "8a7fb1d7-90ca-41d1-a04c-84bd1d70d9ec" } - } + }, + "private": true }, "seafoam-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2897,7 +3062,8 @@ "value": "rgb(34, 51, 91)", "uuid": "3e88a833-9ef2-4f37-86a1-041e76850e1e" } - } + }, + "private": true }, "seafoam-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2917,7 +3083,8 @@ "value": "rgb(25, 39, 69)", "uuid": "badc0d78-4232-44f0-8911-e9e2f0eab94f" } - } + }, + "private": true }, "seafoam-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2937,7 +3104,8 @@ "value": "rgb(18, 27, 48)", "uuid": "fd0d5cda-892b-4628-a125-353dcd123987" } - } + }, + "private": true }, "seafoam-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2957,7 +3125,8 @@ "value": "rgb(8, 12, 22)", "uuid": "6685e580-982d-4f86-800a-19797f1675af" } - } + }, + "private": true }, "cyan-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2977,7 +3146,8 @@ "value": "rgb(246, 248, 252)", "uuid": "28fe7c7b-b43c-4650-9155-5b0f5ec27a09" } - } + }, + "private": true }, "cyan-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -2997,7 +3167,8 @@ "value": "rgb(235, 239, 248)", "uuid": "b6b314ea-f9ba-4f49-a115-f4177ecb7bbc" } - } + }, + "private": true }, "cyan-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3017,7 +3188,8 @@ "value": "rgb(216, 224, 242)", "uuid": "f7d51b4b-6c95-4271-a51e-4ad5a1660591" } - } + }, + "private": true }, "cyan-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3037,7 +3209,8 @@ "value": "rgb(192, 205, 234)", "uuid": "6c2a20c7-e453-4401-a0b4-8e0d1d7edd7e" } - } + }, + "private": true }, "cyan-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3057,7 +3230,8 @@ "value": "rgb(164, 183, 225)", "uuid": "39f96e8f-c9c8-4158-8da9-6825cd084fc3" } - } + }, + "private": true }, "cyan-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3077,7 +3251,8 @@ "value": "rgb(135, 160, 215)", "uuid": "6f67dfce-62d0-4147-aac6-33873a325cd3" } - } + }, + "private": true }, "cyan-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3097,7 +3272,8 @@ "value": "rgb(113, 142, 208)", "uuid": "08173787-f50d-48a7-badc-141a9e7b7981" } - } + }, + "private": true }, "cyan-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3117,7 +3293,8 @@ "value": "rgb(93, 127, 201)", "uuid": "a006424a-ad2b-4091-a38d-b4af80ddc03e" } - } + }, + "private": true }, "cyan-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3137,7 +3314,8 @@ "value": "rgb(74, 111, 195)", "uuid": "03de1fef-9ae1-457d-917b-6f22fb545d00" } - } + }, + "private": true }, "cyan-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3157,7 +3335,8 @@ "value": "rgb(61, 94, 165)", "uuid": "8dd5e110-aa2f-47b2-aa21-30bc4241db86" } - } + }, + "private": true }, "cyan-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3177,7 +3356,8 @@ "value": "rgb(52, 79, 140)", "uuid": "4698ba84-dab0-4b6b-a2b1-e289261aa7b4" } - } + }, + "private": true }, "cyan-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3197,7 +3377,8 @@ "value": "rgb(42, 65, 114)", "uuid": "8e12e7fe-546a-4e8c-92eb-56673446b1bb" } - } + }, + "private": true }, "cyan-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3217,7 +3398,8 @@ "value": "rgb(34, 51, 91)", "uuid": "958d5c96-6b57-47c2-a9a5-f589c054aa13" } - } + }, + "private": true }, "cyan-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3237,7 +3419,8 @@ "value": "rgb(25, 39, 69)", "uuid": "8a2d9c8d-a95a-48ac-b6eb-0ca1d5e69bd7" } - } + }, + "private": true }, "cyan-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3257,7 +3440,8 @@ "value": "rgb(18, 27, 48)", "uuid": "6aa5f844-ba8d-40a3-86ec-109e9430ace5" } - } + }, + "private": true }, "cyan-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3277,7 +3461,8 @@ "value": "rgb(8, 12, 22)", "uuid": "9bf84aeb-6822-40c9-b027-8db8a49fd54b" } - } + }, + "private": true }, "indigo-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3297,7 +3482,8 @@ "value": "rgb(246, 248, 252)", "uuid": "37af1036-6ba7-4eac-b1a5-9442ff55036f" } - } + }, + "private": true }, "indigo-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3317,7 +3503,8 @@ "value": "rgb(235, 239, 248)", "uuid": "401d532f-8374-4e5a-99c5-51c4ec9bc344" } - } + }, + "private": true }, "indigo-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3337,7 +3524,8 @@ "value": "rgb(216, 224, 242)", "uuid": "fb607a6f-2d62-4163-a6a3-068b80a084da" } - } + }, + "private": true }, "indigo-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3357,7 +3545,8 @@ "value": "rgb(192, 205, 234)", "uuid": "5cd6358b-bdc0-488e-a5fe-089a769b6bfb" } - } + }, + "private": true }, "indigo-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3377,7 +3566,8 @@ "value": "rgb(164, 183, 225)", "uuid": "a9e657da-8f33-425a-b2ab-dca9d1337bf3" } - } + }, + "private": true }, "indigo-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3397,7 +3587,8 @@ "value": "rgb(135, 160, 215)", "uuid": "233a1b84-3ab6-4899-9b41-d9177356c175" } - } + }, + "private": true }, "indigo-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3417,7 +3608,8 @@ "value": "rgb(113, 142, 208)", "uuid": "feeeaa05-5c75-4a06-b5be-ed8bf3ecd773" } - } + }, + "private": true }, "indigo-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3437,7 +3629,8 @@ "value": "rgb(93, 127, 201)", "uuid": "63e9a41c-ee85-43c1-b550-3ca8ce7c0986" } - } + }, + "private": true }, "indigo-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3457,7 +3650,8 @@ "value": "rgb(74, 111, 195)", "uuid": "39f6823f-ca35-413c-ad64-31529710cf3c" } - } + }, + "private": true }, "indigo-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3477,7 +3671,8 @@ "value": "rgb(61, 94, 165)", "uuid": "ef5ddbb5-3e37-4806-b863-9369294dc07a" } - } + }, + "private": true }, "indigo-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3497,7 +3692,8 @@ "value": "rgb(52, 79, 140)", "uuid": "f4c7c283-b412-4acc-b2f5-0339f946ff3d" } - } + }, + "private": true }, "indigo-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3517,7 +3713,8 @@ "value": "rgb(42, 65, 114)", "uuid": "91d7c77f-6cb0-4f1d-92ea-03965a296cc6" } - } + }, + "private": true }, "indigo-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3537,7 +3734,8 @@ "value": "rgb(34, 51, 91)", "uuid": "a274d960-197e-4045-99d3-9919cfa90e6e" } - } + }, + "private": true }, "indigo-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3557,7 +3755,8 @@ "value": "rgb(25, 39, 69)", "uuid": "46fa9ff8-5758-41c3-b0aa-fefd075eb739" } - } + }, + "private": true }, "indigo-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3577,7 +3776,8 @@ "value": "rgb(18, 27, 48)", "uuid": "72c07c8d-19f8-44de-8e73-98997502cf86" } - } + }, + "private": true }, "indigo-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3597,7 +3797,8 @@ "value": "rgb(8, 12, 22)", "uuid": "2f76990f-4bfd-4b4d-b063-aa374ea9df83" } - } + }, + "private": true }, "purple-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3617,7 +3818,8 @@ "value": "rgb(246, 248, 252)", "uuid": "8898f93b-9e3f-4143-bb78-fd0afd4c4ee0" } - } + }, + "private": true }, "purple-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3637,7 +3839,8 @@ "value": "rgb(235, 239, 248)", "uuid": "0980d65e-bf37-40c7-a59c-5a0c80795211" } - } + }, + "private": true }, "purple-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3657,7 +3860,8 @@ "value": "rgb(216, 224, 242)", "uuid": "2f450b24-782a-428f-80ff-9d762e22e44c" } - } + }, + "private": true }, "purple-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3677,7 +3881,8 @@ "value": "rgb(192, 205, 234)", "uuid": "7faf15d0-6890-4cde-919e-1b720d5bfc0a" } - } + }, + "private": true }, "purple-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3697,7 +3902,8 @@ "value": "rgb(164, 183, 225)", "uuid": "2473ee91-ecb3-414d-ac05-8b040aee3283" } - } + }, + "private": true }, "purple-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3717,7 +3923,8 @@ "value": "rgb(135, 160, 215)", "uuid": "78f628a8-2d9f-4532-8502-bf389ec8ae7d" } - } + }, + "private": true }, "purple-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3737,7 +3944,8 @@ "value": "rgb(113, 142, 208)", "uuid": "8cdcca2d-71d7-4a08-b7a0-072e954980fe" } - } + }, + "private": true }, "purple-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3757,7 +3965,8 @@ "value": "rgb(93, 127, 201)", "uuid": "32ee4548-9a32-476b-a245-f0af6c701fdb" } - } + }, + "private": true }, "purple-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3777,7 +3986,8 @@ "value": "rgb(74, 111, 195)", "uuid": "1f898f83-cd72-4bf1-bd66-ee1486a0f70d" } - } + }, + "private": true }, "purple-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3797,7 +4007,8 @@ "value": "rgb(61, 94, 165)", "uuid": "2287f92f-6851-4f5f-b48c-3a43067a7a08" } - } + }, + "private": true }, "purple-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3817,7 +4028,8 @@ "value": "rgb(52, 79, 140)", "uuid": "ed68aade-7d0a-4029-bf17-9a3b88f08ceb" } - } + }, + "private": true }, "purple-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3837,7 +4049,8 @@ "value": "rgb(42, 65, 114)", "uuid": "aa502b60-e84f-4a35-910f-de28016d44fc" } - } + }, + "private": true }, "purple-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3857,7 +4070,8 @@ "value": "rgb(34, 51, 91)", "uuid": "eeb7a71b-1a59-4629-a1fd-4fe9bae6d3db" } - } + }, + "private": true }, "purple-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3877,7 +4091,8 @@ "value": "rgb(25, 39, 69)", "uuid": "10c0a8e7-8496-4421-bfa0-cc41af6271d7" } - } + }, + "private": true }, "purple-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3897,7 +4112,8 @@ "value": "rgb(18, 27, 48)", "uuid": "05c1a879-e716-4f67-97ab-7f524b713815" } - } + }, + "private": true }, "purple-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3917,7 +4133,8 @@ "value": "rgb(8, 12, 22)", "uuid": "1d742643-035d-4966-aba9-2be2bbfb793e" } - } + }, + "private": true }, "fuchsia-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3937,7 +4154,8 @@ "value": "rgb(246, 248, 252)", "uuid": "c826bbb3-badb-48a1-becf-86f5f395eef7" } - } + }, + "private": true }, "fuchsia-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3957,7 +4175,8 @@ "value": "rgb(235, 239, 248)", "uuid": "eed8370d-a367-4333-ba69-56843a7657ba" } - } + }, + "private": true }, "fuchsia-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3977,7 +4196,8 @@ "value": "rgb(216, 224, 242)", "uuid": "7b52a8c6-67b3-4d8c-b506-aa5eeababdfb" } - } + }, + "private": true }, "fuchsia-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -3997,7 +4217,8 @@ "value": "rgb(192, 205, 234)", "uuid": "670788fe-2614-4673-bda2-681622680109" } - } + }, + "private": true }, "fuchsia-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4017,7 +4238,8 @@ "value": "rgb(164, 183, 225)", "uuid": "906889fa-ad69-4129-978c-23ea12d2b362" } - } + }, + "private": true }, "fuchsia-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4037,7 +4259,8 @@ "value": "rgb(135, 160, 215)", "uuid": "0b09ae9a-7aa8-4b63-b6c4-4317b03dc3ff" } - } + }, + "private": true }, "fuchsia-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4057,7 +4280,8 @@ "value": "rgb(113, 142, 208)", "uuid": "02b7bf12-ff14-4829-aa9b-52c3033b0652" } - } + }, + "private": true }, "fuchsia-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4077,7 +4301,8 @@ "value": "rgb(93, 127, 201)", "uuid": "a6344998-b1e8-4651-a4c9-b1b2aa22d48b" } - } + }, + "private": true }, "fuchsia-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4097,7 +4322,8 @@ "value": "rgb(74, 111, 195)", "uuid": "2a29020c-1524-4b9b-a249-25b9927d4a54" } - } + }, + "private": true }, "fuchsia-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4117,7 +4343,8 @@ "value": "rgb(61, 94, 165)", "uuid": "7606b799-458c-466e-96c6-a0a7e949a83c" } - } + }, + "private": true }, "fuchsia-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4137,7 +4364,8 @@ "value": "rgb(52, 79, 140)", "uuid": "aa82e21e-e5a2-4bcd-a63d-a2d76c467ac7" } - } + }, + "private": true }, "fuchsia-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4157,7 +4385,8 @@ "value": "rgb(42, 65, 114)", "uuid": "bdb3a49e-331e-44b9-96e2-4f1dccdae565" } - } + }, + "private": true }, "fuchsia-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4177,7 +4406,8 @@ "value": "rgb(34, 51, 91)", "uuid": "c53a7f46-12aa-48c9-afdf-20e7a26bbb09" } - } + }, + "private": true }, "fuchsia-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4197,7 +4427,8 @@ "value": "rgb(25, 39, 69)", "uuid": "ee6b1d77-41ce-4c87-9d95-098f5fc66da9" } - } + }, + "private": true }, "fuchsia-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4217,7 +4448,8 @@ "value": "rgb(18, 27, 48)", "uuid": "a8afc139-5eeb-4b56-9acd-62433f802563" } - } + }, + "private": true }, "fuchsia-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4237,7 +4469,8 @@ "value": "rgb(8, 12, 22)", "uuid": "cd37d695-d1b0-4322-92f7-9bc0a347aa90" } - } + }, + "private": true }, "magenta-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4257,7 +4490,8 @@ "value": "rgb(246, 248, 252)", "uuid": "3f70bddc-f8e3-41a1-a68e-9500ac9a2474" } - } + }, + "private": true }, "magenta-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4277,7 +4511,8 @@ "value": "rgb(235, 239, 248)", "uuid": "074993b8-2652-448c-a6ca-b18a39176ed9" } - } + }, + "private": true }, "magenta-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4297,7 +4532,8 @@ "value": "rgb(216, 224, 242)", "uuid": "04b09fbb-08cb-4fe3-a287-d7de2bf39312" } - } + }, + "private": true }, "magenta-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4317,7 +4553,8 @@ "value": "rgb(192, 205, 234)", "uuid": "41d578d1-c853-4360-95e9-b94ad61e7786" } - } + }, + "private": true }, "magenta-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4337,7 +4574,8 @@ "value": "rgb(164, 183, 225)", "uuid": "0734c859-3e4c-4974-98e2-700c49c69bcd" } - } + }, + "private": true }, "magenta-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4357,7 +4595,8 @@ "value": "rgb(135, 160, 215)", "uuid": "e70126f5-e8d6-47e2-9737-0dbb17655b1f" } - } + }, + "private": true }, "magenta-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4377,7 +4616,8 @@ "value": "rgb(113, 142, 208)", "uuid": "e5ffefaa-72d6-444d-8f9f-3fb08a9f2480" } - } + }, + "private": true }, "magenta-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4397,7 +4637,8 @@ "value": "rgb(93, 127, 201)", "uuid": "6dca10b8-2ed2-463c-82f5-fad66a833675" } - } + }, + "private": true }, "magenta-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4417,7 +4658,8 @@ "value": "rgb(74, 111, 195)", "uuid": "991792f1-03ed-494b-ada7-1beb965e39c9" } - } + }, + "private": true }, "magenta-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4437,7 +4679,8 @@ "value": "rgb(61, 94, 165)", "uuid": "8a8e447b-6b31-4758-b59e-51acad7c9210" } - } + }, + "private": true }, "magenta-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4457,7 +4700,8 @@ "value": "rgb(52, 79, 140)", "uuid": "9784741b-612e-4986-952b-a102c04e2afd" } - } + }, + "private": true }, "magenta-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4477,7 +4721,8 @@ "value": "rgb(42, 65, 114)", "uuid": "3c632a35-bf86-4182-9475-84854a20f15a" } - } + }, + "private": true }, "magenta-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4497,7 +4742,8 @@ "value": "rgb(34, 51, 91)", "uuid": "030c6431-3ea5-429b-a492-1a01dd396d44" } - } + }, + "private": true }, "magenta-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4517,7 +4763,8 @@ "value": "rgb(25, 39, 69)", "uuid": "b6dd1b22-5f8f-46d8-924e-4ce02ad5a99f" } - } + }, + "private": true }, "magenta-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4537,7 +4784,8 @@ "value": "rgb(18, 27, 48)", "uuid": "950ba124-e6b5-47b6-b1b8-31960f7cc380" } - } + }, + "private": true }, "magenta-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4557,7 +4805,8 @@ "value": "rgb(8, 12, 22)", "uuid": "2fc90f48-a54e-4aae-9b9f-aa3c4d7e55de" } - } + }, + "private": true }, "pink-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4577,7 +4826,8 @@ "value": "rgb(246, 248, 252)", "uuid": "4c01ddf8-d689-4433-826c-75b33bc2214d" } - } + }, + "private": true }, "pink-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4597,7 +4847,8 @@ "value": "rgb(235, 239, 248)", "uuid": "d4e972fb-fbd5-4b37-bd20-9487ed47d243" } - } + }, + "private": true }, "pink-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4617,7 +4868,8 @@ "value": "rgb(216, 224, 242)", "uuid": "83e9b8e8-ff2a-49fc-9ac8-349c694c1aec" } - } + }, + "private": true }, "pink-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4637,7 +4889,8 @@ "value": "rgb(192, 205, 234)", "uuid": "ba838eaa-0dc0-4bbd-be25-300e8bd89272" } - } + }, + "private": true }, "pink-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4657,7 +4910,8 @@ "value": "rgb(164, 183, 225)", "uuid": "356a4b99-8ffc-4d11-b56e-a88c5e70194d" } - } + }, + "private": true }, "pink-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4677,7 +4931,8 @@ "value": "rgb(135, 160, 215)", "uuid": "527b5dcd-0896-4dbc-82f9-866297227eb0" } - } + }, + "private": true }, "pink-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4697,7 +4952,8 @@ "value": "rgb(113, 142, 208)", "uuid": "873c22cd-488b-45d4-a79d-0473fc4f3c7f" } - } + }, + "private": true }, "pink-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4717,7 +4973,8 @@ "value": "rgb(93, 127, 201)", "uuid": "b50fbb92-1897-469d-a867-d9f6e5070c2e" } - } + }, + "private": true }, "pink-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4737,7 +4994,8 @@ "value": "rgb(74, 111, 195)", "uuid": "85c314fe-cdfe-4542-856f-f58acfad1aee" } - } + }, + "private": true }, "pink-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4757,7 +5015,8 @@ "value": "rgb(61, 94, 165)", "uuid": "deac6200-0e75-47d5-9073-3aaa390f1cd1" } - } + }, + "private": true }, "pink-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4777,7 +5036,8 @@ "value": "rgb(52, 79, 140)", "uuid": "b9911ab3-fa6b-42e7-9247-c341b68ee151" } - } + }, + "private": true }, "pink-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4797,7 +5057,8 @@ "value": "rgb(42, 65, 114)", "uuid": "4c73d77d-95e3-4311-b644-2b55ad4552cf" } - } + }, + "private": true }, "pink-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4817,7 +5078,8 @@ "value": "rgb(34, 51, 91)", "uuid": "efa5d789-8e54-493d-9787-8e5dce4180a0" } - } + }, + "private": true }, "pink-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4837,7 +5099,8 @@ "value": "rgb(25, 39, 69)", "uuid": "4d10b352-648d-404a-a863-3fd3308b2696" } - } + }, + "private": true }, "pink-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4857,7 +5120,8 @@ "value": "rgb(18, 27, 48)", "uuid": "13813529-7eb8-4171-a40b-a719c430299b" } - } + }, + "private": true }, "pink-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4877,7 +5141,8 @@ "value": "rgb(8, 12, 22)", "uuid": "44800628-6a86-49de-b44f-256ca36c4127" } - } + }, + "private": true }, "turquoise-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4897,7 +5162,8 @@ "value": "rgb(246, 248, 252)", "uuid": "094b2708-cb1f-4936-96ee-503cf113ab7a" } - } + }, + "private": true }, "turquoise-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4917,7 +5183,8 @@ "value": "rgb(235, 239, 248)", "uuid": "e5a0aca5-4d22-4d1a-9732-6e0e2c98e72d" } - } + }, + "private": true }, "turquoise-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4937,7 +5204,8 @@ "value": "rgb(216, 224, 242)", "uuid": "c4877ffd-985b-4260-b1c3-3ac37392315a" } - } + }, + "private": true }, "turquoise-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4957,7 +5225,8 @@ "value": "rgb(192, 205, 234)", "uuid": "f136369b-3ac7-4041-871e-90c90f3da3a9" } - } + }, + "private": true }, "turquoise-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4977,7 +5246,8 @@ "value": "rgb(164, 183, 225)", "uuid": "4320a8e7-3509-45c6-b133-02bf0e779a42" } - } + }, + "private": true }, "turquoise-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -4997,7 +5267,8 @@ "value": "rgb(135, 160, 215)", "uuid": "1ce42e96-435f-4895-896d-268dcdf16b21" } - } + }, + "private": true }, "turquoise-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5017,7 +5288,8 @@ "value": "rgb(113, 142, 208)", "uuid": "9ffcdab9-e422-4ece-b292-6b8ce227bef8" } - } + }, + "private": true }, "turquoise-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5037,7 +5309,8 @@ "value": "rgb(93, 127, 201)", "uuid": "a6548e62-22e6-4089-b098-0a8bb60676ec" } - } + }, + "private": true }, "turquoise-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5057,7 +5330,8 @@ "value": "rgb(74, 111, 195)", "uuid": "2084f7e5-221c-4a4e-96e0-fa0ff2fa40f1" } - } + }, + "private": true }, "turquoise-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5077,7 +5351,8 @@ "value": "rgb(61, 94, 165)", "uuid": "7c82b1ca-e445-45a0-b7b2-5ed3030e92e7" } - } + }, + "private": true }, "turquoise-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5097,7 +5372,8 @@ "value": "rgb(52, 79, 140)", "uuid": "e3e88d56-d236-41f7-8eaa-3804576b6161" } - } + }, + "private": true }, "turquoise-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5117,7 +5393,8 @@ "value": "rgb(42, 65, 114)", "uuid": "1ca86f12-0424-40b5-a606-912e2fcc5cc1" } - } + }, + "private": true }, "turquoise-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5137,7 +5414,8 @@ "value": "rgb(34, 51, 91)", "uuid": "07b5d5b0-8952-4901-a0e5-227fa3e1aacf" } - } + }, + "private": true }, "turquoise-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5157,7 +5435,8 @@ "value": "rgb(25, 39, 69)", "uuid": "81180029-eec8-4d26-9fe0-3966aa372151" } - } + }, + "private": true }, "turquoise-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5177,7 +5456,8 @@ "value": "rgb(18, 27, 48)", "uuid": "1162302d-4bcf-478a-a95e-660785220434" } - } + }, + "private": true }, "turquoise-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5197,7 +5477,8 @@ "value": "rgb(8, 12, 22)", "uuid": "21be860b-80bb-40a1-9aaf-20a97b2ddc77" } - } + }, + "private": true }, "brown-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5217,7 +5498,8 @@ "value": "rgb(246, 248, 252)", "uuid": "3d64c998-df63-4695-a1d1-00d78ed2097b" } - } + }, + "private": true }, "brown-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5237,7 +5519,8 @@ "value": "rgb(235, 239, 248)", "uuid": "5d0e6309-481d-40f9-81b9-7d0bee9cf794" } - } + }, + "private": true }, "brown-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5257,7 +5540,8 @@ "value": "rgb(216, 224, 242)", "uuid": "e710f0e9-90a7-4ed9-8d2b-6a8c9ed778db" } - } + }, + "private": true }, "brown-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5277,7 +5561,8 @@ "value": "rgb(192, 205, 234)", "uuid": "7a9223ac-0dee-4dd5-8b11-b04815683c6b" } - } + }, + "private": true }, "brown-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5297,7 +5582,8 @@ "value": "rgb(164, 183, 225)", "uuid": "bca8a6a6-557e-4930-b765-0dcc9867c42a" } - } + }, + "private": true }, "brown-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5317,7 +5603,8 @@ "value": "rgb(135, 160, 215)", "uuid": "ef14139b-0550-4a5a-b2f5-eb787bcf406d" } - } + }, + "private": true }, "brown-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5337,7 +5624,8 @@ "value": "rgb(113, 142, 208)", "uuid": "45f999be-146e-4b0f-97de-ef1f7e82d675" } - } + }, + "private": true }, "brown-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5357,7 +5645,8 @@ "value": "rgb(93, 127, 201)", "uuid": "2c0181c8-ef5c-46c8-bc3e-703d08f3692b" } - } + }, + "private": true }, "brown-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5377,7 +5666,8 @@ "value": "rgb(74, 111, 195)", "uuid": "6756882c-f521-49fc-b7c9-3dc8f4d39d5a" } - } + }, + "private": true }, "brown-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5397,7 +5687,8 @@ "value": "rgb(61, 94, 165)", "uuid": "a2a5c52d-7381-47b8-9b67-5d3c86e8ff21" } - } + }, + "private": true }, "brown-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5417,7 +5708,8 @@ "value": "rgb(52, 79, 140)", "uuid": "1c1c2c57-890d-4638-b219-5b5e1953ba57" } - } + }, + "private": true }, "brown-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5437,7 +5729,8 @@ "value": "rgb(42, 65, 114)", "uuid": "df9afc4f-bb87-4dae-b2b6-f7d27a590593" } - } + }, + "private": true }, "brown-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5457,7 +5750,8 @@ "value": "rgb(34, 51, 91)", "uuid": "1e9a6104-d427-4197-8e01-25673c917143" } - } + }, + "private": true }, "brown-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5477,7 +5771,8 @@ "value": "rgb(25, 39, 69)", "uuid": "2ceb2cda-a535-44eb-ae23-b922edcb8bb8" } - } + }, + "private": true }, "brown-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5497,7 +5792,8 @@ "value": "rgb(18, 27, 48)", "uuid": "19c96dc5-7a37-4381-a7e8-ac1c442afda6" } - } + }, + "private": true }, "brown-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5517,7 +5813,8 @@ "value": "rgb(8, 12, 22)", "uuid": "cb18b0b7-7ad5-419f-863c-fdbb05c624c3" } - } + }, + "private": true }, "silver-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5537,7 +5834,8 @@ "value": "rgb(246, 248, 252)", "uuid": "7e0c8012-9ec4-40c3-a572-dd551627e54f" } - } + }, + "private": true }, "silver-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5557,7 +5855,8 @@ "value": "rgb(235, 239, 248)", "uuid": "240ade94-eb1b-4ddd-b667-7c05af2b196a" } - } + }, + "private": true }, "silver-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5577,7 +5876,8 @@ "value": "rgb(216, 224, 242)", "uuid": "da36dc54-21c0-412f-baa1-ae3a2810b926" } - } + }, + "private": true }, "silver-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5597,7 +5897,8 @@ "value": "rgb(192, 205, 234)", "uuid": "a52e646b-54c7-419b-850e-1da7abc74dd3" } - } + }, + "private": true }, "silver-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5617,7 +5918,8 @@ "value": "rgb(164, 183, 225)", "uuid": "696e8452-cd1b-4ab8-b9d6-eb2b76bdf020" } - } + }, + "private": true }, "silver-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5637,7 +5939,8 @@ "value": "rgb(135, 160, 215)", "uuid": "b0f8e027-ba0e-4460-8d45-b0ada27327d9" } - } + }, + "private": true }, "silver-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5657,7 +5960,8 @@ "value": "rgb(113, 142, 208)", "uuid": "907d96cc-375b-49a7-abe0-afb229c98474" } - } + }, + "private": true }, "silver-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5677,7 +5981,8 @@ "value": "rgb(93, 127, 201)", "uuid": "8ed554bc-be40-4ebb-9a83-c85c73c0cb3d" } - } + }, + "private": true }, "silver-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5697,7 +6002,8 @@ "value": "rgb(74, 111, 195)", "uuid": "3f1bbfff-8a14-4984-a725-211aba36fa98" } - } + }, + "private": true }, "silver-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5717,7 +6023,8 @@ "value": "rgb(61, 94, 165)", "uuid": "28a8b564-c9fb-41ab-b989-47516f9c0135" } - } + }, + "private": true }, "silver-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5737,7 +6044,8 @@ "value": "rgb(52, 79, 140)", "uuid": "69a3ff9a-dec9-4a96-b54f-f9ca12568e59" } - } + }, + "private": true }, "silver-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5757,7 +6065,8 @@ "value": "rgb(42, 65, 114)", "uuid": "18013461-754d-434e-8b05-269dd307d45a" } - } + }, + "private": true }, "silver-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5777,7 +6086,8 @@ "value": "rgb(34, 51, 91)", "uuid": "8119e422-4eb8-44fc-bf69-b1f76963afca" } - } + }, + "private": true }, "silver-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5797,7 +6107,8 @@ "value": "rgb(25, 39, 69)", "uuid": "9313f4d5-1105-4cb0-81f4-a8a5109594a0" } - } + }, + "private": true }, "silver-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5817,7 +6128,8 @@ "value": "rgb(18, 27, 48)", "uuid": "dba91bae-1dae-4687-be68-d831a5bd42ba" } - } + }, + "private": true }, "silver-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5837,7 +6149,8 @@ "value": "rgb(8, 12, 22)", "uuid": "cd1b844a-29bf-4643-a246-4f124544e25d" } - } + }, + "private": true }, "cinnamon-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5857,7 +6170,8 @@ "value": "rgb(246, 248, 252)", "uuid": "3c3b2fb7-053d-47ca-86a6-4d1ee07b6f3f" } - } + }, + "private": true }, "cinnamon-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5877,7 +6191,8 @@ "value": "rgb(235, 239, 248)", "uuid": "07d13e6d-0df2-4eee-8550-ef033f954e9e" } - } + }, + "private": true }, "cinnamon-300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5897,7 +6212,8 @@ "value": "rgb(216, 224, 242)", "uuid": "74d44818-bbbd-44a3-b9f0-7131fb036498" } - } + }, + "private": true }, "cinnamon-400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5917,7 +6233,8 @@ "value": "rgb(192, 205, 234)", "uuid": "2a7d78f3-ad8d-4301-96e8-f2a4ed378c00" } - } + }, + "private": true }, "cinnamon-500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5937,7 +6254,8 @@ "value": "rgb(164, 183, 225)", "uuid": "c607ecc8-35ed-4d47-a683-54d57b816fbd" } - } + }, + "private": true }, "cinnamon-600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5957,7 +6275,8 @@ "value": "rgb(135, 160, 215)", "uuid": "d46ae80e-04ba-418f-8368-1d8c0633c0d1" } - } + }, + "private": true }, "cinnamon-700": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5977,7 +6296,8 @@ "value": "rgb(113, 142, 208)", "uuid": "71085b67-c49c-4b1e-b708-6b38c16b9d37" } - } + }, + "private": true }, "cinnamon-800": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -5997,7 +6317,8 @@ "value": "rgb(93, 127, 201)", "uuid": "e78bd82d-f4c0-4617-92bb-08a69153bacd" } - } + }, + "private": true }, "cinnamon-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6017,7 +6338,8 @@ "value": "rgb(74, 111, 195)", "uuid": "cdaaa5e1-7ca5-43a8-bdb4-3ef8fedbb30d" } - } + }, + "private": true }, "cinnamon-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6037,7 +6359,8 @@ "value": "rgb(61, 94, 165)", "uuid": "696315e6-4d82-49a0-8781-853beb0d1f5b" } - } + }, + "private": true }, "cinnamon-1100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6057,7 +6380,8 @@ "value": "rgb(52, 79, 140)", "uuid": "41f0e438-0ca6-4240-84e7-dedfcff1aa21" } - } + }, + "private": true }, "cinnamon-1200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6077,7 +6401,8 @@ "value": "rgb(42, 65, 114)", "uuid": "87e41d92-4099-4248-963c-394d43e33657" } - } + }, + "private": true }, "cinnamon-1300": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6097,7 +6422,8 @@ "value": "rgb(34, 51, 91)", "uuid": "2c86bff2-dddd-4fea-b6da-99873fa74da3" } - } + }, + "private": true }, "cinnamon-1400": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6117,7 +6443,8 @@ "value": "rgb(25, 39, 69)", "uuid": "2ec58374-b4c1-4e03-8f3f-57c747a7ed47" } - } + }, + "private": true }, "cinnamon-1500": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6137,7 +6464,8 @@ "value": "rgb(18, 27, 48)", "uuid": "1adb9cd6-2ba1-4501-ab9d-f377ae07d399" } - } + }, + "private": true }, "cinnamon-1600": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", @@ -6157,6 +6485,7 @@ "value": "rgb(8, 12, 22)", "uuid": "321a9931-be34-4ce9-8180-8e7fd87e30f4" } - } + }, + "private": true } } diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 1b86af03..9b5a07bd 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1810,6 +1810,7 @@ "uuid": "dac5c077-b948-434b-91bd-0759c2414007" }, "slider-track-thickness": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b" @@ -2576,6 +2577,7 @@ } }, "opacity-checkerboard-square-size-medium": { + "component": "opacity-checkerboard", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -3445,19 +3447,19 @@ "uuid": "b3900f89-0a7a-4c47-a6d9-ca8aa19b9bfb" }, "card-minimum-width": { - "component": "cards", + "component": "card", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "100px", "uuid": "55db9f3d-621d-4d23-b3d0-c0f2b0f3f9b0" }, "card-preview-minimum-height": { - "component": "cards", + "component": "card", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "130px", "uuid": "58eb5be8-644f-448e-99b9-94d1fbb93240" }, "card-selection-background-size": { - "component": "cards", + "component": "card", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "496fd060-70a9-48d0-948f-593b81847199" @@ -5273,55 +5275,55 @@ } }, "tab-item-height-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-200}", "uuid": "7b31cf38-5bac-4f79-a4f1-172a4ea66e10" }, "tab-item-height-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-300}", "uuid": "5d2288f4-f383-47fa-baca-0168cb46750a" }, "tab-item-height-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-400}", "uuid": "8abd0b0e-fd6d-4064-9d0e-1ab998fcb0ce" }, "tab-item-height-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-500}", "uuid": "42ed814c-5044-4c70-b82f-b49f8226241e" }, "tab-item-compact-height-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-75}", "uuid": "25f7d9a5-9464-4447-97d9-97839b371f96" }, "tab-item-compact-height-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "e8c7c826-548d-4037-b064-3cf699675d35" }, "tab-item-compact-height-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-200}", "uuid": "6d781a0e-e03d-4750-ae4f-67a29d731702" }, "tab-item-compact-height-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-300}", "uuid": "49130d66-edfb-48bd-8648-96c47f40a884" }, "tab-item-to-tab-item-horizontal-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5337,7 +5339,7 @@ } }, "tab-item-to-tab-item-horizontal-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5353,7 +5355,7 @@ } }, "tab-item-to-tab-item-horizontal-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5369,7 +5371,7 @@ } }, "tab-item-to-tab-item-horizontal-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5385,7 +5387,7 @@ } }, "tab-item-to-tab-item-vertical-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5401,7 +5403,7 @@ } }, "tab-item-to-tab-item-vertical-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5417,7 +5419,7 @@ } }, "tab-item-to-tab-item-vertical-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5433,7 +5435,7 @@ } }, "tab-item-to-tab-item-vertical-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5449,13 +5451,13 @@ } }, "tab-item-start-to-edge-quiet": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "f869f703-a850-4c6c-b518-ec8a1b355046" }, "tab-item-start-to-edge-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5471,7 +5473,7 @@ } }, "tab-item-start-to-edge-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5487,7 +5489,7 @@ } }, "tab-item-start-to-edge-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5503,7 +5505,7 @@ } }, "tab-item-start-to-edge-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5519,7 +5521,7 @@ } }, "tab-item-top-to-text-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5535,7 +5537,7 @@ } }, "tab-item-bottom-to-text-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5551,7 +5553,7 @@ } }, "tab-item-top-to-text-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5567,7 +5569,7 @@ } }, "tab-item-bottom-to-text-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5583,7 +5585,7 @@ } }, "tab-item-top-to-text-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5599,7 +5601,7 @@ } }, "tab-item-bottom-to-text-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5615,7 +5617,7 @@ } }, "tab-item-top-to-text-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5631,7 +5633,7 @@ } }, "tab-item-bottom-to-text-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5647,7 +5649,7 @@ } }, "tab-item-top-to-text-compact-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5663,7 +5665,7 @@ } }, "tab-item-bottom-to-text-compact-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5679,7 +5681,7 @@ } }, "tab-item-top-to-text-compact-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5695,7 +5697,7 @@ } }, "tab-item-bottom-to-text-compact-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5711,7 +5713,7 @@ } }, "tab-item-top-to-text-compact-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5727,7 +5729,7 @@ } }, "tab-item-bottom-to-text-compact-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5743,7 +5745,7 @@ } }, "tab-item-top-to-text-compact-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5759,7 +5761,7 @@ } }, "tab-item-bottom-to-text-compact-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5775,7 +5777,7 @@ } }, "tab-item-top-to-workflow-icon-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5791,7 +5793,7 @@ } }, "tab-item-top-to-workflow-icon-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5807,7 +5809,7 @@ } }, "tab-item-top-to-workflow-icon-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5823,7 +5825,7 @@ } }, "tab-item-top-to-workflow-icon-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5839,7 +5841,7 @@ } }, "tab-item-top-to-workflow-icon-compact-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5855,7 +5857,7 @@ } }, "tab-item-top-to-workflow-icon-compact-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5871,7 +5873,7 @@ } }, "tab-item-top-to-workflow-icon-compact-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5887,7 +5889,7 @@ } }, "tab-item-top-to-workflow-icon-compact-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5903,7 +5905,7 @@ } }, "tab-item-focus-indicator-gap-small": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5919,7 +5921,7 @@ } }, "tab-item-focus-indicator-gap-medium": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5935,7 +5937,7 @@ } }, "tab-item-focus-indicator-gap-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5951,7 +5953,7 @@ } }, "tab-item-focus-indicator-gap-extra-large": { - "component": "tabs", + "component": "tab-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6167,17 +6169,20 @@ "uuid": "5f844b3f-e0d7-40f0-a754-a14bee6a0fb4" }, "in-field-button-fill-stacked-inner-border-rounding": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1" }, "in-field-button-edge-to-fill": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43", "deprecated": true }, "in-field-button-stacked-inner-edge-to-fill": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "56b54ece-0ff3-4957-9c1c-9e7fb992653c" @@ -6213,41 +6218,49 @@ "uuid": "9890df35-2d45-4767-9cbe-ee745d09d990" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-medium": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "a87d68bb-4249-43cd-947d-bd061baba0ef" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-large": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "acc9c48a-f461-48ff-9f69-0224c4feabc6" }, "in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "391e1e67-1677-4f60-a09a-3b49bacd01f5" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-small": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-small}", "uuid": "6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-medium": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-medium}", "uuid": "3dd5babb-5026-4f28-89ae-bfe687673f31" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-large": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-large}", "uuid": "710ebe58-f0d8-4d6b-8974-0be1f2f48dc4" }, "in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large}", "uuid": "c47499c1-b89f-49a7-bbb5-17e83e4b306e" }, "arrow-icon-size-75": { + "component": "arrow-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6263,6 +6276,7 @@ } }, "arrow-icon-size-100": { + "component": "arrow-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6278,6 +6292,7 @@ } }, "arrow-icon-size-200": { + "component": "arrow-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6293,6 +6308,7 @@ } }, "arrow-icon-size-300": { + "component": "arrow-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6308,6 +6324,7 @@ } }, "arrow-icon-size-400": { + "component": "arrow-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6323,6 +6340,7 @@ } }, "arrow-icon-size-500": { + "component": "arrow-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6338,6 +6356,7 @@ } }, "arrow-icon-size-600": { + "component": "arrow-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6353,11 +6372,13 @@ } }, "asterisk-icon-size-75": { + "component": "asterisk-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "49ea57ee-7b12-4a8b-a9bb-a11cf2c9d72c" }, "asterisk-icon-size-100": { + "component": "asterisk-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6373,6 +6394,7 @@ } }, "asterisk-icon-size-200": { + "component": "asterisk-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6388,6 +6410,7 @@ } }, "asterisk-icon-size-300": { + "component": "asterisk-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6403,6 +6426,7 @@ } }, "checkmark-icon-size-50": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6418,6 +6442,7 @@ } }, "checkmark-icon-size-75": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6433,6 +6458,7 @@ } }, "checkmark-icon-size-100": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6448,6 +6474,7 @@ } }, "checkmark-icon-size-200": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6463,6 +6490,7 @@ } }, "checkmark-icon-size-300": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6478,6 +6506,7 @@ } }, "checkmark-icon-size-400": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6493,6 +6522,7 @@ } }, "checkmark-icon-size-500": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6508,6 +6538,7 @@ } }, "checkmark-icon-size-600": { + "component": "checkmark-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6523,6 +6554,7 @@ } }, "chevron-icon-size-50": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6538,6 +6570,7 @@ } }, "chevron-icon-size-75": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6553,6 +6586,7 @@ } }, "chevron-icon-size-100": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6568,6 +6602,7 @@ } }, "chevron-icon-size-200": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6583,6 +6618,7 @@ } }, "chevron-icon-size-300": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6598,6 +6634,7 @@ } }, "chevron-icon-size-400": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6613,6 +6650,7 @@ } }, "chevron-icon-size-500": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6628,6 +6666,7 @@ } }, "chevron-icon-size-600": { + "component": "chevron-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6643,6 +6682,7 @@ } }, "cross-icon-size-75": { + "component": "cross-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6658,6 +6698,7 @@ } }, "cross-icon-size-100": { + "component": "cross-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6673,6 +6714,7 @@ } }, "cross-icon-size-200": { + "component": "cross-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6688,6 +6730,7 @@ } }, "cross-icon-size-300": { + "component": "cross-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6703,6 +6746,7 @@ } }, "cross-icon-size-400": { + "component": "cross-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6718,6 +6762,7 @@ } }, "cross-icon-size-500": { + "component": "cross-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6733,6 +6778,7 @@ } }, "cross-icon-size-600": { + "component": "cross-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6748,6 +6794,7 @@ } }, "dash-icon-size-50": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6763,6 +6810,7 @@ } }, "dash-icon-size-75": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6778,6 +6826,7 @@ } }, "dash-icon-size-100": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6793,6 +6842,7 @@ } }, "dash-icon-size-200": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6808,6 +6858,7 @@ } }, "dash-icon-size-300": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6823,6 +6874,7 @@ } }, "dash-icon-size-400": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6838,6 +6890,7 @@ } }, "dash-icon-size-500": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6853,6 +6906,7 @@ } }, "dash-icon-size-600": { + "component": "dash-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6868,6 +6922,7 @@ } }, "side-navigation-header-to-item": { + "component": "side-navigation", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6883,21 +6938,25 @@ } }, "divider-vertical-minimum-height": { + "component": "divider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "200px", "uuid": "299db7d6-66f6-4fcb-890d-223406c85ae4" }, "divider-horizontal-minimum-width": { + "component": "divider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "200px", "uuid": "a0093378-0b2c-474b-9fe5-76940fd1398b" }, "tooltip-tip-corner-radius": { + "component": "tooltip", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "53fef925-59e3-4df5-9ac2-e2b4d34d9bca" }, "switch-handle-size-small": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6913,6 +6972,7 @@ } }, "switch-handle-selected-size-small": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6928,6 +6988,7 @@ } }, "switch-handle-selected-size-medium": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6943,6 +7004,7 @@ } }, "switch-handle-selected-size-large": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6958,6 +7020,7 @@ } }, "switch-handle-selected-size-extra-large": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6973,6 +7036,7 @@ } }, "switch-handle-size-medium": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -6988,6 +7052,7 @@ } }, "switch-handle-size-large": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7003,6 +7068,7 @@ } }, "switch-handle-size-extra-large": { + "component": "switch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7018,17 +7084,20 @@ } }, "tag-minimum-width-multiplier": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1", "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f", "deprecated": true }, "tag-maximum-width-multiplier": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "7", "uuid": "8771f506-a491-4222-be86-0e666ea2c711" }, "tag-label-to-clear-icon-small": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7044,6 +7113,7 @@ } }, "tag-label-to-clear-icon-medium": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7059,6 +7129,7 @@ } }, "tag-label-to-clear-icon-large": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7074,6 +7145,7 @@ } }, "tag-edge-to-clear-icon-small": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7089,6 +7161,7 @@ } }, "tag-edge-to-clear-icon-medium": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7104,6 +7177,7 @@ } }, "tag-edge-to-clear-icon-large": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7119,231 +7193,277 @@ } }, "title-cjk-emphasized-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "2be8bfb1-7a0c-452d-9532-ea2eda408b82" }, "title-cjk-emphasized-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "c03b6bc7-76b6-4533-883e-881438de975f" }, "title-cjk-font-family": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-font-family}", "uuid": "6fa83674-af7c-4656-8b33-d3312534ee53" }, "title-cjk-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "f421339b-fc3b-4d4e-86b4-65a63584131b" }, "title-cjk-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "57a5eaba-935d-47e5-9cc4-cc1da6a330de" }, "title-cjk-line-height": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cjk-line-height-100}", "uuid": "999ba22a-87b6-45fe-9e89-9911f34ea330" }, "title-cjk-size-l": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-200}", "uuid": "2fcf237b-6988-4c31-a806-f4176b94c2a8" }, "title-cjk-size-m": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "d1bccaa7-731f-4df2-a4c3-9dbec33145fd" }, "title-cjk-size-s": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-75}", "uuid": "a134fab9-7606-453d-a64f-fd2daa989283" }, "title-cjk-size-xl": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-300}", "uuid": "99472fda-7d17-45d5-b2ba-0c79a45d628f" }, "title-cjk-size-xs": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-50}", "uuid": "f5966933-93a3-4615-a19b-b94d6a0367da" }, "title-cjk-size-xxl": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-400}", "uuid": "abbc512e-fdce-4025-9d08-5a71692cf523" }, "title-cjk-size-xxxl": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-500}", "uuid": "223b1966-4dbb-4e89-b508-9191ffedc97c" }, "title-cjk-strong-emphasized-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "55c1dcc1-f296-47eb-989b-ae5e22748869" }, "title-cjk-strong-emphasized-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "ba6356fb-cada-4786-9306-71b940e61ca8" }, "title-cjk-strong-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "85e5ba03-3f0a-4245-a26c-ac9c3df23d1b" }, "title-cjk-strong-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "93e5a426-7229-46ee-89f6-a84f7084592b" }, "title-line-height": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{line-height-100}", "uuid": "e1397d35-0c23-410c-a213-65db1eb4887f" }, "title-margin-bottom-multiplier": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.25", "uuid": "73a0bd28-7691-47b0-9e9b-62ec22940e63" }, "title-margin-top-multiplier": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "0.88888889", "uuid": "14d9dc6c-28fc-41cf-a1ae-600a150f520a" }, "title-sans-serif-emphasized-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "98fd5c98-b53d-49f0-bce1-705b53ae9ae4" }, "title-sans-serif-emphasized-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "4fe9b508-ff74-4819-8188-e080d814d9ef" }, "title-sans-serif-font-family": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{sans-serif-font-family}", "uuid": "9a65d2f0-87c0-404b-9965-6e4b00efeda8" }, "title-sans-serif-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "faa965d6-42c0-40f9-802e-ff0ea69d740d" }, "title-sans-serif-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "58a27a2e-58c6-42dc-b860-1a8458966da4" }, "title-sans-serif-strong-emphasized-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "39c10c1e-56c1-4a94-b5b9-a91a2db92050" }, "title-sans-serif-strong-emphasized-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "ab0482d5-ff9a-4c50-876b-ed5accf067a4" }, "title-sans-serif-strong-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "871928bc-14ac-465d-b245-c39bcf265a72" }, "title-sans-serif-strong-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", "uuid": "ace1f3cb-629c-4172-b64f-a8b1f5afbdcc" }, "title-serif-emphasized-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "cf6281f7-00ef-437e-b89b-d6d774818f0b" }, "title-serif-emphasized-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "3abd6cd1-42f5-4b4b-9732-bb826fe0a740" }, "title-serif-font-family": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{serif-font-family}", "uuid": "b3098f42-d73e-4228-a4f9-9be4b0c46ce8" }, "title-serif-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "70955f1b-4124-432e-bd9d-c5b42c890195" }, "title-serif-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", "uuid": "23cf3a6f-911c-4e64-8952-7412bc7f4629" }, "title-serif-strong-emphasized-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", "uuid": "6359f577-d462-456b-a748-ceecb893b4a2" }, "title-serif-strong-emphasized-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "c2a2882b-f048-4580-96c8-76556fccc87c" }, "title-serif-strong-font-style": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", "uuid": "6d2f0e78-e527-41c7-8843-af89a9790da6" }, "title-serif-strong-font-weight": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{black-font-weight}", "uuid": "a0367ebf-8cc8-4aa0-80c4-ccf4a03644a3" }, "title-size-l": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-300}", "uuid": "0fb9e5ec-e5b7-41e0-8ef4-db9e4e33e060" }, "title-size-m": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-200}", "uuid": "6d63a369-4261-44a4-bf8d-a567dffa8ef6" }, "title-size-s": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "0babc342-b506-495d-aaf1-20fe9e571e1b" }, "title-size-xl": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-400}", "uuid": "b5aaaa50-721b-4b41-ad90-345cd995f69e" }, "title-size-xs": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-75}", "uuid": "68dac9e8-9b07-4453-8cb2-24ed349d2134" }, "title-size-xxl": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-500}", "uuid": "d4c4db99-70f2-4c79-8595-4d23407de068" }, "title-size-xxxl": { + "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-600}", "uuid": "56152e6a-3058-4467-86a1-34fa2b6f75b2" }, "opacity-checkerboard-square-size-small": { + "component": "opacity-checkerboard", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7359,6 +7479,7 @@ } }, "alert-banner-top-to-alert-icon": { + "component": "alert-banner", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7374,6 +7495,7 @@ } }, "accordion-top-to-text-spacious-small": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7389,6 +7511,7 @@ } }, "field-default-width-small": { + "component": "field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7404,6 +7527,7 @@ } }, "field-default-width-medium": { + "component": "field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7419,6 +7543,7 @@ } }, "field-default-width-large": { + "component": "field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7434,6 +7559,7 @@ } }, "field-default-width-extra-large": { + "component": "field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7449,6 +7575,7 @@ } }, "tag-minimum-width-small": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7464,6 +7591,7 @@ } }, "tag-minimum-width-medium": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7479,6 +7607,7 @@ } }, "tag-minimum-width-large": { + "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7494,11 +7623,13 @@ } }, "combo-box-visual-to-field-button": { + "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" }, "in-field-button-edge-to-fill-small": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7514,16 +7645,19 @@ } }, "in-field-button-edge-to-fill-medium": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" }, "in-field-button-edge-to-fill-large": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" }, "in-field-button-edge-to-fill-extra-large": { + "component": "in-field-button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7539,6 +7673,7 @@ } }, "in-field-progress-circle-edge-to-fill": { + "component": "in-field-progress-circle", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7554,6 +7689,7 @@ } }, "in-field-progress-circle-size-75": { + "component": "in-field-progress-circle", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7569,6 +7705,7 @@ } }, "in-field-progress-circle-size-100": { + "component": "in-field-progress-circle", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7584,6 +7721,7 @@ } }, "in-field-progress-circle-size-200": { + "component": "in-field-progress-circle", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7599,6 +7737,7 @@ } }, "in-field-progress-circle-size-300": { + "component": "in-field-progress-circle", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7614,6 +7753,7 @@ } }, "alert-dialog-description-font-size": { + "component": "alert-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7629,6 +7769,7 @@ } }, "alert-dialog-title-font-size": { + "component": "alert-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7644,6 +7785,7 @@ } }, "coach-mark-body-font-size": { + "component": "coach-mark", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7659,6 +7801,7 @@ } }, "coach-mark-pagination-body-font-size": { + "component": "coach-mark", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7674,6 +7817,7 @@ } }, "coach-mark-title-font-size": { + "component": "coach-mark", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7689,6 +7833,7 @@ } }, "standard-dialog-title-font-size": { + "component": "standard-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7704,6 +7849,7 @@ } }, "standard-dialog-body-font-size": { + "component": "standard-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7719,41 +7865,49 @@ } }, "standard-dialog-maximum-width-small": { + "component": "standard-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "400px", "uuid": "c00d9b06-f198-4cd5-9b69-ed3796314dab" }, "standard-dialog-minimum-width": { + "component": "standard-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "288px", "uuid": "27f2bc13-53e4-4416-8592-a2a44909d22d" }, "standard-dialog-maximum-width-medium": { + "component": "standard-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "480px", "uuid": "1c886eb9-f651-42ce-baff-9b3996077f92" }, "standard-dialog-maximum-width-large": { + "component": "standard-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "640px", "uuid": "5ec703d4-19d9-4be5-976f-e4c1966c0d3d" }, "status-light-text-to-visual-75": { + "component": "status-light", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{text-to-visual-75}", "uuid": "ea98b9b0-20b5-4f19-aa4f-375559b1362a" }, "status-light-text-to-visual-100": { + "component": "status-light", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{text-to-visual-100}", "uuid": "752a84f5-cbb7-4d18-85ca-fc913a061bb5" }, "status-light-text-to-visual-200": { + "component": "status-light", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{text-to-visual-200}", "uuid": "d3e53f14-b91e-4d10-8508-17360ae5620e" }, "status-light-text-to-visual-300": { + "component": "status-light", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{text-to-visual-300}", "uuid": "ee780be7-b32c-4da8-a6bc-fc0897799537" diff --git a/packages/tokens/tasks/addPrivate.js b/packages/tokens/tasks/addPrivate.js new file mode 100644 index 00000000..84a1e1a0 --- /dev/null +++ b/packages/tokens/tasks/addPrivate.js @@ -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. +*/ +import { getFileTokens, writeJson, __dirname } from "../index.js"; +import { resolve } from "path"; + +const tokenData = await getFileTokens("color-palette.json"); +const result = {}; + +for (const [key, value] of Object.entries(tokenData)) { + result[key] = { ...value, ...{ private: true } }; +} + +writeJson(`${resolve(__dirname, "./src")}/color-palette.json`, result); diff --git a/packages/tokens/test/checkComponentProps.js b/packages/tokens/test/checkComponentProps.js new file mode 100644 index 00000000..9fb57871 --- /dev/null +++ b/packages/tokens/test/checkComponentProps.js @@ -0,0 +1,28 @@ +/* +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. +*/ + +import test from "ava"; +import { getFileTokens } from "../index.js"; + +test("ensure all component tokens are have component data", async (t) => { + const tokenData = { + ...(await getFileTokens("color-component.json")), + ...(await getFileTokens("layout-component.json")), + }; + const result = Object.keys(tokenData).filter((tokenName) => { + return ( + !Object.hasOwn(tokenData[tokenName], "component") || + tokenName.indexOf(tokenData[tokenName].component) != 0 + ); + }); + t.deepEqual(result, []); +}); diff --git a/packages/tokens/test/checkPrivate.js b/packages/tokens/test/checkPrivate.js new file mode 100644 index 00000000..32f97b4b --- /dev/null +++ b/packages/tokens/test/checkPrivate.js @@ -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. +*/ + +import test from "ava"; +import { getFileTokens } from "../index.js"; + +test("ensure all color-palette.json tokens are private", async (t) => { + const tokenData = await getFileTokens("color-palette.json"); + const result = Object.keys(tokenData).filter( + (tokenName) => !Object.hasOwn(tokenData[tokenName], "private"), + ); + t.deepEqual(result, []); +}); From 3caa31d014a3d49496422c38a93c3c7645da0373 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 25 Apr 2024 13:31:23 -0400 Subject: [PATCH 165/295] chore: added changeset --- .changeset/popular-socks-clean.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/popular-socks-clean.md diff --git a/.changeset/popular-socks-clean.md b/.changeset/popular-socks-clean.md new file mode 100644 index 00000000..bc3a1be9 --- /dev/null +++ b/.changeset/popular-socks-clean.md @@ -0,0 +1,5 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added `private` metadata to global tokens. From 0375dbe1875ad2778dd6cada115cf29b02e0507f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Apr 2024 17:47:04 +0000 Subject: [PATCH 166/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 6 ++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 14177619..7a9f57e2 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -35,6 +35,7 @@ "lemon-dragons-raise", "neat-balloons-rhyme", "olive-schools-warn", + "popular-socks-clean", "purple-worms-add", "real-seals-camp", "red-snails-roll", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index ed3d6e07..790d1e7d 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,11 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.31 + +### Minor Changes + +- [#327](https://github.com/adobe/spectrum-tokens/pull/327) [`3caa31d`](https://github.com/adobe/spectrum-tokens/commit/3caa31d014a3d49496422c38a93c3c7645da0373) Thanks [@GarthDB](https://github.com/GarthDB)! - Added `private` metadata to global tokens. + ## 13.0.0-beta.30 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index b256b9d3..f025e0a6 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.30", + "version": "13.0.0-beta.31", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 6fa77e97..9eeaa753 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.2 + +### Patch Changes + +- Updated dependencies [[`3caa31d`](https://github.com/adobe/spectrum-tokens/commit/3caa31d014a3d49496422c38a93c3c7645da0373)]: + - @adobe/spectrum-tokens@13.0.0-beta.31 + ## 0.0.2-beta.1 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index be91e77e..4c4efee6 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.1", + "version": "0.0.2-beta.2", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From a0c5703c18fb2eb6b413f441f0c81486bb48519f Mon Sep 17 00:00:00 2001 From: karstens <940122+karstens@users.noreply.github.com> Date: Thu, 25 Apr 2024 13:13:15 +0000 Subject: [PATCH 167/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 7 +++++- .../tokens/src/semantic-color-palette.json | 22 ++++++++++++++++++- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 08e93c93..45446981 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1715,5 +1715,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-color-200}", "uuid": "e475981f-97af-479c-859b-7619dd87c448" + }, + "neutral-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index 59bc63ed..3bf197f4 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -418,5 +418,25 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-300}", "uuid": "4b6aaf76-e0ab-4be0-81c0-d5f64cacee88" + }, + "informative-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-200}", + "uuid": "62dfb07f-5eee-451c-9c77-745d8f714766" + }, + "positive-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-200}", + "uuid": "57a1aa8f-5c06-4ff6-8d1c-0e278a433ebf" + }, + "notice-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-200}", + "uuid": "f0799e87-dbb2-4e71-8253-65f45eddc078" + }, + "negative-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-200}", + "uuid": "8e9429cf-4c89-47be-bc6e-eeecc632aeb1" } -} +} \ No newline at end of file From 095248e26bdd1c8b65a61f3793646bb44093c38b Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 25 Apr 2024 13:58:27 -0400 Subject: [PATCH 168/295] chore: added changeset --- .changeset/quick-moose-tease.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .changeset/quick-moose-tease.md diff --git a/.changeset/quick-moose-tease.md b/.changeset/quick-moose-tease.md new file mode 100644 index 00000000..a6173aff --- /dev/null +++ b/.changeset/quick-moose-tease.md @@ -0,0 +1,15 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added semantic aliases used by in-line alert. + +## Token Diff + +_Tokens added (5):_ + +- `informative-subtle-background-color-default` +- `negative-subtle-background-color-default` +- `neutral-subtle-background-color-default` +- `notice-subtle-background-color-default` +- `positive-subtle-background-color-default` From f4efaa0c4713a93e15605250ef0f3085ef271c39 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Apr 2024 18:03:04 +0000 Subject: [PATCH 169/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 16 ++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 7a9f57e2..d839e695 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -37,6 +37,7 @@ "olive-schools-warn", "popular-socks-clean", "purple-worms-add", + "quick-moose-tease", "real-seals-camp", "red-snails-roll", "rotten-rice-end", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 790d1e7d..2864aebe 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,21 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.32 + +### Minor Changes + +- [#325](https://github.com/adobe/spectrum-tokens/pull/325) [`095248e`](https://github.com/adobe/spectrum-tokens/commit/095248e26bdd1c8b65a61f3793646bb44093c38b) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added semantic aliases used by in-line alert. + + ## Token Diff + + _Tokens added (5):_ + + - `informative-subtle-background-color-default` + - `negative-subtle-background-color-default` + - `neutral-subtle-background-color-default` + - `notice-subtle-background-color-default` + - `positive-subtle-background-color-default` + ## 13.0.0-beta.31 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index f025e0a6..861e65c8 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.31", + "version": "13.0.0-beta.32", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 9eeaa753..b36c37f5 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.3 + +### Patch Changes + +- Updated dependencies [[`095248e`](https://github.com/adobe/spectrum-tokens/commit/095248e26bdd1c8b65a61f3793646bb44093c38b)]: + - @adobe/spectrum-tokens@13.0.0-beta.32 + ## 0.0.2-beta.2 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 4c4efee6..a624bf7b 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.2", + "version": "0.0.2-beta.3", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 3c6a0464d0502c7dd3156f0ae6b9f0dfdb0905c1 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Fri, 26 Apr 2024 13:58:20 +0000 Subject: [PATCH 170/295] [create-pull-request] automated change Co-authored-by: Nadeen Abuhasan <129990790+nabuhasan@users.noreply.github.com> --- packages/tokens/src/color-component.json | 77 +++++++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 5efbe4ca..8a9bcee7 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -267,5 +267,80 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.15", "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" + }, + "menu-item-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "f4d97d6a-c1f3-4ef5-b7e5-8fbee1365a83" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "9b9e8b32-46b8-470d-85b9-352c00e90138" + } + } + }, + "menu-item-background-color-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "857e82a6-537e-4534-9084-353c5401f567" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "f68ff159-e886-4519-b95e-e93879a2f535" + } + } + }, + "menu-item-background-color-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "d609bd79-ab48-4a7a-95b1-da5a88ac5338" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "7ccdd9e8-3677-4de8-b9df-19efa80d88c0" + } + } + }, + "menu-item-background-color-keyboard-focus": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "dd044387-57b9-4867-90fa-b3c4c4a62e5c" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "ae9dc785-2406-407e-ab47-d42d6fbf65f6" + } + } + }, + "menu-item-background-color-disabled": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "211d6540-cf9d-4d80-815b-885844283fa6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "0e2c2900-180c-443a-86ff-49170166e616" + } + } } -} +} \ No newline at end of file From c35f96929c5c960b332467c758493433deb7603e Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 26 Apr 2024 10:30:43 -0400 Subject: [PATCH 171/295] fix: added missing component and wireframe data to tokens --- packages/tokens/src/color-aliases.json | 2 +- packages/tokens/src/color-component.json | 32 ++++++++++++++++++- packages/tokens/src/layout.json | 2 +- .../tokens/src/semantic-color-palette.json | 2 +- packages/tokens/tasks/addIds.js | 11 +++---- 5 files changed, 38 insertions(+), 11 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 45446981..fd1bd75c 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1721,4 +1721,4 @@ "value": "{gray-100}", "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 8a9bcee7..5f46dc7a 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -269,6 +269,7 @@ "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" }, "menu-item-background-color-default": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -280,10 +281,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "9b9e8b32-46b8-470d-85b9-352c00e90138" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "9f60dd0a-2a38-4f0d-a83c-3acf777a622a" } } }, "menu-item-background-color-hover": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -295,10 +302,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "f68ff159-e886-4519-b95e-e93879a2f535" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "d3d08f7a-c516-4f0c-9377-4824d615ab66" } } }, "menu-item-background-color-down": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -310,10 +323,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "7ccdd9e8-3677-4de8-b9df-19efa80d88c0" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "a8911c6e-f480-4a7d-b7fe-e20a45fb8b2a" } } }, "menu-item-background-color-keyboard-focus": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -325,10 +344,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "ae9dc785-2406-407e-ab47-d42d6fbf65f6" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "541a7020-5cf5-4ebd-ac1f-2b776d5925af" } } }, "menu-item-background-color-disabled": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -340,7 +365,12 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "0e2c2900-180c-443a-86ff-49170166e616" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "ce26d102-2e5e-4b11-b9bf-4d1b347c60c5" } } } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 721535b9..3943d428 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2314,4 +2314,4 @@ "value": "{drop-shadow-blur-200}", "uuid": "f3487a86-3aea-4527-8b5c-287c0bddad6c" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index 3bf197f4..7ce3c5d1 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -439,4 +439,4 @@ "value": "{red-200}", "uuid": "8e9429cf-4c89-47be-bc6e-eeecc632aeb1" } -} \ No newline at end of file +} diff --git a/packages/tokens/tasks/addIds.js b/packages/tokens/tasks/addIds.js index 2dc876f6..4e91d76f 100644 --- a/packages/tokens/tasks/addIds.js +++ b/packages/tokens/tasks/addIds.js @@ -10,12 +10,9 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ -import { glob } from "glob"; import crypto from "crypto"; // (not the fake money) import { writeFile, readFile } from "fs/promises"; - -const files = await glob("src/**/*.json"); -console.log(files); +import { tokenFileNames, writeJson } from "../index.js"; const VALUE = "value"; const UUID = "uuid"; @@ -63,7 +60,7 @@ function addUUIDs(json) { } // run through the files and find uuids -for (const fileName of files) { +for (const fileName of tokenFileNames) { const fileData = await readFile(fileName, "utf8"); const fileJSON = JSON.parse(fileData); @@ -71,7 +68,7 @@ for (const fileName of files) { } // run through the files and add uuids -for (const fileName of files) { +for (const fileName of tokenFileNames) { const fileData = await readFile(fileName, "utf8"); const fileJSON = JSON.parse(fileData); @@ -79,7 +76,7 @@ for (const fileName of files) { addUUIDs(fileJSON); - await writeFile(fileName, JSON.stringify(fileJSON, null, 2)); + await writeJson(fileName, fileJSON); if (uuids.length !== existing) { console.log(` added: ${fileName} ${uuids.length - existing} uuids`); From 2706f25681fe1202ce25ba9c413b37b15da44fd0 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Fri, 26 Apr 2024 14:34:11 +0000 Subject: [PATCH 172/295] [create-pull-request] automated change Co-authored-by: Nadeen Abuhasan <129990790+nabuhasan@users.noreply.github.com> --- packages/tokens/src/layout-component.json | 161 +++++++++++++++++++++- packages/tokens/src/layout.json | 15 ++ 2 files changed, 171 insertions(+), 5 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 9b5a07bd..e1ab29a1 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1607,9 +1607,10 @@ }, "menu-item-label-to-description": { "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "628cf42f-eb40-49b0-b110-3340421d4502" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{menu-item-label-to-description-medium}", + "uuid": "628cf42f-eb40-49b0-b110-3340421d4502", + "deprecated": true }, "menu-item-edge-to-content-not-selected-small": { "component": "menu", @@ -1806,7 +1807,7 @@ "menu-item-section-divider-height": { "component": "menu", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "12px", "uuid": "dac5c077-b948-434b-91bd-0759c2414007" }, "slider-track-thickness": { @@ -7911,5 +7912,155 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{text-to-visual-300}", "uuid": "ee780be7-b32c-4da8-a6bc-fc0897799537" + }, + "link-out-icon-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "1e41d09e-684e-4f87-ae85-4bc95f958c0e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "cb87186b-47aa-4baa-a47d-91b5e9f7965e" + } + } + }, + "link-out-icon-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "cc8ad91e-22f2-4f59-ae8c-99d2c1433d6e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "083c11fe-1e10-46f5-9e71-3fcc2567fe2d" + } + } + }, + "link-out-icon-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "f78418a4-5b55-418b-9c90-7f388d5bb275" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "0062482b-0339-4632-9b40-89b5f1a440cf" + } + } + }, + "menu-item-label-to-description-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "66d57402-d7db-45df-8872-fd362014bcbe" + }, + "menu-item-label-to-description-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "608fd592-fff8-435e-88e2-846bd34cc235" + }, + "menu-item-label-to-description-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "4ce8b4db-72f8-411b-baad-8b66c0496182" + }, + "menu-item-label-to-description-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "5543ede1-4e55-44f5-920f-288ee96e06ca" + }, + "menu-section-header-to-description-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "ac039575-7c1f-4733-a310-b39cebf83b82" + }, + "menu-section-header-to-description-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1px", + "uuid": "4211feff-12af-4288-b86d-4c66a5a55b8f" + }, + "menu-section-header-to-description-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "2899d6e1-acad-453b-ad65-1e6a6e380363" + }, + "menu-section-header-to-description-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "c9e46b75-f1d8-4b19-a258-b8b0a0e66484" + }, + "menu-item-top-to-thumbnail-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "456d5283-eb93-4b8d-b796-7f181ebcec04" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "af422766-3185-47d6-adba-31b1e97b92d9" + } + } + }, + "menu-item-top-to-thumbnail-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "f71c4487-3c1e-4204-b631-b0658a6b5e12" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "62815f67-4e23-43f9-93d2-f29d1688cddf" + } + } + }, + "menu-item-top-to-thumbnail-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "0d468b92-74df-4044-8af3-c867eebbf370" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "64b2f613-35b2-46a8-be7d-c39c314840b9" + } + } + }, + "menu-item-top-to-thumbnail-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "06a6c13b-2d58-4102-b169-073eed5599e6" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "13px", + "uuid": "dfeef197-57b9-41a1-b759-3c782a64f2f3" + } + } + }, + "menu-item-background-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0", + "uuid": "6f464689-0b87-4f38-b9a4-e5015acdd0d7" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 3943d428..c4ce4fab 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -287,6 +287,21 @@ } } }, + "text-to-visual-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "3d393d59-b358-48a7-82c6-a7802408cd0d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "b496071f-4151-4bc2-86eb-f2e41947e0f6" + } + } + }, "text-to-control-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { From b58f4b675b2c76bf49c07eaa523c9babb737a6eb Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 26 Apr 2024 11:22:43 -0400 Subject: [PATCH 173/295] fix: added missing component and wireframe data to tokens --- packages/tokens/src/layout-component.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index e1ab29a1..b2ae3dda 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -7914,6 +7914,7 @@ "uuid": "ee780be7-b32c-4da8-a6bc-fc0897799537" }, "link-out-icon-size-75": { + "component": "link-out-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7929,6 +7930,7 @@ } }, "link-out-icon-size-100": { + "component": "link-out-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7944,6 +7946,7 @@ } }, "link-out-icon-size-200": { + "component": "link-out-icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -7959,46 +7962,55 @@ } }, "menu-item-label-to-description-small": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "66d57402-d7db-45df-8872-fd362014bcbe" }, "menu-item-label-to-description-medium": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "608fd592-fff8-435e-88e2-846bd34cc235" }, "menu-item-label-to-description-large": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "4ce8b4db-72f8-411b-baad-8b66c0496182" }, "menu-item-label-to-description-extra-large": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "5543ede1-4e55-44f5-920f-288ee96e06ca" }, "menu-section-header-to-description-small": { + "component": "menu", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "ac039575-7c1f-4733-a310-b39cebf83b82" }, "menu-section-header-to-description-medium": { + "component": "menu", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", "uuid": "4211feff-12af-4288-b86d-4c66a5a55b8f" }, "menu-section-header-to-description-large": { + "component": "menu", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "2899d6e1-acad-453b-ad65-1e6a6e380363" }, "menu-section-header-to-description-extra-large": { + "component": "menu", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "c9e46b75-f1d8-4b19-a258-b8b0a0e66484" }, "menu-item-top-to-thumbnail-small": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8014,6 +8026,7 @@ } }, "menu-item-top-to-thumbnail-medium": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8029,6 +8042,7 @@ } }, "menu-item-top-to-thumbnail-large": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8044,6 +8058,7 @@ } }, "menu-item-top-to-thumbnail-extra-large": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8059,8 +8074,9 @@ } }, "menu-item-background-opacity": { + "component": "menu-item", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0", "uuid": "6f464689-0b87-4f38-b9a4-e5015acdd0d7" } -} \ No newline at end of file +} From 0bbfedb9dbb63fdd5b20e91f65b3f958a833313b Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 26 Apr 2024 11:26:39 -0400 Subject: [PATCH 174/295] chore: added changeset --- .changeset/weak-crabs-hammer.md | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .changeset/weak-crabs-hammer.md diff --git a/.changeset/weak-crabs-hammer.md b/.changeset/weak-crabs-hammer.md new file mode 100644 index 00000000..363ee55f --- /dev/null +++ b/.changeset/weak-crabs-hammer.md @@ -0,0 +1,37 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 Menu token updates + +## Token Diff + +_Tokens added (23):_ + +- `link-out-icon-size-100` +- `link-out-icon-size-200` +- `link-out-icon-size-75` +- `menu-item-background-color-default` +- `menu-item-background-color-disabled` +- `menu-item-background-color-down` +- `menu-item-background-color-hover` +- `menu-item-background-color-keyboard-focus` +- `menu-item-background-opacity` +- `menu-item-label-to-description` +- `menu-item-label-to-description-extra-large` +- `menu-item-label-to-description-large` +- `menu-item-label-to-description-medium` +- `menu-item-label-to-description-small` +- `menu-item-top-to-thumbnail-extra-large` +- `menu-item-top-to-thumbnail-large` +- `menu-item-top-to-thumbnail-medium` +- `menu-item-top-to-thumbnail-small` +- `menu-section-header-to-description-extra-large` +- `menu-section-header-to-description-large` +- `menu-section-header-to-description-medium` +- `menu-section-header-to-description-small` +- `text-to-visual-400` + +_Token values updated (1):_ + +- `menu-item-section-divider-height` From e07c49d1bdfbd9579650efe877ba0bd74d7ebf49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 26 Apr 2024 15:29:00 +0000 Subject: [PATCH 175/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 38 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 48 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index d839e695..c40b72b1 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -55,6 +55,7 @@ "twelve-impalas-compare", "unlucky-buckets-shop", "warm-experts-beg", + "weak-crabs-hammer", "wet-jobs-lie", "wild-numbers-sip", "wise-turtles-confess" diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 2864aebe..1ebd736f 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,43 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.33 + +### Minor Changes + +- [#331](https://github.com/adobe/spectrum-tokens/pull/331) [`0bbfedb`](https://github.com/adobe/spectrum-tokens/commit/0bbfedb9dbb63fdd5b20e91f65b3f958a833313b) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - S2 Menu token updates + + ## Token Diff + + _Tokens added (23):_ + + - `link-out-icon-size-100` + - `link-out-icon-size-200` + - `link-out-icon-size-75` + - `menu-item-background-color-default` + - `menu-item-background-color-disabled` + - `menu-item-background-color-down` + - `menu-item-background-color-hover` + - `menu-item-background-color-keyboard-focus` + - `menu-item-background-opacity` + - `menu-item-label-to-description` + - `menu-item-label-to-description-extra-large` + - `menu-item-label-to-description-large` + - `menu-item-label-to-description-medium` + - `menu-item-label-to-description-small` + - `menu-item-top-to-thumbnail-extra-large` + - `menu-item-top-to-thumbnail-large` + - `menu-item-top-to-thumbnail-medium` + - `menu-item-top-to-thumbnail-small` + - `menu-section-header-to-description-extra-large` + - `menu-section-header-to-description-large` + - `menu-section-header-to-description-medium` + - `menu-section-header-to-description-small` + - `text-to-visual-400` + + _Token values updated (1):_ + + - `menu-item-section-divider-height` + ## 13.0.0-beta.32 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 861e65c8..b65f0c5e 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.32", + "version": "13.0.0-beta.33", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index b36c37f5..18606222 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.4 + +### Patch Changes + +- Updated dependencies [[`0bbfedb`](https://github.com/adobe/spectrum-tokens/commit/0bbfedb9dbb63fdd5b20e91f65b3f958a833313b)]: + - @adobe/spectrum-tokens@13.0.0-beta.33 + ## 0.0.2-beta.3 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index a624bf7b..df869dd0 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.3", + "version": "0.0.2-beta.4", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From c6a562093eac7112f8a81935954da0af02fd743d Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Tue, 30 Apr 2024 18:37:32 +0000 Subject: [PATCH 176/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 8 +++-- packages/tokens/src/layout-component.json | 39 +++++++++++++++-------- 2 files changed, 30 insertions(+), 17 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index fd1bd75c..a2d898a7 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -25,12 +25,14 @@ "light": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.4", - "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e", + "deprecated": true }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.6", - "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da", + "deprecated": true }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", @@ -1721,4 +1723,4 @@ "value": "{gray-100}", "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index b2ae3dda..76921d06 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1591,19 +1591,10 @@ }, "popover-top-to-content-area": { "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "f97488e8-b1c1-442e-b98c-0ae6cff0b774" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "6165bae4-7148-4cb2-a1b4-38a25f2d8cde" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{popover-edge-to-content-area}", + "uuid": "f97488e8-b1c1-442e-b98c-0ae6cff0b774", + "deprecated": true }, "menu-item-label-to-description": { "component": "menu", @@ -8078,5 +8069,25 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0", "uuid": "6f464689-0b87-4f38-b9a4-e5015acdd0d7" + }, + "popover-edge-to-content-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-100}", + "uuid": "2a3bd47e-fde5-41d3-a585-f970bdefaf07" + }, + "popover-border-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0", + "uuid": "05c58363-1d34-4991-a7f7-7be7da4df50a" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "1.0", + "uuid": "fa9feacc-0c82-41a7-badc-5803c45a703b" + } + } } -} +} \ No newline at end of file From f69f32272e006c5576ca77bf01a05829eab27f51 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Tue, 30 Apr 2024 18:40:18 +0000 Subject: [PATCH 177/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 2 +- packages/tokens/src/color-component.json | 27 ++++++++++++++++++++ packages/tokens/src/layout-component.json | 31 +++++++---------------- 3 files changed, 37 insertions(+), 23 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index a2d898a7..44dd5b0c 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1723,4 +1723,4 @@ "value": "{gray-100}", "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 5f46dc7a..451f2a88 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -372,5 +372,32 @@ "uuid": "ce26d102-2e5e-4b11-b9bf-4d1b347c60c5" } } + }, + "popover-border-color": { + "component": "popover", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "66da6f53-5446-43c1-bbe0-73b46763fde1" + }, + "popover-border-opacity": { + "component": "popover", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0", + "uuid": "05c58363-1d34-4991-a7f7-7be7da4df50a" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "1.0", + "uuid": "fa9feacc-0c82-41a7-badc-5803c45a703b" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0", + "uuid": "d8f81d4f-b921-4a41-89c1-cdc79d40901a" + } + } } } diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 76921d06..db32cf8b 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1594,7 +1594,14 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{popover-edge-to-content-area}", "uuid": "f97488e8-b1c1-442e-b98c-0ae6cff0b774", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Introduced as an error. Use popover-edge-to-content-area instead" + }, + "popover-edge-to-content-area": { + "component": "popover", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-100}", + "uuid": "2a3bd47e-fde5-41d3-a585-f970bdefaf07" }, "menu-item-label-to-description": { "component": "menu", @@ -8069,25 +8076,5 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0", "uuid": "6f464689-0b87-4f38-b9a4-e5015acdd0d7" - }, - "popover-edge-to-content-area": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-100}", - "uuid": "2a3bd47e-fde5-41d3-a585-f970bdefaf07" - }, - "popover-border-opacity": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "05c58363-1d34-4991-a7f7-7be7da4df50a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "1.0", - "uuid": "fa9feacc-0c82-41a7-badc-5803c45a703b" - } - } } -} \ No newline at end of file +} From 4d28593c9d34414d72d78a1cc6c480d9ffdf82ce Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 30 Apr 2024 14:08:56 -0600 Subject: [PATCH 178/295] chore: added changeset --- .changeset/giant-ducks-drive.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .changeset/giant-ducks-drive.md diff --git a/.changeset/giant-ducks-drive.md b/.changeset/giant-ducks-drive.md new file mode 100644 index 00000000..2738b9b2 --- /dev/null +++ b/.changeset/giant-ducks-drive.md @@ -0,0 +1,17 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 Popover tokens update + +## Token Diff + +_Tokens added (3):_ + +- `popover-border-color` +- `popover-border-opacity` +- `popover-edge-to-content-area` + +_Newly deprecated token (1):_ + +- `popover-top-to-content-area` From add9fa81ec6e9a11ffde39e949626f29292c0ad3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 30 Apr 2024 20:19:57 +0000 Subject: [PATCH 179/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 18 ++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 28 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index c40b72b1..9736f49f 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -26,6 +26,7 @@ "forty-lizards-thank", "fuzzy-cherries-buy", "gentle-months-carry", + "giant-ducks-drive", "gold-bags-talk", "good-baboons-doubt", "good-peas-mix", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 1ebd736f..8cb2f570 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,23 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.34 + +### Minor Changes + +- [#334](https://github.com/adobe/spectrum-tokens/pull/334) [`4d28593`](https://github.com/adobe/spectrum-tokens/commit/4d28593c9d34414d72d78a1cc6c480d9ffdf82ce) Thanks [@nabuhasan](https://github.com/nabuhasan)! - S2 Popover tokens update + + ## Token Diff + + _Tokens added (3):_ + + - `popover-border-color` + - `popover-border-opacity` + - `popover-edge-to-content-area` + + _Newly deprecated token (1):_ + + - `popover-top-to-content-area` + ## 13.0.0-beta.33 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index b65f0c5e..094b7a57 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.33", + "version": "13.0.0-beta.34", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 18606222..a90d7ab0 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.5 + +### Patch Changes + +- Updated dependencies [[`4d28593`](https://github.com/adobe/spectrum-tokens/commit/4d28593c9d34414d72d78a1cc6c480d9ffdf82ce)]: + - @adobe/spectrum-tokens@13.0.0-beta.34 + ## 0.0.2-beta.4 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index df869dd0..4fbc49c4 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.4", + "version": "0.0.2-beta.5", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 74d74a2636cb6772e2e0834d7871dd58de31994a Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Wed, 1 May 2024 21:18:12 +0000 Subject: [PATCH 180/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 220 +++++++++++++++++----- 1 file changed, 174 insertions(+), 46 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index db32cf8b..13b32c58 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3363,51 +3363,24 @@ }, "illustrated-message-title-size": { "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-m}", - "uuid": "365ec548-431b-4e1e-9f9d-7b04d337f001" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-s}", - "uuid": "cfca5a29-7073-4627-8a61-27d37552dc03" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{illustrated-message-large-title-font-size}", + "uuid": "365ec548-431b-4e1e-9f9d-7b04d337f001", + "deprecated": true }, "illustrated-message-cjk-title-size": { "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-cjk-size-m}", - "uuid": "e77279df-bc62-441a-8a30-5faa41d0df10" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-cjk-size-s}", - "uuid": "00c938e6-e62e-4bc3-8884-cf23b10e286c" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{illustrated-message-large-cjk-title-font-size}", + "uuid": "e77279df-bc62-441a-8a30-5faa41d0df10", + "deprecated": true }, "illustrated-message-body-size": { "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "f3ba73a4-16ba-44a4-abf2-9893e8f02344" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{illustrated-message-large-body-font-size}", + "uuid": "4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78", + "deprecated": true }, "search-field-minimum-width-multiplier": { "component": "search-field", @@ -3484,26 +3457,29 @@ "drop-zone-border-dash-gap": { "component": "drop-zone", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", + "value": "6px", "uuid": "47c15433-53d3-425b-8b87-ea234701f781" }, "drop-zone-title-size": { "component": "drop-zone", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-title-size}", - "uuid": "edc68bfe-7ad3-4a12-81fa-ded8fb6fc2e3" + "value": "{drop-zone-title-font-size}", + "uuid": "edc68bfe-7ad3-4a12-81fa-ded8fb6fc2e3", + "deprecated": true }, "drop-zone-cjk-title-size": { "component": "drop-zone", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-cjk-title-size}", - "uuid": "013387e8-8925-4bb4-a8ee-94420141fde9" + "value": "{drop-zone-cjk-title-font-size}", + "uuid": "013387e8-8925-4bb4-a8ee-94420141fde9", + "deprecated": true }, "drop-zone-body-size": { "component": "drop-zone", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-body-size}", - "uuid": "bb3fee51-24cc-4643-9f22-fa1592ab2457" + "value": "{drop-zone-body-font-size}", + "uuid": "bb3fee51-24cc-4643-9f22-fa1592ab2457", + "deprecated": true }, "coach-mark-width": { "component": "coach-mark", @@ -8076,5 +8052,157 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0", "uuid": "6f464689-0b87-4f38-b9a4-e5015acdd0d7" + }, + "illustrated-message-small-title-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-m}", + "uuid": "f21da7b8-ba19-43e0-96e5-f9e60476ef6e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-s}", + "uuid": "ef8d0abb-9652-4db3-8f1d-506c03e5e115" + } + } + }, + "illustrated-message-small-cjk-title-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-cjk-size-m}", + "uuid": "9a6cf390-ca10-4242-a7d4-da4c9acc4058" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-cjk-size-s}", + "uuid": "a144455d-6bb3-43d4-828c-6b6f67ae9c51" + } + } + }, + "illustrated-message-medium-title-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xl}", + "uuid": "8e2d1a48-937c-4493-9624-5ca8383f74bd" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-l}", + "uuid": "65961091-abdb-4155-9887-4aebe857c4fd" + } + } + }, + "illustrated-message-medium-cjk-title-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-cjk-size-xl}", + "uuid": "ee763c7d-b98f-4f2e-9fc4-764cfa2ac53f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-cjk-size-l}", + "uuid": "1cb0c913-f4ec-478c-b92d-4c9d78875362" + } + } + }, + "illustrated-message-large-title-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xxl}", + "uuid": "abfe147d-04dd-45bd-8e86-eae6249e1745" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-xl}", + "uuid": "05104cea-7882-4f80-a994-3e072d29eec2" + } + } + }, + "illustrated-message-large-cjk-title-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-cjk-size-xxl}", + "uuid": "1929c819-5333-43ad-ba6c-fcf236270251" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-cjk-size-xl}", + "uuid": "e3c5a7ed-94f9-4938-9b92-b411e971af20" + } + } + }, + "illustrated-message-small-body-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-xs}", + "uuid": "fad078e5-1791-4003-994d-3567162d8233" + }, + "illustrated-message-medium-body-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "ca0d9e22-35a8-4ae5-99ee-29cce3ffa0bd" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-xs}", + "uuid": "32b359dc-b489-4476-afbd-1c04e6b0ff0e" + } + } + }, + "illustrated-message-large-body-font-size": { + "component": "illustrated-message", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "0208e74a-4a86-42e4-a5d0-f931715c293b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-xs}", + "uuid": "f4956b2c-dfda-4449-850b-36cf3a82ea09" + } + } + }, + "drop-zone-title-font-size": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{illustrated-message-medium-title-font-size}", + "uuid": "07564dd0-3628-42e1-8a29-253448a8c75f" + }, + "drop-zone-cjk-title-font-size": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{illustrated-message-medium-cjk-title-font-size}", + "uuid": "56fc89be-658e-4c5c-9b8e-7ac6f7d7db75" + }, + "drop-zone-body-font-size": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{illustrated-message-medium-body-font-size}", + "uuid": "644593be-82da-4ae4-ae57-fabebd4513ca" } } From 77c464cc3689a22ee3b3ca9a1dcccc06dda310e5 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 24 May 2024 14:04:29 -0600 Subject: [PATCH 181/295] fix: added deprecated messages --- packages/tokens/src/layout-component.json | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 13b32c58..770f571a 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3366,21 +3366,24 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-large-title-font-size}", "uuid": "365ec548-431b-4e1e-9f9d-7b04d337f001", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use illustrated-message-medium-title-font-size instead" }, "illustrated-message-cjk-title-size": { "component": "illustrated-message", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-large-cjk-title-font-size}", "uuid": "e77279df-bc62-441a-8a30-5faa41d0df10", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use illustrated-message-medium-cjk-title-font-size instead" }, "illustrated-message-body-size": { "component": "illustrated-message", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-large-body-font-size}", "uuid": "4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use illustrated-message-medium-body-font-size instead" }, "search-field-minimum-width-multiplier": { "component": "search-field", @@ -3465,21 +3468,24 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-zone-title-font-size}", "uuid": "edc68bfe-7ad3-4a12-81fa-ded8fb6fc2e3", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use drop-zone-title-font-size instead" }, "drop-zone-cjk-title-size": { "component": "drop-zone", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-zone-cjk-title-font-size}", "uuid": "013387e8-8925-4bb4-a8ee-94420141fde9", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use drop-zone-cjk-title-font-size instead" }, "drop-zone-body-size": { "component": "drop-zone", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-zone-body-font-size}", "uuid": "bb3fee51-24cc-4643-9f22-fa1592ab2457", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use drop-zone-body-font-size instead" }, "coach-mark-width": { "component": "coach-mark", From 2d5c1da7d9ab3cdd86cc58299b30b2ee0bc4e63f Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 24 May 2024 14:08:09 -0600 Subject: [PATCH 182/295] chore: update deps --- .moon/toolchain.yml | 2 +- package.json | 4 +-- pnpm-lock.yaml | 72 ++++++++++++++++++++++++--------------------- 3 files changed, 41 insertions(+), 37 deletions(-) diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 2c52d9d7..3193d60b 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "9.0.6" + version: "9.1.2" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index 0d1af861..055b937e 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "@changesets/cli": "^2.27.1", "@commitlint/cli": "^19.2.2", "@commitlint/config-conventional": "^19.2.2", - "@moonrepo/cli": "^1.23.4", + "@moonrepo/cli": "^1.24.6", "ava": "^6.1.2", "glob": "^10.3.12", "husky": "^9.0.11", @@ -36,7 +36,7 @@ "engines": { "node": "~20.12" }, - "packageManager": "pnpm@9.0.6", + "packageManager": "pnpm@9.1.2", "dependencies": { "@changesets/changelog-github": "^0.5.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7f5fe6d9..828337d7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,8 +24,8 @@ importers: specifier: ^19.2.2 version: 19.2.2 "@moonrepo/cli": - specifier: ^1.23.4 - version: 1.23.4 + specifier: ^1.24.6 + version: 1.24.6 ava: specifier: ^6.1.2 version: 6.1.2 @@ -744,65 +744,65 @@ packages: } hasBin: true - "@moonrepo/cli@1.23.4": + "@moonrepo/cli@1.24.6": resolution: { - integrity: sha512-BbLyLXAA6A9U9cwxXQhf5PiOIWY/kHoORAKT0YvXTvuzhBZq9vuRRpVnMdBLGYCMzAb4tDry0X+HtAF65QcOxQ==, + integrity: sha512-pEkUvxOhc4QfqRRnBMKN/KaoAxc4amsEcBPXitbZcjOrmMr9khJnmGS7kJ78UsyttJprQ4SFanSa4uo4cnI3Ng==, } hasBin: true - "@moonrepo/core-linux-arm64-gnu@1.23.4": + "@moonrepo/core-linux-arm64-gnu@1.24.6": resolution: { - integrity: sha512-zN3+4xSeH+9kaMyu5XrHSA5JRn/i8NZ6IU2rkXZj8Ouh52e16OW9vhoBU1+mDnt7IytCEy36lVREiRWYMzsdZw==, + integrity: sha512-FigCIde1fjl6tXEODi5dyHwyt/lg/YK9pHFp+OXjFFLPN5kr+/uKFqp4Va37rbOh7dp8sPh/glyy2Bk0z9DSbg==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-arm64-musl@1.23.4": + "@moonrepo/core-linux-arm64-musl@1.24.6": resolution: { - integrity: sha512-f43Xk+Q74dVwDcQCEO8QIYdjCnjKCv33K8ViiY8ZZ9ed+qWVxncVTRUVqxyxasx2LZHC1aSPdUF+TBwFAUROlw==, + integrity: sha512-94qrA0hur0l1yzygT5HYxgK2urNWQVIe+nZ5AeoqfFAEy5Ym2eVrtNFQ78xtXBprtlkaa/sGqhmFWCpEv6orbg==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-x64-gnu@1.23.4": + "@moonrepo/core-linux-x64-gnu@1.24.6": resolution: { - integrity: sha512-RXyztIUDh3bWLSb8LfaE4okqJHeGx2XR4tJn1DyW0eQJs91cDfAjiyUUfgkypxOXH8/T+ib3x2vi978P2zGFog==, + integrity: sha512-D92XTkhiUH4N1A1IXnLIml6n1q4zbVzqImQ8hwuDxnHQzSeF786wXqA/l7zTANM70QeMdtERQK8PC+t46sVKdA==, } cpu: [x64] os: [linux] - "@moonrepo/core-linux-x64-musl@1.23.4": + "@moonrepo/core-linux-x64-musl@1.24.6": resolution: { - integrity: sha512-S+XoiSPsZBCoiw9ZkXoQ56IlALiH6+goMgBjkX6zehuGPyNKl29pBQwt2kLcW0AUtYZBjGc0tpVKw55Ac7Yq2Q==, + integrity: sha512-uw890kv86qHvXZiEbRDYBSvhdBPo9G41qJjSysXChhHV0kgR9Lo9VmQDr1nPFYEFzX4ukX1UVqaRd+5ILGCHUA==, } cpu: [x64] os: [linux] - "@moonrepo/core-macos-arm64@1.23.4": + "@moonrepo/core-macos-arm64@1.24.6": resolution: { - integrity: sha512-2VAgtPcuRJeS9bqCJBd+rj1Q7eR8omwDVEUIV4TbLLoqfCpqIvhuian1i5I9dz/cRyKFsYimvRDM51UZJ/Mflw==, + integrity: sha512-3s4/JFDTnu/EJjrBbqZRZtoMRZUp+e2n0aNcbGQWPil/HNWa0/ce+yz7jjeBQYY5nhdm/Xv5GADfwc4VtgRabQ==, } cpu: [arm64] os: [darwin] - "@moonrepo/core-macos-x64@1.23.4": + "@moonrepo/core-macos-x64@1.24.6": resolution: { - integrity: sha512-0PeUOqCm2wdA66Av6usxZmrh6CcvV/5fbQQjxj3KiMLLjk8iSVgQxHEqpZOg1KKwy5xC4ONxVDlm3b7WB/AyPQ==, + integrity: sha512-FcLTHoyDfRZ1PsyiLmD9+bdl2PGf/KEdostUYY8RGm8Xrf0AKnhfFO0f9AzHmezB51+4p+pBADieVSVnK0kzuA==, } cpu: [x64] os: [darwin] - "@moonrepo/core-windows-x64-msvc@1.23.4": + "@moonrepo/core-windows-x64-msvc@1.24.6": resolution: { - integrity: sha512-AY8VycN3AMoAbySIksJ4e+ZmlAhw+EmqQyCN+UeE+qfAnAuahOxb1SO8AdabjJbuyMxGdCFDHHEUDZHgufTTvw==, + integrity: sha512-RszuKT+H52jRkbsycEZRrtDZIklSi8KBPy/Tp/ZmQnloX/7HVgUCK9u9za5xIuKwvnUPSa+3F/n4sldoj+RehQ==, } cpu: [x64] os: [win32] @@ -1508,6 +1508,7 @@ packages: integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==, } engines: { node: ">=10" } + deprecated: This package is no longer supported. argparse@1.0.10: resolution: @@ -2575,6 +2576,7 @@ packages: integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==, } engines: { node: ">=10" } + deprecated: This package is no longer supported. get-caller-file@2.0.5: resolution: @@ -2853,6 +2855,7 @@ packages: { integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, } + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.4: resolution: @@ -3699,6 +3702,7 @@ packages: { integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==, } + deprecated: This package is no longer supported. object-assign@4.1.1: resolution: @@ -5543,37 +5547,37 @@ snapshots: - encoding - supports-color - "@moonrepo/cli@1.23.4": + "@moonrepo/cli@1.24.6": dependencies: detect-libc: 2.0.3 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.23.4 - "@moonrepo/core-linux-arm64-musl": 1.23.4 - "@moonrepo/core-linux-x64-gnu": 1.23.4 - "@moonrepo/core-linux-x64-musl": 1.23.4 - "@moonrepo/core-macos-arm64": 1.23.4 - "@moonrepo/core-macos-x64": 1.23.4 - "@moonrepo/core-windows-x64-msvc": 1.23.4 - - "@moonrepo/core-linux-arm64-gnu@1.23.4": + "@moonrepo/core-linux-arm64-gnu": 1.24.6 + "@moonrepo/core-linux-arm64-musl": 1.24.6 + "@moonrepo/core-linux-x64-gnu": 1.24.6 + "@moonrepo/core-linux-x64-musl": 1.24.6 + "@moonrepo/core-macos-arm64": 1.24.6 + "@moonrepo/core-macos-x64": 1.24.6 + "@moonrepo/core-windows-x64-msvc": 1.24.6 + + "@moonrepo/core-linux-arm64-gnu@1.24.6": optional: true - "@moonrepo/core-linux-arm64-musl@1.23.4": + "@moonrepo/core-linux-arm64-musl@1.24.6": optional: true - "@moonrepo/core-linux-x64-gnu@1.23.4": + "@moonrepo/core-linux-x64-gnu@1.24.6": optional: true - "@moonrepo/core-linux-x64-musl@1.23.4": + "@moonrepo/core-linux-x64-musl@1.24.6": optional: true - "@moonrepo/core-macos-arm64@1.23.4": + "@moonrepo/core-macos-arm64@1.24.6": optional: true - "@moonrepo/core-macos-x64@1.23.4": + "@moonrepo/core-macos-x64@1.24.6": optional: true - "@moonrepo/core-windows-x64-msvc@1.23.4": + "@moonrepo/core-windows-x64-msvc@1.24.6": optional: true "@next/env@14.2.1": {} From df2ab7ed77d385593342a3ced7bfded94bd8af8e Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 24 May 2024 14:08:25 -0600 Subject: [PATCH 183/295] chore: added changeset --- .changeset/silver-pianos-share.md | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .changeset/silver-pianos-share.md diff --git a/.changeset/silver-pianos-share.md b/.changeset/silver-pianos-share.md new file mode 100644 index 00000000..0fcc847e --- /dev/null +++ b/.changeset/silver-pianos-share.md @@ -0,0 +1,41 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated illustrated message and drop zone tokens + +## Design Motivation + +- The previous tokens had the incorrect types. By fixing the type, they can reference the updated tokens that are replacing them. +- Illustrated message now has three sizes (S, M, L) in Spectrum 2 to cover a wider range of use cases +- Component font size tokens now specify font in the token name + +## Token Diff + +_Tokens added (12):_ + +- `drop-zone-body-font-size` +- `drop-zone-cjk-title-font-size` +- `drop-zone-title-font-size` +- `illustrated-message-large-body-font-size` +- `illustrated-message-large-cjk-title-font-size` +- `illustrated-message-large-title-font-size` +- `illustrated-message-medium-body-font-size` +- `illustrated-message-medium-cjk-title-font-size` +- `illustrated-message-medium-title-font-size` +- `illustrated-message-small-body-font-size` +- `illustrated-message-small-cjk-title-font-size` +- `illustrated-message-small-title-font-size` + +_Newly deprecated tokens (6):_ + +- `drop-zone-body-size` +- `drop-zone-cjk-title-size` +- `drop-zone-title-size` +- `illustrated-message-body-size` +- `illustrated-message-cjk-title-size` +- `illustrated-message-title-size` + +_Token value updated (1):_ + +- `drop-zone-border-dash-gap` From cd3057a5ac1b23860b1518f10773f173f2ea1149 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 24 May 2024 20:33:14 +0000 Subject: [PATCH 184/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 42 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 52 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 9736f49f..786fa509 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -43,6 +43,7 @@ "red-snails-roll", "rotten-rice-end", "silly-radios-float", + "silver-pianos-share", "six-phones-rescue", "slimy-emus-enjoy", "small-clocks-jam", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 8cb2f570..2badf545 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,47 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.35 + +### Minor Changes + +- [#337](https://github.com/adobe/spectrum-tokens/pull/337) [`df2ab7e`](https://github.com/adobe/spectrum-tokens/commit/df2ab7ed77d385593342a3ced7bfded94bd8af8e) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated illustrated message and drop zone tokens + + ## Design Motivation + + - The previous tokens had the incorrect types. By fixing the type, they can reference the updated tokens that are replacing them. + - Illustrated message now has three sizes (S, M, L) in Spectrum 2 to cover a wider range of use cases + - Component font size tokens now specify font in the token name + + ## Token Diff + + _Tokens added (12):_ + + - `drop-zone-body-font-size` + - `drop-zone-cjk-title-font-size` + - `drop-zone-title-font-size` + - `illustrated-message-large-body-font-size` + - `illustrated-message-large-cjk-title-font-size` + - `illustrated-message-large-title-font-size` + - `illustrated-message-medium-body-font-size` + - `illustrated-message-medium-cjk-title-font-size` + - `illustrated-message-medium-title-font-size` + - `illustrated-message-small-body-font-size` + - `illustrated-message-small-cjk-title-font-size` + - `illustrated-message-small-title-font-size` + + _Newly deprecated tokens (6):_ + + - `drop-zone-body-size` + - `drop-zone-cjk-title-size` + - `drop-zone-title-size` + - `illustrated-message-body-size` + - `illustrated-message-cjk-title-size` + - `illustrated-message-title-size` + + _Token value updated (1):_ + + - `drop-zone-border-dash-gap` + ## 13.0.0-beta.34 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 094b7a57..e43aece6 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.34", + "version": "13.0.0-beta.35", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index a90d7ab0..f6bc45f6 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.6 + +### Patch Changes + +- Updated dependencies [[`df2ab7e`](https://github.com/adobe/spectrum-tokens/commit/df2ab7ed77d385593342a3ced7bfded94bd8af8e)]: + - @adobe/spectrum-tokens@13.0.0-beta.35 + ## 0.0.2-beta.5 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 4fbc49c4..c71beca0 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.5", + "version": "0.0.2-beta.6", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From cc21bb51de692031fbc03b031dd152e545912854 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Fri, 31 May 2024 17:54:04 +0000 Subject: [PATCH 185/295] [create-pull-request] automated change --- packages/tokens/src/icons.json | 923 +++++++++++++++++- .../tokens/src/semantic-color-palette.json | 27 +- 2 files changed, 928 insertions(+), 22 deletions(-) diff --git a/packages/tokens/src/icons.json b/packages/tokens/src/icons.json index 3c889fc3..a8a6983d 100644 --- a/packages/tokens/src/icons.json +++ b/packages/tokens/src/icons.json @@ -3,7 +3,8 @@ "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-50}", - "uuid": "9e04025f-b58c-491a-8569-1965ae074f7b" + "uuid": "9e04025f-b58c-491a-8569-1965ae074f7b", + "deprecated": true }, "icon-color-primary-default": { "component": "icon", @@ -34,24 +35,9 @@ }, "icon-color-green-primary-default": { "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "a0717159-cc62-4ba1-b1f1-a69dfb88c6ee" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "260ff567-2bdb-48cc-9576-f4f7629d3a8f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "d6852796-baaa-4f95-9ce7-cc2fd5a829f1" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-800}", + "uuid": "a0717159-cc62-4ba1-b1f1-a69dfb88c6ee" }, "icon-color-red-primary-default": { "component": "icon", @@ -85,7 +71,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1000}", + "value": "{yellow-1200}", "uuid": "5ebf8291-23f8-4806-865d-4ebab38ff03c" }, "wireframe": { @@ -94,5 +80,900 @@ "uuid": "4a1eeded-e467-46be-a787-78555b2fe353" } } + }, + "icon-color-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-content-color-hover}", + "uuid": "2a3d8ce3-6294-41b2-ad19-c6b9b6ed7e10" + }, + "icon-color-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-content-color-down}", + "uuid": "83223069-7a05-4b61-b1ec-2af8e712e0a2" + }, + "icon-color-blue-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-1000}", + "uuid": "d5f07e5a-b59b-4613-9eab-eae3a74c67f2" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-900}", + "uuid": "17dd2bcd-e66f-4c86-8335-47bd3828a2cf" + } + } + }, + "icon-color-blue-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-1100}", + "uuid": "2d2a2756-332e-4d78-9385-e50fd8b5edcf" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-1000}", + "uuid": "b775d1a5-2951-4d51-9a48-265f46e8edc3" + } + } + }, + "icon-color-brown-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-800}", + "uuid": "59038eb6-5b6f-4fa7-8a5d-9bf78db26fa9" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-700}", + "uuid": "bd6c966d-0b33-4f68-9b84-9e7ae0082805" + } + } + }, + "icon-color-brown-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-900}", + "uuid": "5821a2cf-320d-4947-8289-2537eeef3154" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-800}", + "uuid": "00757309-91b4-4a6a-9897-32db62d9e94b" + } + } + }, + "icon-color-brown-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-1000}", + "uuid": "16f958d5-8128-4774-b3ec-3ba5dd41f4fa" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-900}", + "uuid": "ac16c318-bf3a-49f7-a696-a7aaf8eb4335" + } + } + }, + "icon-color-celery-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-700}", + "uuid": "347e56ff-3c87-49ca-b5c3-b359f33a0203" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-900}", + "uuid": "c7a01756-b63e-4f18-b700-26b3f183e2c8" + } + } + }, + "icon-color-celery-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "uuid": "00213ade-1251-4e7f-9020-08d3f46bb3a6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-1000}", + "uuid": "44a0a5c5-7131-42c4-859d-fa9541dff287" + } + } + }, + "icon-color-celery-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-900}", + "uuid": "4d42768e-6c50-4b41-bfa9-f626119d92b0" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-1100}", + "uuid": "a16feeab-27da-4d04-af0b-2a45cc14982c" + } + } + }, + "icon-color-chartreuse-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-600}", + "uuid": "ded3802a-2b38-405d-a437-193bf1e061a0" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-1000}", + "uuid": "a407df08-a00b-421a-b999-d37097debc26" + } + } + }, + "icon-color-chartreuse-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-700}", + "uuid": "b263dc42-bcc1-4073-a230-81707fe7f388" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-1100}", + "uuid": "a63751a9-4d3d-4dfb-9028-3aaecf11df47" + } + } + }, + "icon-color-chartreuse-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-800}", + "uuid": "dc16f7b1-8b33-42d8-a292-f6efbd3d9f43" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-1200}", + "uuid": "a8dcf645-ae32-4870-90bf-4d802837cf08" + } + } + }, + "icon-color-cinnamon-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-800}", + "uuid": "fcf4219b-fa42-4693-ba34-fc5f46bfcde8" + }, + "icon-color-cinnamon-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-900}", + "uuid": "a91d68ae-30ac-496b-9558-39272e9926c4" + }, + "icon-color-cinnamon-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-1000}", + "uuid": "6cb36abc-7d86-4df0-a96d-36a4308a8ebd" + }, + "icon-color-cyan-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cyan-800}", + "uuid": "2855caf0-9b6d-4d45-bdb8-30aab37a237c" + }, + "icon-color-cyan-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cyan-900}", + "uuid": "2f68ac4a-be55-4fc7-b96e-987bdb5956ca" + }, + "icon-color-cyan-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cyan-1000}", + "uuid": "c6ae865c-1938-4eec-b89c-7f793dc3f049" + }, + "icon-color-fuchsia-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-900}", + "uuid": "0aedb32f-f3d7-4fa9-82d2-aee9ca727cfe" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-700}", + "uuid": "ec2b1658-d174-49c9-a36a-7f80d97a1ee8" + } + } + }, + "icon-color-fuchsia-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-1000}", + "uuid": "fd2f3488-d5bb-4f36-8799-a0168ae8ca5c" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-800}", + "uuid": "0a66c0d9-0a0a-4f0d-9bb3-cbdb2bc12842" + } + } + }, + "icon-color-fuchsia-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-1100}", + "uuid": "0610e1fa-387f-4018-bbb2-bda7b30c74a3" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-900}", + "uuid": "6964ef24-8178-4513-8d9a-5240973622fb" + } + } + }, + "icon-color-green-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-900}", + "uuid": "9a667090-665d-47b2-b000-5a9f4fe26fcf" + }, + "icon-color-green-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-1000}", + "uuid": "c0acc956-e9de-469b-8919-aa0d8b762bb3" + }, + "icon-color-indigo-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-900}", + "uuid": "b6c15610-dc9a-4b7c-9391-247a0f4b56ff" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-700}", + "uuid": "2e4457c1-e637-4f22-909d-643dd535b5fd" + } + } + }, + "icon-color-indigo-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-1000}", + "uuid": "d6a54fc4-c4d9-403a-ba71-f525d36586ec" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-800}", + "uuid": "fc9ef846-e264-498c-9b7a-be9a9164f3d3" + } + } + }, + "icon-color-indigo-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-1100}", + "uuid": "ff60b02b-f205-48be-80c0-a362f7b72e27" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-900}", + "uuid": "f21187bf-8dbe-4eee-9ce9-c76d08517a6c" + } + } + }, + "icon-color-magenta-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-900}", + "uuid": "3fb3630d-e7a3-4807-93c1-c5da4a8f642b" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-700}", + "uuid": "7b3f5848-6a8c-47fe-aacd-ad2f1af53306" + } + } + }, + "icon-color-magenta-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-1000}", + "uuid": "b81fb79d-69dc-4bde-b3d6-661a7719a6e8" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-800}", + "uuid": "23dc0d7b-fb23-460a-b9f1-7a9a7496c107" + } + } + }, + "icon-color-magenta-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-1100}", + "uuid": "31aa02cb-2f5f-4803-bf5d-4e97816472be" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-900}", + "uuid": "042aa474-5cf0-4cdc-a75d-19eac80a0ade" + } + } + }, + "icon-color-orange-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-700}", + "uuid": "d035f399-5154-4f0e-b5aa-434644e19f4b" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-900}", + "uuid": "1ea9d171-f3ba-40fd-bd0b-1e0ebaf68f01" + } + } + }, + "icon-color-orange-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-800}", + "uuid": "726e95d7-f687-4e9c-b050-2e54cc1b0b77" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-1000}", + "uuid": "d35dd0cd-49b0-4430-9fe6-9dcf0e9e5874" + } + } + }, + "icon-color-orange-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-900}", + "uuid": "cb36fbb9-e88f-4965-a67d-8a12f10fb445" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-1100}", + "uuid": "4534a7d3-b2b0-4e94-8366-030ac144031c" + } + } + }, + "icon-color-pink-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-800}", + "uuid": "abd32483-3555-4d1e-831b-9799db14d39c" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-700}", + "uuid": "4a4d6a11-1343-40c7-b7d3-d25d6f1d4ed3" + } + } + }, + "icon-color-pink-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-900}", + "uuid": "c516dfa3-8921-47d6-99fe-976e3d93adef" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-800}", + "uuid": "88bf5d43-7655-43e6-8844-a94f4696bde0" + } + } + }, + "icon-color-pink-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-1000}", + "uuid": "f3b7c0ba-eb0f-46af-bf89-9e1f46afa937" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-900}", + "uuid": "b4ead77c-aec3-4dc5-85c4-ab0e62231232" + } + } + }, + "icon-color-purple-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-900}", + "uuid": "7543b9c6-aea2-4dc9-ad2d-204d6f1d2185" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-700}", + "uuid": "50b28c39-4b4e-43dc-b742-e85a892e843a" + } + } + }, + "icon-color-purple-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-1000}", + "uuid": "740f2726-16e3-4011-8d2c-aaf504be8f14" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-800}", + "uuid": "2e9e7c94-5454-41d9-95e3-8e1e91c41f14" + } + } + }, + "icon-color-purple-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-1100}", + "uuid": "fbec43d7-90e6-424d-8f77-5a39ef739d7a" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-900}", + "uuid": "0ff09a0f-33db-40ee-9b36-ed7db52aafbd" + } + } + }, + "icon-color-red-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-1000}", + "uuid": "5015c992-9d52-4e30-a4cc-e605a0c99545" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-800}", + "uuid": "362d9053-52d9-478a-aec9-b56fd805826a" + } + } + }, + "icon-color-red-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-1100}", + "uuid": "e92b61d2-7c99-44ba-bc4b-94bf9cff3623" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-900}", + "uuid": "d44cbe6f-b3e1-4048-b26c-c98e9be970f5" + } + } + }, + "icon-color-seafoam-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{seafoam-800}", + "uuid": "aca36c2e-6dda-4b5e-a6e1-8db1bbb9e448" + }, + "icon-color-seafoam-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{seafoam-900}", + "uuid": "cdc09dab-b4cc-4034-843b-98afcc36caf0" + }, + "icon-color-seafoam-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{seafoam-1000}", + "uuid": "3d4610d5-0870-4af3-8878-483218d43f92" + }, + "icon-color-silver-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-700}", + "uuid": "be16b346-ec55-4aa1-9767-0cb139dd361c" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-800}", + "uuid": "839005ad-8e22-4e1b-a83b-1fe5be08acb2" + } + } + }, + "icon-color-silver-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-800}", + "uuid": "74b17dd6-9b4b-43a9-9c7f-4c8edc72afc9" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-900}", + "uuid": "a6b610b6-915d-4c40-85ee-9b9fee0b5bd3" + } + } + }, + "icon-color-silver-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-900}", + "uuid": "b44c8584-eec0-4cc4-b3d3-62df9b1877d9" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-1000}", + "uuid": "44ddf65f-494c-4329-b17e-c791c7cfe779" + } + } + }, + "icon-color-turquoise-primary-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-700}", + "uuid": "9a65bd1c-3ddf-4294-83f4-04967372c3f5" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-800}", + "uuid": "9566904a-3610-4668-9fe4-71ece5a58398" + } + } + }, + "icon-color-turquoise-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-800}", + "uuid": "260edfe7-6958-4d5b-8489-9ab3ab681577" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-900}", + "uuid": "a727a9f5-8f36-4e50-b8a4-3383f309785f" + } + } + }, + "icon-color-turquoise-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-900}", + "uuid": "c87c8466-22c1-40cb-9e5e-d661cd6cdcae" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-1000}", + "uuid": "1bbe2749-ba61-4e00-871f-cb3c6decd07c" + } + } + }, + "icon-color-yellow-primary-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-500}", + "uuid": "7d52f667-63c9-4ab9-b92c-10f7f6412632" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-1300}", + "uuid": "4f50d025-f259-4130-bb6c-6fc30474e99d" + } + } + }, + "icon-color-yellow-primary-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-600}", + "uuid": "94b9cfb2-1934-4ee5-88c8-0bf75c226dd3" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-1400}", + "uuid": "f92ad869-5610-46a4-8314-bee58a039d0d" + } + } + }, + "icon-color-disabled-primary": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-400}", + "uuid": "12c9d145-7357-449e-a99a-1154dd5be026" + }, + "icon-color-blue-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-200}", + "uuid": "5f164d93-6efe-4abf-8f4c-9cb5f91bf26c" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-300}", + "uuid": "29c9205e-d39d-419a-b6e1-4e0544a3ca7c" + } + } + }, + "icon-color-brown-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-200}", + "uuid": "40166e04-505e-47ed-b039-0a3827895c36" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-400}", + "uuid": "8da7787f-2d39-4801-a5ea-1b3e69d505a6" + } + } + }, + "icon-color-celery-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-100}", + "uuid": "a5bfd666-a843-4b14-9b7e-1f392a34c4ba" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-400}", + "uuid": "88437eca-ac07-4a83-930a-10861a8ed839" + } + } + }, + "icon-color-chartreuse-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-200}", + "uuid": "0b1869d0-6aca-4e20-904f-954153bb4b73" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-400}", + "uuid": "cad79edb-8add-4b83-ad3e-fcbed050e037" + } + } + }, + "icon-color-cinnamon-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-200}", + "uuid": "a522f597-1ed4-445c-94c4-a594bc50f9ce" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-300}", + "uuid": "cb5eed01-b2f0-4410-8a71-2bf361d61fcc" + } + } + }, + "icon-color-cyan-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cyan-100}", + "uuid": "ac6d3cc6-dab7-400c-82d4-bd0876d241b2" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cyan-400}", + "uuid": "a5fd0ad9-999f-469d-b224-b60e06313cdb" + } + } + }, + "icon-color-fuchsia-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-200}", + "uuid": "707601ab-a624-4466-9ce3-b52552b777a2" + }, + "icon-color-green-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-100}", + "uuid": "7941dc68-44bb-49d5-80ca-3c6952d2acb2" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-400}", + "uuid": "176c986b-8658-4b3e-b559-4080f4fd7834" + } + } + }, + "icon-color-indigo-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-200}", + "uuid": "1c49aee1-a8a2-41ae-b709-7e2d1fbc2705" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-100}", + "uuid": "85432c93-7c00-435b-8298-2ba817cb58bd" + } + } + }, + "icon-color-magenta-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-200}", + "uuid": "2cf7dea9-034c-48a8-8946-d059320ced08" + }, + "icon-color-orange-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-200}", + "uuid": "3ceff0a2-fca9-4d73-82a8-f5098c511e17" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-300}", + "uuid": "73e28358-35bb-4643-a1b8-ae3fd3de206f" + } + } + }, + "icon-color-pink-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-200}", + "uuid": "46d11573-718e-4e38-8493-f3a37a5e7d32" + }, + "icon-color-purple-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-200}", + "uuid": "5a9cdf9a-09a5-42bc-a0bf-6f187c6832c5" + }, + "icon-color-red-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-200}", + "uuid": "c6872759-ff54-48ef-8513-d752ec12f8ca" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-300}", + "uuid": "1fbda732-e276-4dec-8ec7-faeff6cba3a7" + } + } + }, + "icon-color-seafoam-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{seafoam-200}", + "uuid": "975fa979-d134-4d4b-8a27-e50307925ec4" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{seafoam-400}", + "uuid": "39ff1a28-8c57-490f-8cf7-eb63fd3b7ebb" + } + } + }, + "icon-color-silver-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-200}", + "uuid": "98f6376e-01b0-4646-afe1-b52c33700db9" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-400}", + "uuid": "a2c48afa-59de-43af-8ec4-2c573948ae52" + } + } + }, + "icon-color-turquoise-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-200}", + "uuid": "a6478f6c-3a60-42e3-98f7-5cabf91e09af" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-400}", + "uuid": "3d251526-b63d-412c-bb54-712d36c73e8e" + } + } + }, + "icon-color-yellow-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-100}", + "uuid": "3cf7a8f4-9238-4f9f-9c85-97dc38de69d1" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-400}", + "uuid": "0dd236ab-7af8-418e-88dd-0cb45cf5da13" + } + } + }, + "icon-color-inverse-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-50}", + "uuid": "ba10ab97-0c09-4d07-ab7b-050258169d52" + }, + "icon-color-emphasized-background": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "fa5b0690-6ecd-4a3e-8675-ab6445df8946" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index 7ce3c5d1..a7457389 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -438,5 +438,30 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{red-200}", "uuid": "8e9429cf-4c89-47be-bc6e-eeecc632aeb1" + }, + "icon-color-informative": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-visual-color}", + "uuid": "2296b0de-6231-4f89-9992-499b67c6879c" + }, + "icon-color-neutral": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-visual-color}", + "uuid": "29f5b73c-e8e8-4162-b9af-5a8e327baab8" + }, + "icon-color-positive": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{positive-visual-color}", + "uuid": "02f093b3-ab51-42e7-8f6e-26bc7c7cba63" + }, + "icon-color-notice": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{notice-visual-color}", + "uuid": "4bdb8681-f7a1-4bbe-b788-a64c6f9df6ea" + }, + "icon-color-negative": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{negative-visual-color}", + "uuid": "adf2a3f0-d1cd-4b53-8a9c-47ab9cb7bb0f" } -} +} \ No newline at end of file From 523c5d4963ec60272d2d1932fc03abb685bbb61f Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 31 May 2024 12:09:23 -0600 Subject: [PATCH 186/295] fix(token-schema): made wireframe optional in color-set --- packages/tokens/schemas/token-types/color-set.json | 6 +++--- pnpm-lock.yaml | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/tokens/schemas/token-types/color-set.json b/packages/tokens/schemas/token-types/color-set.json index fa228073..cb24904d 100644 --- a/packages/tokens/schemas/token-types/color-set.json +++ b/packages/tokens/schemas/token-types/color-set.json @@ -28,7 +28,7 @@ "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" } }, - "required": ["light", "dark", "wireframe"] + "required": ["light", "dark"] }, { "properties": { @@ -42,7 +42,7 @@ "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" } }, - "required": ["light", "dark", "wireframe"] + "required": ["light", "dark"] }, { "properties": { @@ -56,7 +56,7 @@ "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" } }, - "required": ["light", "dark", "wireframe"] + "required": ["light", "dark"] } ] }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 828337d7..8dc987d4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2641,6 +2641,7 @@ packages: { integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, } + deprecated: Glob versions prior to v9 are no longer supported global-directory@4.0.1: resolution: @@ -4211,6 +4212,7 @@ packages: { integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, } + deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@5.0.5: From 9da9532f1915070d289f7cce6f4e562c2565f889 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 31 May 2024 12:18:16 -0600 Subject: [PATCH 187/295] chore: added changeset --- .changeset/eight-months-cheer.md | 92 ++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 .changeset/eight-months-cheer.md diff --git a/.changeset/eight-months-cheer.md b/.changeset/eight-months-cheer.md new file mode 100644 index 00000000..a01a9dea --- /dev/null +++ b/.changeset/eight-months-cheer.md @@ -0,0 +1,92 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Newly defined S2 Icon colors by the Icons team were incorporated into our system. This includes updates to existing colors and new color additions. More details on icon colors can be found [in this document](https://paper.dropbox.com/doc/S2-Icon-colors-May-update--CPQCbAN3uvmfSCYV5UekAgYkAg-BqbGyRAAL87Ehoqm9WrCB) and [this Figma file](https://www.figma.com/design/KRqwJWgLuW4R7HwFUzKWiB/S2-Icon-color?node-id=0%3A1&t=jRZwm9gOH4dyLwL7-1). + +## Design motivation + +Icons team defined new S2 color tokens needed for their iconography assets. + +## Token diff + +*Tokens added (78):* + + - `icon-color-blue-background` + - `icon-color-blue-primary-down` + - `icon-color-blue-primary-hover` + - `icon-color-brown-background` + - `icon-color-brown-primary-default` + - `icon-color-brown-primary-down` + - `icon-color-brown-primary-hover` + - `icon-color-celery-background` + - `icon-color-celery-primary-default` + - `icon-color-celery-primary-down` + - `icon-color-celery-primary-hover` + - `icon-color-chartreuse-background` + - `icon-color-chartreuse-primary-default` + - `icon-color-chartreuse-primary-down` + - `icon-color-chartreuse-primary-hover` + - `icon-color-cinnamon-background` + - `icon-color-cinnamon-primary-default` + - `icon-color-cinnamon-primary-down` + - `icon-color-cinnamon-primary-hover` + - `icon-color-cyan-background` + - `icon-color-cyan-primary-default` + - `icon-color-cyan-primary-down` + - `icon-color-cyan-primary-hover` + - `icon-color-disabled-primary` + - `icon-color-emphasized-background` + - `icon-color-fuchsia-background` + - `icon-color-fuchsia-primary-default` + - `icon-color-fuchsia-primary-down` + - `icon-color-fuchsia-primary-hover` + - `icon-color-green-background` + - `icon-color-green-primary-down` + - `icon-color-green-primary-hover` + - `icon-color-indigo-background` + - `icon-color-indigo-primary-default` + - `icon-color-indigo-primary-down` + - `icon-color-indigo-primary-hover` + - `icon-color-informative` + - `icon-color-inverse-background` + - `icon-color-magenta-background` + - `icon-color-magenta-primary-default` + - `icon-color-magenta-primary-down` + - `icon-color-magenta-primary-hover` + - `icon-color-negative` + - `icon-color-neutral` + - `icon-color-notice` + - `icon-color-orange-background` + - `icon-color-orange-primary-default` + - `icon-color-orange-primary-down` + - `icon-color-orange-primary-hover` + - `icon-color-pink-background` + - `icon-color-pink-primary-default` + - `icon-color-pink-primary-down` + - `icon-color-pink-primary-hover` + - `icon-color-positive` + - `icon-color-primary-down` + - `icon-color-primary-hover` + - `icon-color-purple-background` + - `icon-color-purple-primary-default` + - `icon-color-purple-primary-down` + - `icon-color-purple-primary-hover` + - `icon-color-red-background` + - `icon-color-red-primary-down` + - `icon-color-red-primary-hover` + - `icon-color-seafoam-background` + - `icon-color-seafoam-primary-default` + - `icon-color-seafoam-primary-down` + - `icon-color-seafoam-primary-hover` + - `icon-color-silver-background` + - `icon-color-silver-primary-default` + - `icon-color-silver-primary-down` + - `icon-color-silver-primary-hover` + - `icon-color-turquoise-background` + - `icon-color-turquoise-primary-default` + - `icon-color-turquoise-primary-down` + - `icon-color-turquoise-primary-hover` + - `icon-color-yellow-background` + - `icon-color-yellow-primary-down` + - `icon-color-yellow-primary-hover` From 737ed4d7db207906899bc6db1d0670627ec996bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 31 May 2024 18:24:07 +0000 Subject: [PATCH 188/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 93 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 ++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 103 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 786fa509..2d9f4dc4 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -20,6 +20,7 @@ "dirty-keys-deny", "dirty-pets-attend", "dull-eyes-grab", + "eight-months-cheer", "empty-steaks-dress", "five-steaks-argue", "fluffy-bees-play", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 2badf545..2ab685c5 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,98 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.36 + +### Minor Changes + +- [#342](https://github.com/adobe/spectrum-tokens/pull/342) [`9da9532`](https://github.com/adobe/spectrum-tokens/commit/9da9532f1915070d289f7cce6f4e562c2565f889) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Newly defined S2 Icon colors by the Icons team were incorporated into our system. This includes updates to existing colors and new color additions. More details on icon colors can be found [in this document](https://paper.dropbox.com/doc/S2-Icon-colors-May-update--CPQCbAN3uvmfSCYV5UekAgYkAg-BqbGyRAAL87Ehoqm9WrCB) and [this Figma file](https://www.figma.com/design/KRqwJWgLuW4R7HwFUzKWiB/S2-Icon-color?node-id=0%3A1&t=jRZwm9gOH4dyLwL7-1). + + ## Design motivation + + Icons team defined new S2 color tokens needed for their iconography assets. + + ## Token diff + + _Tokens added (78):_ + + - `icon-color-blue-background` + - `icon-color-blue-primary-down` + - `icon-color-blue-primary-hover` + - `icon-color-brown-background` + - `icon-color-brown-primary-default` + - `icon-color-brown-primary-down` + - `icon-color-brown-primary-hover` + - `icon-color-celery-background` + - `icon-color-celery-primary-default` + - `icon-color-celery-primary-down` + - `icon-color-celery-primary-hover` + - `icon-color-chartreuse-background` + - `icon-color-chartreuse-primary-default` + - `icon-color-chartreuse-primary-down` + - `icon-color-chartreuse-primary-hover` + - `icon-color-cinnamon-background` + - `icon-color-cinnamon-primary-default` + - `icon-color-cinnamon-primary-down` + - `icon-color-cinnamon-primary-hover` + - `icon-color-cyan-background` + - `icon-color-cyan-primary-default` + - `icon-color-cyan-primary-down` + - `icon-color-cyan-primary-hover` + - `icon-color-disabled-primary` + - `icon-color-emphasized-background` + - `icon-color-fuchsia-background` + - `icon-color-fuchsia-primary-default` + - `icon-color-fuchsia-primary-down` + - `icon-color-fuchsia-primary-hover` + - `icon-color-green-background` + - `icon-color-green-primary-down` + - `icon-color-green-primary-hover` + - `icon-color-indigo-background` + - `icon-color-indigo-primary-default` + - `icon-color-indigo-primary-down` + - `icon-color-indigo-primary-hover` + - `icon-color-informative` + - `icon-color-inverse-background` + - `icon-color-magenta-background` + - `icon-color-magenta-primary-default` + - `icon-color-magenta-primary-down` + - `icon-color-magenta-primary-hover` + - `icon-color-negative` + - `icon-color-neutral` + - `icon-color-notice` + - `icon-color-orange-background` + - `icon-color-orange-primary-default` + - `icon-color-orange-primary-down` + - `icon-color-orange-primary-hover` + - `icon-color-pink-background` + - `icon-color-pink-primary-default` + - `icon-color-pink-primary-down` + - `icon-color-pink-primary-hover` + - `icon-color-positive` + - `icon-color-primary-down` + - `icon-color-primary-hover` + - `icon-color-purple-background` + - `icon-color-purple-primary-default` + - `icon-color-purple-primary-down` + - `icon-color-purple-primary-hover` + - `icon-color-red-background` + - `icon-color-red-primary-down` + - `icon-color-red-primary-hover` + - `icon-color-seafoam-background` + - `icon-color-seafoam-primary-default` + - `icon-color-seafoam-primary-down` + - `icon-color-seafoam-primary-hover` + - `icon-color-silver-background` + - `icon-color-silver-primary-default` + - `icon-color-silver-primary-down` + - `icon-color-silver-primary-hover` + - `icon-color-turquoise-background` + - `icon-color-turquoise-primary-default` + - `icon-color-turquoise-primary-down` + - `icon-color-turquoise-primary-hover` + - `icon-color-yellow-background` + - `icon-color-yellow-primary-down` + - `icon-color-yellow-primary-hover` + ## 13.0.0-beta.35 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index e43aece6..d78d5fe7 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.35", + "version": "13.0.0-beta.36", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index f6bc45f6..1c9178bf 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.7 + +### Patch Changes + +- Updated dependencies [[`9da9532`](https://github.com/adobe/spectrum-tokens/commit/9da9532f1915070d289f7cce6f4e562c2565f889)]: + - @adobe/spectrum-tokens@13.0.0-beta.36 + ## 0.0.2-beta.6 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index c71beca0..35bdc428 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.6", + "version": "0.0.2-beta.7", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 11ac9598fbb301e494d7c961a2e7820ba362bc3e Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Mon, 10 Jun 2024 23:59:12 +0000 Subject: [PATCH 189/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 377 +++++++++++++--------- 1 file changed, 228 insertions(+), 149 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 770f571a..8732714e 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2632,14 +2632,16 @@ "breadcrumbs-height": { "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-300}", - "uuid": "2d39863c-6987-413c-90d8-07fcc506a0d4" + "value": "{component-height-200}", + "uuid": "2d39863c-6987-413c-90d8-07fcc506a0d4", + "deprecated": true }, "breadcrumbs-height-compact": { "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "8393f599-37e8-484a-a1c6-0934ce15a507" + "value": "{component-height-100}", + "uuid": "8393f599-37e8-484a-a1c6-0934ce15a507", + "deprecated": true }, "breadcrumbs-height-multiline": { "component": "breadcrumbs", @@ -2652,42 +2654,24 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "84px", + "value": "90px", "uuid": "5e7426da-1a1e-4d37-8c96-4fdac06bfad5" } } }, "breadcrumbs-top-to-text": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "d084038e-bc31-43be-99ee-13cf727eaf9d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "c4e58bb6-dcd7-4b64-b881-5b918c346989" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-text-200}", + "uuid": "d084038e-bc31-43be-99ee-13cf727eaf9d", + "deprecated": true }, "breadcrumbs-top-to-text-compact": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "b19547e2-bd8f-435d-b726-4f2ce6a83984" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "da5c0b1f-a8df-407c-888f-ac62d1fefa7c" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-text-100}", + "uuid": "b19547e2-bd8f-435d-b726-4f2ce6a83984", + "deprecated": true }, "breadcrumbs-top-to-text-multiline": { "component": "breadcrumbs", @@ -2695,47 +2679,29 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "4px", "uuid": "138070fe-1f06-48b4-ac49-f8ff117c5f42" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "5px", "uuid": "ea82fc23-82e7-4116-a8bb-186a253675ad" } } }, "breadcrumbs-bottom-to-text": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f0e6a20d-8c2d-4aa3-9060-b6ca66aa7943" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "971f1589-f80b-4c1e-8814-b5c286c5f561" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-bottom-to-text-200}", + "uuid": "f0e6a20d-8c2d-4aa3-9060-b6ca66aa7943", + "deprecated": true }, "breadcrumbs-bottom-to-text-compact": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "70a356be-c304-4bb4-a9df-97806931f089" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "d783bd6f-fc7a-4be4-b53a-b8be86018b7b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-bottom-to-text-100}", + "uuid": "70a356be-c304-4bb4-a9df-97806931f089", + "deprecated": true }, "breadcrumbs-bottom-to-text-multiline": { "component": "breadcrumbs", @@ -2748,26 +2714,17 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "11px", "uuid": "a51a1142-e38e-4055-bd45-ad2bd0045880" } } }, "breadcrumbs-start-edge-to-text": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "6d632147-5a1e-4a19-9fca-019b234d0455" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-start-edge-to-text-large}", + "uuid": "a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c", + "deprecated": true }, "breadcrumbs-end-edge-to-text": { "component": "breadcrumbs", @@ -2793,118 +2750,85 @@ }, "breadcrumbs-top-to-separator-icon": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "15e56281-5fc1-4b59-b815-fc333231e364" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "882046d8-7111-4020-bf31-b8eb9d9013e0" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-top-to-separator-large}", + "uuid": "15e56281-5fc1-4b59-b815-fc333231e364", + "deprecated": true }, "breadcrumbs-top-to-separator-icon-compact": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a63e8df1-124f-4f3e-9e1b-ba422b8d8257" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "f6c5b011-ec25-42ea-a708-d7dca1b5fb5a" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-top-to-separator-medium}", + "uuid": "a63e8df1-124f-4f3e-9e1b-ba422b8d8257", + "deprecated": true }, "breadcrumbs-top-to-separator-icon-multiline": { "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "6b310160-ab2e-40fd-9216-21ddcb36b575" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-top-to-separator-multiline}", + "uuid": "6b310160-ab2e-40fd-9216-21ddcb36b575", + "deprecated": true }, "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "eb3b2566-6fc1-4a2c-a8cf-e40af3d34715" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-separator-icon-to-bottom-text-multiline}", + "uuid": "eb3b2566-6fc1-4a2c-a8cf-e40af3d34715", + "deprecated": true } } }, "breadcrumbs-separator-icon-to-bottom-text-multiline": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "56dd2fd0-c7a3-4f2c-bda9-8e6ba6d99e6c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "571239ce-690f-49ee-9e71-d14bbfe4b279" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-separator-to-bottom-text-multiline}", + "uuid": "56dd2fd0-c7a3-4f2c-bda9-8e6ba6d99e6c", + "deprecated": true }, "breadcrumbs-truncated-menu-to-separator-icon": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "1fe2a3df-3179-4c4a-8d1f-de41297b6d74" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-truncated-menu-to-separator}", + "uuid": "1fe2a3df-3179-4c4a-8d1f-de41297b6d74", + "deprecated": true }, "breadcrumbs-top-to-truncated-menu": { "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "751734bd-1c58-4222-bbd8-8b2349f2fbd2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "793da276-18a6-46d0-a0e5-a1676c4df583" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "751734bd-1c58-4222-bbd8-8b2349f2fbd2" }, "breadcrumbs-top-to-truncated-menu-compact": { + "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{breadcrumbs-top-to-truncated-menu}", + "uuid": "e0aba287-799f-4621-97cb-563352002a20", + "deprecated": true + }, + "breadcrumbs-start-edge-to-truncated-menu": { + "component": "breadcrumbs", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "b1fba444-c281-4be4-bded-4852b551cfee" + }, + "breadcrumbs-truncated-menu-to-bottom-text": { "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", - "uuid": "e0aba287-799f-4621-97cb-563352002a20" + "uuid": "2285d870-68ec-469f-a034-2fdeb31e33f0" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", - "uuid": "d5e92b0a-6d37-4b77-a5d0-6c4f1b9a722c" + "uuid": "154bce30-bfe2-445b-bbdd-69efce5565ae" } } }, - "breadcrumbs-start-edge-to-truncated-menu": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "b1fba444-c281-4be4-bded-4852b551cfee" - }, - "breadcrumbs-truncated-menu-to-bottom-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "2285d870-68ec-469f-a034-2fdeb31e33f0" - }, "avatar-size-50": { "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -8210,5 +8134,160 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{illustrated-message-medium-body-font-size}", "uuid": "644593be-82da-4ae4-ae57-fabebd4513ca" + }, + "breadcrumbs-separator-to-bottom-text-multiline": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "ba160ed7-e66b-4dd1-bef8-e91fe9b05d2c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "a1c90c6d-851d-495f-99cc-bbeb0c6fdd4f" + } + } + }, + "breadcrumbs-start-edge-to-text-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "04141c6f-50ff-4301-a7b5-315bbd9cac18" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "1d7bd78d-4469-4385-89e7-fcd574cc6368" + } + } + }, + "breadcrumbs-start-edge-to-text-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "941f9040-ddb7-419c-ac05-dfa24effa055" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "e87a054b-dceb-4462-a8fc-733700cc0f79" + } + } + }, + "breadcrumbs-start-edge-to-text-multiline": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "3dd655e7-f0d4-4fa4-a885-4a7aff9510fd" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "60a75c05-a9cd-4ecf-89e5-0bca9e137e9f" + } + } + }, + "breadcrumbs-top-to-separator-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "2e8091e4-f60b-438c-bcbb-111eb243900d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "2e12202a-8099-4a4d-b06d-703deaf20862" + } + } + }, + "breadcrumbs-top-to-separator-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "fdbf3b4b-7d6e-4464-8514-17c1b4790db6" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "fcbd2bcb-7f53-4219-9d6b-89c01fd50da7" + } + } + }, + "breadcrumbs-top-to-separator-multiline": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "96d7dff4-4b3d-433a-8f83-8f55a1514812" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "4b7eab87-e6a8-40f6-a071-5aff25493f2f" + } + } + }, + "breadcrumbs-truncated-menu-to-separator": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "963bd7ed-cfc9-4a93-a8a6-a2340ec6479f" + }, + "breadcrumbs-text-to-separator-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "3e19f21e-0c87-4eca-bc21-d4c13bc984ef" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "25d8256e-b05f-43e8-bbc3-5b60c24be29c" + } + } + }, + "breadcrumbs-text-to-separator-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "74d2cda7-385e-4145-8a3e-26065db5e302" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "bf2e3518-154e-4975-b9fb-acbf60b7e154" + } + } + }, + "breadcrumbs-text-to-separator-multiline": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "0d4dd9ba-5b01-432d-a7b2-d95947cfc43d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "fbf763fe-9e35-4cdc-a5ed-9f90e03d23bd" + } + } } -} +} \ No newline at end of file From 3bd0738402f7a69c47d2e1a482646d5eac99d070 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 12 Jun 2024 19:52:37 -0600 Subject: [PATCH 190/295] feat(tokens): added component data to new tokens --- packages/tokens/src/layout-component.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 8732714e..6b2da15f 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8136,6 +8136,7 @@ "uuid": "644593be-82da-4ae4-ae57-fabebd4513ca" }, "breadcrumbs-separator-to-bottom-text-multiline": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8151,6 +8152,7 @@ } }, "breadcrumbs-start-edge-to-text-large": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8166,6 +8168,7 @@ } }, "breadcrumbs-start-edge-to-text-medium": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8181,6 +8184,7 @@ } }, "breadcrumbs-start-edge-to-text-multiline": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8196,6 +8200,7 @@ } }, "breadcrumbs-top-to-separator-large": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8211,6 +8216,7 @@ } }, "breadcrumbs-top-to-separator-medium": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8226,6 +8232,7 @@ } }, "breadcrumbs-top-to-separator-multiline": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8241,11 +8248,13 @@ } }, "breadcrumbs-truncated-menu-to-separator": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "963bd7ed-cfc9-4a93-a8a6-a2340ec6479f" }, "breadcrumbs-text-to-separator-large": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8261,6 +8270,7 @@ } }, "breadcrumbs-text-to-separator-medium": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8276,6 +8286,7 @@ } }, "breadcrumbs-text-to-separator-multiline": { + "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8290,4 +8301,4 @@ } } } -} \ No newline at end of file +} From 10071db844318a51b701c13150e6aeebaa7fcb84 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 12 Jun 2024 19:52:55 -0600 Subject: [PATCH 191/295] chore: updated deps --- .moon/toolchain.yml | 2 +- package.json | 4 +-- pnpm-lock.yaml | 68 ++++++++++++++++++++++----------------------- 3 files changed, 37 insertions(+), 37 deletions(-) diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 3193d60b..8c458071 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "9.1.2" + version: "9.3.0" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index 055b937e..9d636b00 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "@changesets/cli": "^2.27.1", "@commitlint/cli": "^19.2.2", "@commitlint/config-conventional": "^19.2.2", - "@moonrepo/cli": "^1.24.6", + "@moonrepo/cli": "^1.25.5", "ava": "^6.1.2", "glob": "^10.3.12", "husky": "^9.0.11", @@ -36,7 +36,7 @@ "engines": { "node": "~20.12" }, - "packageManager": "pnpm@9.1.2", + "packageManager": "pnpm@9.3.0", "dependencies": { "@changesets/changelog-github": "^0.5.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8dc987d4..753c5ffb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,8 +24,8 @@ importers: specifier: ^19.2.2 version: 19.2.2 "@moonrepo/cli": - specifier: ^1.24.6 - version: 1.24.6 + specifier: ^1.25.5 + version: 1.25.5 ava: specifier: ^6.1.2 version: 6.1.2 @@ -744,65 +744,65 @@ packages: } hasBin: true - "@moonrepo/cli@1.24.6": + "@moonrepo/cli@1.25.5": resolution: { - integrity: sha512-pEkUvxOhc4QfqRRnBMKN/KaoAxc4amsEcBPXitbZcjOrmMr9khJnmGS7kJ78UsyttJprQ4SFanSa4uo4cnI3Ng==, + integrity: sha512-PPc0xiyUqp9omv6W412pkwJqOGJlsKEOqZLhZ1Qu2F2e2KQHrYST4FK8aseyuK4r1qWuqZtS33pneKNIN9Lsmg==, } hasBin: true - "@moonrepo/core-linux-arm64-gnu@1.24.6": + "@moonrepo/core-linux-arm64-gnu@1.25.5": resolution: { - integrity: sha512-FigCIde1fjl6tXEODi5dyHwyt/lg/YK9pHFp+OXjFFLPN5kr+/uKFqp4Va37rbOh7dp8sPh/glyy2Bk0z9DSbg==, + integrity: sha512-zlpyqZcgUwm/pQHi7/NR4I2hGedvYvJ8xY7nHRIvmhNHIpOPiJh6UA0VhNt1GLTuCf3KxuisgEC9Iangtxo3hw==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-arm64-musl@1.24.6": + "@moonrepo/core-linux-arm64-musl@1.25.5": resolution: { - integrity: sha512-94qrA0hur0l1yzygT5HYxgK2urNWQVIe+nZ5AeoqfFAEy5Ym2eVrtNFQ78xtXBprtlkaa/sGqhmFWCpEv6orbg==, + integrity: sha512-d8v9N6FfOnk8tdQJ62So8o3r5hYi1MFyiQIEuXtaZzLNn1Iq3fYeQMJaaCVZ3UI+HXWzwFdt6R5QtoIrS0PfFw==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-x64-gnu@1.24.6": + "@moonrepo/core-linux-x64-gnu@1.25.5": resolution: { - integrity: sha512-D92XTkhiUH4N1A1IXnLIml6n1q4zbVzqImQ8hwuDxnHQzSeF786wXqA/l7zTANM70QeMdtERQK8PC+t46sVKdA==, + integrity: sha512-pzCOcaMHCB96Tg86YlLe5J12K2RLwnQErLDK21ogosDXnT2MVtT+g6qdejli/GsFcvRouHYE2+gFPoJIMtGRvg==, } cpu: [x64] os: [linux] - "@moonrepo/core-linux-x64-musl@1.24.6": + "@moonrepo/core-linux-x64-musl@1.25.5": resolution: { - integrity: sha512-uw890kv86qHvXZiEbRDYBSvhdBPo9G41qJjSysXChhHV0kgR9Lo9VmQDr1nPFYEFzX4ukX1UVqaRd+5ILGCHUA==, + integrity: sha512-8fZ8IdY+Ak/xJXhwLVTOqKKl+bX7jeHBx3C9f+7XebTF0Sw8EnIAcDX8JifaQzL36qCctyP8Q0cIdI1Nd3D7gg==, } cpu: [x64] os: [linux] - "@moonrepo/core-macos-arm64@1.24.6": + "@moonrepo/core-macos-arm64@1.25.5": resolution: { - integrity: sha512-3s4/JFDTnu/EJjrBbqZRZtoMRZUp+e2n0aNcbGQWPil/HNWa0/ce+yz7jjeBQYY5nhdm/Xv5GADfwc4VtgRabQ==, + integrity: sha512-qm2KAF4QZLYFN2V5zVbNVrh0w7e0D8kQAJpbWohS1NLyuLeSnpjtXNx185LACmUxe4acClDXhPzYjYwRLfBsXg==, } cpu: [arm64] os: [darwin] - "@moonrepo/core-macos-x64@1.24.6": + "@moonrepo/core-macos-x64@1.25.5": resolution: { - integrity: sha512-FcLTHoyDfRZ1PsyiLmD9+bdl2PGf/KEdostUYY8RGm8Xrf0AKnhfFO0f9AzHmezB51+4p+pBADieVSVnK0kzuA==, + integrity: sha512-nHlw07upN4GPNA1Y9r7wvG6jubIf2sq1V9VdRxvxuV+PKDpO2FQxmWLGmZkrvMGPhaQs4fA7qKEVzIAdYUt44Q==, } cpu: [x64] os: [darwin] - "@moonrepo/core-windows-x64-msvc@1.24.6": + "@moonrepo/core-windows-x64-msvc@1.25.5": resolution: { - integrity: sha512-RszuKT+H52jRkbsycEZRrtDZIklSi8KBPy/Tp/ZmQnloX/7HVgUCK9u9za5xIuKwvnUPSa+3F/n4sldoj+RehQ==, + integrity: sha512-r8t5uj9TdXcE5qgk4pEasn0eKNQZkgXr7M9zQWMQwTKE/zGQ0WBhE7KpUN3E0lQ0FzCKiEtWCGqDCeA47du3BA==, } cpu: [x64] os: [win32] @@ -5549,37 +5549,37 @@ snapshots: - encoding - supports-color - "@moonrepo/cli@1.24.6": + "@moonrepo/cli@1.25.5": dependencies: detect-libc: 2.0.3 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.24.6 - "@moonrepo/core-linux-arm64-musl": 1.24.6 - "@moonrepo/core-linux-x64-gnu": 1.24.6 - "@moonrepo/core-linux-x64-musl": 1.24.6 - "@moonrepo/core-macos-arm64": 1.24.6 - "@moonrepo/core-macos-x64": 1.24.6 - "@moonrepo/core-windows-x64-msvc": 1.24.6 - - "@moonrepo/core-linux-arm64-gnu@1.24.6": + "@moonrepo/core-linux-arm64-gnu": 1.25.5 + "@moonrepo/core-linux-arm64-musl": 1.25.5 + "@moonrepo/core-linux-x64-gnu": 1.25.5 + "@moonrepo/core-linux-x64-musl": 1.25.5 + "@moonrepo/core-macos-arm64": 1.25.5 + "@moonrepo/core-macos-x64": 1.25.5 + "@moonrepo/core-windows-x64-msvc": 1.25.5 + + "@moonrepo/core-linux-arm64-gnu@1.25.5": optional: true - "@moonrepo/core-linux-arm64-musl@1.24.6": + "@moonrepo/core-linux-arm64-musl@1.25.5": optional: true - "@moonrepo/core-linux-x64-gnu@1.24.6": + "@moonrepo/core-linux-x64-gnu@1.25.5": optional: true - "@moonrepo/core-linux-x64-musl@1.24.6": + "@moonrepo/core-linux-x64-musl@1.25.5": optional: true - "@moonrepo/core-macos-arm64@1.24.6": + "@moonrepo/core-macos-arm64@1.25.5": optional: true - "@moonrepo/core-macos-x64@1.24.6": + "@moonrepo/core-macos-x64@1.25.5": optional: true - "@moonrepo/core-windows-x64-msvc@1.24.6": + "@moonrepo/core-windows-x64-msvc@1.25.5": optional: true "@next/env@14.2.1": {} From 538d3e62da0df1caeb5d8cef07d80b199927c8ad Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 13 Jun 2024 09:21:19 -0600 Subject: [PATCH 192/295] chore: added changeset --- packages/tokens/src/layout-component.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 6b2da15f..5cc3d8b9 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2724,7 +2724,8 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{breadcrumbs-start-edge-to-text-large}", "uuid": "a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-start-edge-to-text-large." }, "breadcrumbs-end-edge-to-text": { "component": "breadcrumbs", @@ -2753,14 +2754,16 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{breadcrumbs-top-to-separator-large}", "uuid": "15e56281-5fc1-4b59-b815-fc333231e364", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-top-to-separator-large." }, "breadcrumbs-top-to-separator-icon-compact": { "component": "breadcrumbs", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{breadcrumbs-top-to-separator-medium}", "uuid": "a63e8df1-124f-4f3e-9e1b-ba422b8d8257", - "deprecated": true + "deprecated": true, + "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-top-to-separator-medium." }, "breadcrumbs-top-to-separator-icon-multiline": { "component": "breadcrumbs", From 783a200983efa8e1f2cc31fd40ac3ed7298bb312 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 14 Jun 2024 18:46:53 -0600 Subject: [PATCH 193/295] chore: added changeset --- .changeset/twelve-kangaroos-rescue.md | 77 +++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 .changeset/twelve-kangaroos-rescue.md diff --git a/.changeset/twelve-kangaroos-rescue.md b/.changeset/twelve-kangaroos-rescue.md new file mode 100644 index 00000000..59563e5a --- /dev/null +++ b/.changeset/twelve-kangaroos-rescue.md @@ -0,0 +1,77 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated tokens according to updated token spec for Spectrum 2, including new and deprecated tokens + +## Design Motivation + +### Change 1: Updated terminology to align with t-shirt sizes + +Previously in S1, the breadcrumb variants were default, compact, and multiline. However, in S2, we have aligned breadcrumb to t-shirt sizes, resulting in the following changes: + +- Breadcrumbs (default) -> Breadcrumbs (L) +- Breadcrumbs (compact) -> Breadcrumbs (M) +- Breadcrumbs (multiline) -> Breadcrumbs (multiline) + +### Change 2: Updated truncated menu button sizes and spacing + +Other structural changes + +- In S1 all variants used M sized action button – now we use S, M, L sized action buttons for respective sizes. +- In S1 all variants had same spacing 8px around chevron, now we use different spacings for all the three variants + +## Token Diff + +_Tokens added (11):_ + +- `breadcrumbs-separator-to-bottom-text-multiline` +- `breadcrumbs-start-edge-to-text-large` +- `breadcrumbs-start-edge-to-text-medium` +- `breadcrumbs-start-edge-to-text-multiline` +- `breadcrumbs-top-to-separator-large` +- `breadcrumbs-top-to-separator-medium` +- `breadcrumbs-top-to-separator-multiline` +- `breadcrumbs-truncated-menu-to-separator` +- `breadcrumbs-text-to-separator-large` +- `breadcrumbs-text-to-separator-medium` +- `breadcrumbs-text-to-separator-multiline` + +_Newly deprecated tokens (13):_ + +- `breadcrumbs-height` +- `breadcrumbs-height-compact` +- `breadcrumbs-top-to-text` +- `breadcrumbs-top-to-text-compact` +- `breadcrumbs-bottom-to-text` +- `breadcrumbs-bottom-to-text-compact` +- `breadcrumbs-start-edge-to-text` +- `breadcrumbs-top-to-separator-icon` +- `breadcrumbs-top-to-separator-icon-compact` +- `breadcrumbs-top-to-separator-icon-multiline` +- `breadcrumbs-separator-icon-to-bottom-text-multiline` +- `breadcrumbs-truncated-menu-to-separator-icon` +- `breadcrumbs-top-to-truncated-menu-compact` + +_Token values updated (20):_ + +- `breadcrumbs-top-to-separator-icon-multiline` +- `breadcrumbs-top-to-text-multiline` +- `breadcrumbs-bottom-to-text-multiline` +- `breadcrumbs-height-multiline` +- `breadcrumbs-top-to-separator-icon-multiline` +- `breadcrumbs-top-to-text-multiline` +- `breadcrumbs-height` +- `breadcrumbs-height-compact` +- `breadcrumbs-truncated-menu-to-separator-icon` +- `breadcrumbs-truncated-menu-to-bottom-text` +- `breadcrumbs-bottom-to-text` +- `breadcrumbs-bottom-to-text-compact` +- `breadcrumbs-separator-icon-to-bottom-text-multiline` +- `breadcrumbs-start-edge-to-text` +- `breadcrumbs-top-to-separator-icon` +- `breadcrumbs-top-to-separator-icon-compact` +- `breadcrumbs-top-to-text` +- `breadcrumbs-top-to-text-compact` +- `breadcrumbs-top-to-truncated-menu` +- `breadcrumbs-top-to-truncated-menu-compact` From dca42d44faadbdc370b9611a7735c6f9116674b2 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 14 Jun 2024 18:49:06 -0600 Subject: [PATCH 194/295] chore: updated dependencies --- .../public/schemas/token-types/color-set.json | 6 +- package.json | 14 +- pnpm-lock.yaml | 596 +++++++++--------- 3 files changed, 311 insertions(+), 305 deletions(-) diff --git a/docs/site/public/schemas/token-types/color-set.json b/docs/site/public/schemas/token-types/color-set.json index fa228073..cb24904d 100644 --- a/docs/site/public/schemas/token-types/color-set.json +++ b/docs/site/public/schemas/token-types/color-set.json @@ -28,7 +28,7 @@ "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json" } }, - "required": ["light", "dark", "wireframe"] + "required": ["light", "dark"] }, { "properties": { @@ -42,7 +42,7 @@ "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" } }, - "required": ["light", "dark", "wireframe"] + "required": ["light", "dark"] }, { "properties": { @@ -56,7 +56,7 @@ "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json" } }, - "required": ["light", "dark", "wireframe"] + "required": ["light", "dark"] } ] }, diff --git a/package.json b/package.json index 9d636b00..1dcd85a5 100644 --- a/package.json +++ b/package.json @@ -23,15 +23,15 @@ "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", + "@changesets/cli": "^2.27.5", + "@commitlint/cli": "^19.3.0", "@commitlint/config-conventional": "^19.2.2", - "@moonrepo/cli": "^1.25.5", - "ava": "^6.1.2", - "glob": "^10.3.12", + "@moonrepo/cli": "^1.25.6", + "ava": "^6.1.3", + "glob": "^10.4.1", "husky": "^9.0.11", - "lint-staged": "^15.2.2", - "prettier": "^3.2.5" + "lint-staged": "^15.2.7", + "prettier": "^3.3.2" }, "engines": { "node": "~20.12" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 753c5ffb..74eae2b6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,32 +15,32 @@ importers: specifier: ^0.6.0 version: 0.6.0 "@changesets/cli": - specifier: ^2.27.1 - version: 2.27.1 + specifier: ^2.27.5 + version: 2.27.5 "@commitlint/cli": - specifier: ^19.2.2 - version: 19.2.2(@types/node@20.12.7)(typescript@5.4.5) + specifier: ^19.3.0 + version: 19.3.0(@types/node@20.14.2)(typescript@5.4.5) "@commitlint/config-conventional": specifier: ^19.2.2 version: 19.2.2 "@moonrepo/cli": - specifier: ^1.25.5 - version: 1.25.5 + specifier: ^1.25.6 + version: 1.25.6 ava: - specifier: ^6.1.2 - version: 6.1.2 + specifier: ^6.1.3 + version: 6.1.3 glob: - specifier: ^10.3.12 - version: 10.3.12 + specifier: ^10.4.1 + version: 10.4.1 husky: specifier: ^9.0.11 version: 9.0.11 lint-staged: - specifier: ^15.2.2 - version: 15.2.2 + specifier: ^15.2.7 + version: 15.2.7 prettier: - specifier: ^3.2.5 - version: 3.2.5 + specifier: ^3.3.2 + version: 3.3.2 docs/site: dependencies: @@ -52,10 +52,10 @@ importers: version: 7.1.4(@spectrum-css/tokens@13.2.0) "@spectrum-css/sidenav": specifier: ^4.2.4 - version: 4.2.4(@spectrum-css/icon@6.0.5(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) + version: 4.2.4(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) "@spectrum-css/table": specifier: ^5.2.5 - version: 5.2.5(@spectrum-css/icon@6.0.5(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) + version: 5.2.5(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) "@spectrum-css/tokens": specifier: ^13.2.0 version: 13.2.0 @@ -64,10 +64,10 @@ importers: version: 5.1.5(@spectrum-css/tokens@13.2.0) ajv: specifier: ^8.12.0 - version: 8.12.0 + version: 8.16.0 ajv-formats: specifier: ^3.0.1 - version: 3.0.1(ajv@8.12.0) + version: 3.0.1(ajv@8.16.0) next: specifier: ^14.2.1 version: 14.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -134,22 +134,22 @@ importers: devDependencies: "@types/node": specifier: ^20.12.7 - version: 20.12.7 + version: 20.14.2 typescript: specifier: ^5.4.5 version: 5.4.5 vite: specifier: ^5.2.9 - version: 5.2.9(@types/node@20.12.7) + version: 5.2.9(@types/node@20.14.2) packages/tokens: devDependencies: ajv: specifier: ^8.12.0 - version: 8.12.0 + version: 8.16.0 ajv-formats: specifier: ^3.0.1 - version: 3.0.1(ajv@8.12.0) + version: 3.0.1(ajv@8.16.0) deep-object-diff: specifier: ^1.1.9 version: 1.1.9 @@ -193,44 +193,44 @@ packages: integrity: sha512-tPglwCr8Mm8SWzwnVewwFmqRx91F0WvMsM0BRAqH4CLalyGndm53Xvp+UcUSzswpk1wkjIDYI7RyEhWMLyPkig==, } - "@babel/code-frame@7.24.2": + "@babel/code-frame@7.24.7": resolution: { - integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==, + integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==, } engines: { node: ">=6.9.0" } - "@babel/helper-validator-identifier@7.22.20": + "@babel/helper-validator-identifier@7.24.7": resolution: { - integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, + integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, } engines: { node: ">=6.9.0" } - "@babel/highlight@7.24.2": + "@babel/highlight@7.24.7": resolution: { - integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==, + integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==, } engines: { node: ">=6.9.0" } - "@babel/runtime@7.24.4": + "@babel/runtime@7.24.7": resolution: { - integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==, + integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==, } engines: { node: ">=6.9.0" } - "@changesets/apply-release-plan@7.0.0": + "@changesets/apply-release-plan@7.0.3": resolution: { - integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==, + integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==, } - "@changesets/assemble-release-plan@6.0.0": + "@changesets/assemble-release-plan@6.0.2": resolution: { - integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==, + integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==, } "@changesets/changelog-git@0.2.0": @@ -245,17 +245,17 @@ packages: integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==, } - "@changesets/cli@2.27.1": + "@changesets/cli@2.27.5": resolution: { - integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==, + integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==, } hasBin: true - "@changesets/config@3.0.0": + "@changesets/config@3.0.1": resolution: { - integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==, + integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==, } "@changesets/errors@0.2.0": @@ -264,10 +264,10 @@ packages: integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, } - "@changesets/get-dependents-graph@2.0.0": + "@changesets/get-dependents-graph@2.1.0": resolution: { - integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==, + integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==, } "@changesets/get-github-info@0.6.0": @@ -276,10 +276,10 @@ packages: integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==, } - "@changesets/get-release-plan@4.0.0": + "@changesets/get-release-plan@4.0.2": resolution: { - integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==, + integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==, } "@changesets/get-version-range-type@0.4.0": @@ -318,6 +318,12 @@ packages: integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, } + "@changesets/should-skip-package@0.1.0": + resolution: + { + integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==, + } + "@changesets/types@4.1.0": resolution: { @@ -330,16 +336,16 @@ packages: integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==, } - "@changesets/write@0.3.0": + "@changesets/write@0.3.1": resolution: { - integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==, + integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==, } - "@commitlint/cli@19.2.2": + "@commitlint/cli@19.3.0": resolution: { - integrity: sha512-P8cbOHfg2PQRzfICLSrzUVOCVMqjEZ8Hlth6mtJ4yOEjT47Q5PbIGymgX3rLVylNw+3IAT2Djn9IJ2wHbXFzBg==, + integrity: sha512-LgYWOwuDR7BSTQ9OLZ12m7F/qhNY+NpAyPBgo4YNMkACE7lGuUnuQq1yi9hz1KA4+3VqpOYl8H1rY/LYK43v7g==, } engines: { node: ">=v18" } hasBin: true @@ -372,10 +378,10 @@ packages: } engines: { node: ">=v18" } - "@commitlint/format@19.0.3": + "@commitlint/format@19.3.0": resolution: { - integrity: sha512-QjjyGyoiVWzx1f5xOteKHNLFyhyweVifMgopozSgx1fGNrGV8+wp7k6n1t6StHdJ6maQJ+UUtO2TcEiBFRyR6Q==, + integrity: sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==, } engines: { node: ">=v18" } @@ -744,65 +750,65 @@ packages: } hasBin: true - "@moonrepo/cli@1.25.5": + "@moonrepo/cli@1.25.6": resolution: { - integrity: sha512-PPc0xiyUqp9omv6W412pkwJqOGJlsKEOqZLhZ1Qu2F2e2KQHrYST4FK8aseyuK4r1qWuqZtS33pneKNIN9Lsmg==, + integrity: sha512-C7HZURLJWK0Zb3Rb021nMANDku0VrqIa0bDQLUuGATorW4qLA0omjBFa3JFvQFGRdTwDVcWalQnO3wuthnDHog==, } hasBin: true - "@moonrepo/core-linux-arm64-gnu@1.25.5": + "@moonrepo/core-linux-arm64-gnu@1.25.6": resolution: { - integrity: sha512-zlpyqZcgUwm/pQHi7/NR4I2hGedvYvJ8xY7nHRIvmhNHIpOPiJh6UA0VhNt1GLTuCf3KxuisgEC9Iangtxo3hw==, + integrity: sha512-LwuXyE4DQ7jEnP+uAa0sbwplsDFgS7RP+ZsDucv6YkiBnCahH8cnN085/jI36fwAQF3G/kzKdJCvvrEXIqfUAw==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-arm64-musl@1.25.5": + "@moonrepo/core-linux-arm64-musl@1.25.6": resolution: { - integrity: sha512-d8v9N6FfOnk8tdQJ62So8o3r5hYi1MFyiQIEuXtaZzLNn1Iq3fYeQMJaaCVZ3UI+HXWzwFdt6R5QtoIrS0PfFw==, + integrity: sha512-TspwxZ53mgjSE29Atb3bdXMH4pPJFjWxvn8kAIM+tWFDoumzg92LNF/y5ArF56V8ilNweHCg80FSDjgUqucu9g==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-x64-gnu@1.25.5": + "@moonrepo/core-linux-x64-gnu@1.25.6": resolution: { - integrity: sha512-pzCOcaMHCB96Tg86YlLe5J12K2RLwnQErLDK21ogosDXnT2MVtT+g6qdejli/GsFcvRouHYE2+gFPoJIMtGRvg==, + integrity: sha512-2X0A2jhqyWz7KVfRuI+qmzh80NTpAOVC3mzYnwhL6fX0kX2dTiSDUWe0Q3M56th7gIwPwN+k+LWxiWWfiFIbyA==, } cpu: [x64] os: [linux] - "@moonrepo/core-linux-x64-musl@1.25.5": + "@moonrepo/core-linux-x64-musl@1.25.6": resolution: { - integrity: sha512-8fZ8IdY+Ak/xJXhwLVTOqKKl+bX7jeHBx3C9f+7XebTF0Sw8EnIAcDX8JifaQzL36qCctyP8Q0cIdI1Nd3D7gg==, + integrity: sha512-uKUn3XM0FivLE8Nfxnnwfv7GH4uAfAP/XUKI7BzKv6GGU2m0yvb41CpHvEK/Va+D2ZqH9hXUXuUiZYXZeOT1DA==, } cpu: [x64] os: [linux] - "@moonrepo/core-macos-arm64@1.25.5": + "@moonrepo/core-macos-arm64@1.25.6": resolution: { - integrity: sha512-qm2KAF4QZLYFN2V5zVbNVrh0w7e0D8kQAJpbWohS1NLyuLeSnpjtXNx185LACmUxe4acClDXhPzYjYwRLfBsXg==, + integrity: sha512-qEICkE8aB87BsVpLY/Hu7hg9JuY9pFW9yMr5u5EYuekp8s+5tinVwmxqWedy3hQI3y6IBJ8r2KD0ZQfJLbat3Q==, } cpu: [arm64] os: [darwin] - "@moonrepo/core-macos-x64@1.25.5": + "@moonrepo/core-macos-x64@1.25.6": resolution: { - integrity: sha512-nHlw07upN4GPNA1Y9r7wvG6jubIf2sq1V9VdRxvxuV+PKDpO2FQxmWLGmZkrvMGPhaQs4fA7qKEVzIAdYUt44Q==, + integrity: sha512-HQlq+i90wMPUHiTMlqA4vXkmQgp3Ss14nNOVFSrt+X8hwOnq6I62GlbjVcxczTGLxl3pxYo0a/5oeUc3izQOAQ==, } cpu: [x64] os: [darwin] - "@moonrepo/core-windows-x64-msvc@1.25.5": + "@moonrepo/core-windows-x64-msvc@1.25.6": resolution: { - integrity: sha512-r8t5uj9TdXcE5qgk4pEasn0eKNQZkgXr7M9zQWMQwTKE/zGQ0WBhE7KpUN3E0lQ0FzCKiEtWCGqDCeA47du3BA==, + integrity: sha512-tWnjKWKBM2Ax3FapKmVYUHaowRjFykpcBrib/POSIec+rI0/8ZL5FKJj3dm5Xy8K0/F5z1oZ1bRaoSiM61/LZA==, } cpu: [x64] os: [win32] @@ -1064,13 +1070,13 @@ packages: } engines: { node: ">=18" } - "@spectrum-css/icon@6.0.5": + "@spectrum-css/icon@7.1.1": resolution: { - integrity: sha512-zxpNZ4NIV9ObuzCPX786GpaKV5Z1DZoGgo7vLgx8j/gldVu1DoTC9nhRwQGQGpR/xThoOUiZW2Fh0n+dUtVGiQ==, + integrity: sha512-6OL0E4BI38jIZYmNCjSBcl4gyp3yl/RA2bFHD2nbB5M5qOdnWFpW8Y3epmhaSnCLIa8E3bPAhI8MU5Dud25ZUA==, } peerDependencies: - "@spectrum-css/tokens": ">=13.1" + "@spectrum-css/tokens": ">=14" "@spectrum-css/link@4.2.5": resolution: @@ -1355,10 +1361,10 @@ packages: integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } - "@types/node@20.12.7": + "@types/node@20.14.2": resolution: { - integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==, + integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==, } "@types/normalize-package-data@2.4.4": @@ -1379,10 +1385,10 @@ packages: integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, } - "@vercel/nft@0.26.4": + "@vercel/nft@0.26.5": resolution: { - integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==, + integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==, } engines: { node: ">=16" } hasBin: true @@ -1408,17 +1414,17 @@ packages: peerDependencies: acorn: ^8 - acorn-walk@8.3.2: + acorn-walk@8.3.3: resolution: { - integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==, + integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==, } engines: { node: ">=0.4.0" } - acorn@8.11.3: + acorn@8.12.0: resolution: { - integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, + integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==, } engines: { node: ">=0.4.0" } hasBin: true @@ -1441,10 +1447,10 @@ packages: ajv: optional: true - ajv@8.12.0: + ajv@8.16.0: resolution: { - integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, + integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==, } ansi-colors@4.1.3: @@ -1604,12 +1610,12 @@ packages: integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, } - ava@6.1.2: + ava@6.1.3: resolution: { - integrity: sha512-WcpxJ8yZ7mk9ABTinD0IAjcemovSeVGjuuwZx0JS9johREWFeLTl8UP6wd7l6nmnrWqkKZdwaD71a/ocH4qPKw==, + integrity: sha512-tkKbpF1pIiC+q09wNU9OfyTDYZa8yuWvU2up3+lFJ3lr1RmnYh2GBpPwzYUEB0wvTPIUysGjcZLNZr7STDviRA==, } - engines: { node: ^18.18 || ^20.8 || ^21 } + engines: { node: ^18.18 || ^20.8 || ^21 || ^22 } hasBin: true peerDependencies: "@ava/typescript": "*" @@ -1661,10 +1667,10 @@ packages: integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, } - braces@3.0.2: + braces@3.0.3: resolution: { - integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, + integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, } engines: { node: ">=8" } @@ -1913,12 +1919,12 @@ packages: } engines: { node: ">=8.0.0" } - commander@11.1.0: + commander@12.1.0: resolution: { - integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==, + integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==, } - engines: { node: ">=16" } + engines: { node: ">=18" } commander@8.3.0: resolution: @@ -2102,10 +2108,10 @@ packages: } engines: { node: ">=6" } - debug@4.3.4: + debug@4.3.5: resolution: { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==, } engines: { node: ">=6.0" } peerDependencies: @@ -2435,10 +2441,10 @@ packages: integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, } - fill-range@7.0.1: + fill-range@7.1.1: resolution: { - integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, } engines: { node: ">=8" } @@ -2502,10 +2508,10 @@ packages: integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, } - foreground-child@3.1.1: + foreground-child@3.2.1: resolution: { - integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==, + integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==, } engines: { node: ">=14" } @@ -2628,12 +2634,12 @@ packages: } engines: { node: ">= 6" } - glob@10.3.12: + glob@10.4.1: resolution: { - integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==, + integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==, } - engines: { node: ">=16 || 14 >=14.17" } + engines: { node: ">=16 || 14 >=14.18" } hasBin: true glob@7.2.3: @@ -2650,10 +2656,10 @@ packages: } engines: { node: ">=18" } - globalthis@1.0.3: + globalthis@1.0.4: resolution: { - integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==, } engines: { node: ">= 0.4" } @@ -2824,10 +2830,10 @@ packages: } engines: { node: ">=6" } - import-meta-resolve@4.0.0: + import-meta-resolve@4.1.0: resolution: { - integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==, + integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==, } imurmurhash@0.1.4: @@ -3109,17 +3115,17 @@ packages: integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } - jackspeak@2.3.6: + jackspeak@3.4.0: resolution: { - integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==, } engines: { node: ">=14" } - jiti@1.21.0: + jiti@1.21.6: resolution: { - integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, + integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==, } hasBin: true @@ -3217,10 +3223,10 @@ packages: } engines: { node: ">=6" } - lilconfig@3.0.0: + lilconfig@3.1.2: resolution: { - integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==, + integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==, } engines: { node: ">=14" } @@ -3230,18 +3236,18 @@ packages: integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, } - lint-staged@15.2.2: + lint-staged@15.2.7: resolution: { - integrity: sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==, + integrity: sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw==, } engines: { node: ">=18.12.0" } hasBin: true - listr2@8.0.1: + listr2@8.2.1: resolution: { - integrity: sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==, + integrity: sha512-irTfvpib/rNiD637xeevjO2l3Z5loZmuaRi0L0YE5LfijwVY96oyVn0DFD3o/teAok7nfobMG1THvvcHh/BP6g==, } engines: { node: ">=18.0.0" } @@ -3396,10 +3402,10 @@ packages: integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, } - lru-cache@10.2.0: + lru-cache@10.2.2: resolution: { - integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==, + integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==, } engines: { node: 14 || >=16.14 } @@ -3409,13 +3415,6 @@ packages: integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, } - lru-cache@6.0.0: - resolution: - { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, - } - engines: { node: ">=10" } - make-dir@3.1.0: resolution: { @@ -3485,10 +3484,10 @@ packages: } engines: { node: ">= 8" } - micromatch@4.0.5: + micromatch@4.0.7: resolution: { - integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==, } engines: { node: ">=8.6" } @@ -3560,10 +3559,10 @@ packages: } engines: { node: ">=8" } - minipass@7.0.4: + minipass@7.1.2: resolution: { - integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, } engines: { node: ">=16 || 14 >=14.17" } @@ -3663,10 +3662,10 @@ packages: encoding: optional: true - node-gyp-build@4.8.0: + node-gyp-build@4.8.1: resolution: { - integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==, + integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==, } hasBin: true @@ -3922,12 +3921,12 @@ packages: integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, } - path-scurry@1.10.2: + path-scurry@1.11.1: resolution: { - integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==, + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, } - engines: { node: ">=16 || 14 >=14.17" } + engines: { node: ">=16 || 14 >=14.18" } path-type@4.0.0: resolution: @@ -3943,10 +3942,10 @@ packages: } engines: { node: ">=12" } - picocolors@1.0.0: + picocolors@1.0.1: resolution: { - integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==, } picomatch@2.3.1: @@ -4028,10 +4027,10 @@ packages: engines: { node: ">=10.13.0" } hasBin: true - prettier@3.2.5: + prettier@3.3.2: resolution: { - integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==, + integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==, } engines: { node: ">=14" } hasBin: true @@ -4201,10 +4200,10 @@ packages: } engines: { iojs: ">=1.0.0", node: ">=0.10.0" } - rfdc@1.3.1: + rfdc@1.4.1: resolution: { - integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==, + integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==, } rimraf@3.0.2: @@ -4283,10 +4282,10 @@ packages: } hasBin: true - semver@7.6.0: + semver@7.6.2: resolution: { - integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==, + integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, } engines: { node: ">=10" } hasBin: true @@ -4445,10 +4444,10 @@ packages: integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, } - spdx-license-ids@3.0.17: + spdx-license-ids@3.0.18: resolution: { - integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==, + integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==, } split2@4.2.0: @@ -5063,12 +5062,13 @@ packages: } engines: { node: ">=18" } - yaml@2.3.4: + yaml@2.4.5: resolution: { - integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==, + integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==, } engines: { node: ">= 14" } + hasBin: true yargs-parser@18.1.3: resolution: @@ -5115,30 +5115,31 @@ packages: snapshots: "@action-validator/core@0.6.0": {} - "@babel/code-frame@7.24.2": + "@babel/code-frame@7.24.7": dependencies: - "@babel/highlight": 7.24.2 - picocolors: 1.0.0 + "@babel/highlight": 7.24.7 + picocolors: 1.0.1 - "@babel/helper-validator-identifier@7.22.20": {} + "@babel/helper-validator-identifier@7.24.7": {} - "@babel/highlight@7.24.2": + "@babel/highlight@7.24.7": dependencies: - "@babel/helper-validator-identifier": 7.22.20 + "@babel/helper-validator-identifier": 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.0 + picocolors: 1.0.1 - "@babel/runtime@7.24.4": + "@babel/runtime@7.24.7": dependencies: regenerator-runtime: 0.14.1 - "@changesets/apply-release-plan@7.0.0": + "@changesets/apply-release-plan@7.0.3": dependencies: - "@babel/runtime": 7.24.4 - "@changesets/config": 3.0.0 + "@babel/runtime": 7.24.7 + "@changesets/config": 3.0.1 "@changesets/get-version-range-type": 0.4.0 "@changesets/git": 3.0.0 + "@changesets/should-skip-package": 0.1.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 detect-indent: 6.1.0 @@ -5147,16 +5148,17 @@ snapshots: outdent: 0.5.0 prettier: 2.8.8 resolve-from: 5.0.0 - semver: 7.6.0 + semver: 7.6.2 - "@changesets/assemble-release-plan@6.0.0": + "@changesets/assemble-release-plan@6.0.2": dependencies: - "@babel/runtime": 7.24.4 + "@babel/runtime": 7.24.7 "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.0.0 + "@changesets/get-dependents-graph": 2.1.0 + "@changesets/should-skip-package": 0.1.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 - semver: 7.6.0 + semver: 7.6.2 "@changesets/changelog-git@0.2.0": dependencies: @@ -5170,22 +5172,23 @@ snapshots: transitivePeerDependencies: - encoding - "@changesets/cli@2.27.1": + "@changesets/cli@2.27.5": dependencies: - "@babel/runtime": 7.24.4 - "@changesets/apply-release-plan": 7.0.0 - "@changesets/assemble-release-plan": 6.0.0 + "@babel/runtime": 7.24.7 + "@changesets/apply-release-plan": 7.0.3 + "@changesets/assemble-release-plan": 6.0.2 "@changesets/changelog-git": 0.2.0 - "@changesets/config": 3.0.0 + "@changesets/config": 3.0.1 "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.0.0 - "@changesets/get-release-plan": 4.0.0 + "@changesets/get-dependents-graph": 2.1.0 + "@changesets/get-release-plan": 4.0.2 "@changesets/git": 3.0.0 "@changesets/logger": 0.1.0 "@changesets/pre": 2.0.0 "@changesets/read": 0.6.0 + "@changesets/should-skip-package": 0.1.0 "@changesets/types": 6.0.0 - "@changesets/write": 0.3.0 + "@changesets/write": 0.3.1 "@manypkg/get-packages": 1.1.3 "@types/semver": 7.5.8 ansi-colors: 4.1.3 @@ -5200,32 +5203,32 @@ snapshots: p-limit: 2.3.0 preferred-pm: 3.1.3 resolve-from: 5.0.0 - semver: 7.6.0 + semver: 7.6.2 spawndamnit: 2.0.0 term-size: 2.2.1 tty-table: 4.2.3 - "@changesets/config@3.0.0": + "@changesets/config@3.0.1": dependencies: "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.0.0 + "@changesets/get-dependents-graph": 2.1.0 "@changesets/logger": 0.1.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 - micromatch: 4.0.5 + micromatch: 4.0.7 "@changesets/errors@0.2.0": dependencies: extendable-error: 0.1.7 - "@changesets/get-dependents-graph@2.0.0": + "@changesets/get-dependents-graph@2.1.0": dependencies: "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 - semver: 7.6.0 + semver: 7.6.2 "@changesets/get-github-info@0.6.0": dependencies: @@ -5234,11 +5237,11 @@ snapshots: transitivePeerDependencies: - encoding - "@changesets/get-release-plan@4.0.0": + "@changesets/get-release-plan@4.0.2": dependencies: - "@babel/runtime": 7.24.4 - "@changesets/assemble-release-plan": 6.0.0 - "@changesets/config": 3.0.0 + "@babel/runtime": 7.24.7 + "@changesets/assemble-release-plan": 6.0.2 + "@changesets/config": 3.0.1 "@changesets/pre": 2.0.0 "@changesets/read": 0.6.0 "@changesets/types": 6.0.0 @@ -5248,12 +5251,12 @@ snapshots: "@changesets/git@3.0.0": dependencies: - "@babel/runtime": 7.24.4 + "@babel/runtime": 7.24.7 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 is-subdir: 1.2.0 - micromatch: 4.0.5 + micromatch: 4.0.7 spawndamnit: 2.0.0 "@changesets/logger@0.1.0": @@ -5267,7 +5270,7 @@ snapshots: "@changesets/pre@2.0.0": dependencies: - "@babel/runtime": 7.24.4 + "@babel/runtime": 7.24.7 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -5275,7 +5278,7 @@ snapshots: "@changesets/read@0.6.0": dependencies: - "@babel/runtime": 7.24.4 + "@babel/runtime": 7.24.7 "@changesets/git": 3.0.0 "@changesets/logger": 0.1.0 "@changesets/parse": 0.4.0 @@ -5284,23 +5287,29 @@ snapshots: fs-extra: 7.0.1 p-filter: 2.1.0 + "@changesets/should-skip-package@0.1.0": + dependencies: + "@babel/runtime": 7.24.7 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 + "@changesets/types@4.1.0": {} "@changesets/types@6.0.0": {} - "@changesets/write@0.3.0": + "@changesets/write@0.3.1": dependencies: - "@babel/runtime": 7.24.4 + "@babel/runtime": 7.24.7 "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - "@commitlint/cli@19.2.2(@types/node@20.12.7)(typescript@5.4.5)": + "@commitlint/cli@19.3.0(@types/node@20.14.2)(typescript@5.4.5)": dependencies: - "@commitlint/format": 19.0.3 + "@commitlint/format": 19.3.0 "@commitlint/lint": 19.2.2 - "@commitlint/load": 19.2.0(@types/node@20.12.7)(typescript@5.4.5) + "@commitlint/load": 19.2.0(@types/node@20.14.2)(typescript@5.4.5) "@commitlint/read": 19.2.1 "@commitlint/types": 19.0.3 execa: 8.0.1 @@ -5317,7 +5326,7 @@ snapshots: "@commitlint/config-validator@19.0.3": dependencies: "@commitlint/types": 19.0.3 - ajv: 8.12.0 + ajv: 8.16.0 "@commitlint/ensure@19.0.3": dependencies: @@ -5330,7 +5339,7 @@ snapshots: "@commitlint/execute-rule@19.0.0": {} - "@commitlint/format@19.0.3": + "@commitlint/format@19.3.0": dependencies: "@commitlint/types": 19.0.3 chalk: 5.3.0 @@ -5338,7 +5347,7 @@ snapshots: "@commitlint/is-ignored@19.2.2": dependencies: "@commitlint/types": 19.0.3 - semver: 7.6.0 + semver: 7.6.2 "@commitlint/lint@19.2.2": dependencies: @@ -5347,7 +5356,7 @@ snapshots: "@commitlint/rules": 19.0.3 "@commitlint/types": 19.0.3 - "@commitlint/load@19.2.0(@types/node@20.12.7)(typescript@5.4.5)": + "@commitlint/load@19.2.0(@types/node@20.14.2)(typescript@5.4.5)": dependencies: "@commitlint/config-validator": 19.0.3 "@commitlint/execute-rule": 19.0.0 @@ -5355,7 +5364,7 @@ snapshots: "@commitlint/types": 19.0.3 chalk: 5.3.0 cosmiconfig: 9.0.0(typescript@5.4.5) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.12.7)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -5384,7 +5393,7 @@ snapshots: "@commitlint/config-validator": 19.0.3 "@commitlint/types": 19.0.3 global-directory: 4.0.1 - import-meta-resolve: 4.0.0 + import-meta-resolve: 4.1.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 @@ -5502,7 +5511,7 @@ snapshots: "@isaacs/fs-minipass@4.0.0": dependencies: - minipass: 7.0.4 + minipass: 7.1.2 "@lit-labs/observers@2.0.2": dependencies: @@ -5520,14 +5529,14 @@ snapshots: "@manypkg/find-root@1.1.0": dependencies: - "@babel/runtime": 7.24.4 + "@babel/runtime": 7.24.7 "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 "@manypkg/get-packages@1.1.3": dependencies: - "@babel/runtime": 7.24.4 + "@babel/runtime": 7.24.7 "@changesets/types": 4.1.0 "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 @@ -5543,43 +5552,43 @@ snapshots: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.6.0 + semver: 7.6.2 tar: 6.2.1 transitivePeerDependencies: - encoding - supports-color - "@moonrepo/cli@1.25.5": + "@moonrepo/cli@1.25.6": dependencies: detect-libc: 2.0.3 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.25.5 - "@moonrepo/core-linux-arm64-musl": 1.25.5 - "@moonrepo/core-linux-x64-gnu": 1.25.5 - "@moonrepo/core-linux-x64-musl": 1.25.5 - "@moonrepo/core-macos-arm64": 1.25.5 - "@moonrepo/core-macos-x64": 1.25.5 - "@moonrepo/core-windows-x64-msvc": 1.25.5 - - "@moonrepo/core-linux-arm64-gnu@1.25.5": + "@moonrepo/core-linux-arm64-gnu": 1.25.6 + "@moonrepo/core-linux-arm64-musl": 1.25.6 + "@moonrepo/core-linux-x64-gnu": 1.25.6 + "@moonrepo/core-linux-x64-musl": 1.25.6 + "@moonrepo/core-macos-arm64": 1.25.6 + "@moonrepo/core-macos-x64": 1.25.6 + "@moonrepo/core-windows-x64-msvc": 1.25.6 + + "@moonrepo/core-linux-arm64-gnu@1.25.6": optional: true - "@moonrepo/core-linux-arm64-musl@1.25.5": + "@moonrepo/core-linux-arm64-musl@1.25.6": optional: true - "@moonrepo/core-linux-x64-gnu@1.25.5": + "@moonrepo/core-linux-x64-gnu@1.25.6": optional: true - "@moonrepo/core-linux-x64-musl@1.25.5": + "@moonrepo/core-linux-x64-musl@1.25.6": optional: true - "@moonrepo/core-macos-arm64@1.25.5": + "@moonrepo/core-macos-arm64@1.25.6": optional: true - "@moonrepo/core-macos-x64@1.25.5": + "@moonrepo/core-macos-x64@1.25.6": optional: true - "@moonrepo/core-windows-x64-msvc@1.25.5": + "@moonrepo/core-windows-x64-msvc@1.25.6": optional: true "@next/env@14.2.1": {} @@ -5681,7 +5690,7 @@ snapshots: "@sindresorhus/merge-streams@2.3.0": {} - "@spectrum-css/icon@6.0.5(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0)": dependencies: "@spectrum-css/tokens": 13.2.0 @@ -5693,15 +5702,15 @@ snapshots: dependencies: "@spectrum-css/tokens": 13.2.0 - "@spectrum-css/sidenav@4.2.4(@spectrum-css/icon@6.0.5(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/sidenav@4.2.4(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": dependencies: "@spectrum-css/tokens": 13.2.0 optionalDependencies: - "@spectrum-css/icon": 6.0.5(@spectrum-css/tokens@13.2.0) + "@spectrum-css/icon": 7.1.1(@spectrum-css/tokens@13.2.0) - "@spectrum-css/table@5.2.5(@spectrum-css/icon@6.0.5(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/table@5.2.5(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": dependencies: - "@spectrum-css/icon": 6.0.5(@spectrum-css/tokens@13.2.0) + "@spectrum-css/icon": 7.1.1(@spectrum-css/tokens@13.2.0) "@spectrum-css/tokens": 13.2.0 "@spectrum-css/tokens@13.2.0": {} @@ -5912,7 +5921,7 @@ snapshots: "@types/conventional-commits-parser@5.0.0": dependencies: - "@types/node": 20.12.7 + "@types/node": 20.14.2 "@types/estree@1.0.5": {} @@ -5920,7 +5929,7 @@ snapshots: "@types/node@12.20.55": {} - "@types/node@20.12.7": + "@types/node@20.14.2": dependencies: undici-types: 5.26.5 @@ -5930,19 +5939,19 @@ snapshots: "@types/trusted-types@2.0.7": {} - "@vercel/nft@0.26.4": + "@vercel/nft@0.26.5": dependencies: "@mapbox/node-pre-gyp": 1.0.11 "@rollup/pluginutils": 4.2.1 - acorn: 8.11.3 - acorn-import-attributes: 1.9.5(acorn@8.11.3) + acorn: 8.12.0 + acorn-import-attributes: 1.9.5(acorn@8.12.0) async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 glob: 7.2.3 graceful-fs: 4.2.11 - micromatch: 4.0.5 - node-gyp-build: 4.8.0 + micromatch: 4.0.7 + node-gyp-build: 4.8.1 resolve-from: 5.0.0 transitivePeerDependencies: - encoding @@ -5955,25 +5964,27 @@ snapshots: abbrev@1.1.1: {} - acorn-import-attributes@1.9.5(acorn@8.11.3): + acorn-import-attributes@1.9.5(acorn@8.12.0): dependencies: - acorn: 8.11.3 + acorn: 8.12.0 - acorn-walk@8.3.2: {} + acorn-walk@8.3.3: + dependencies: + acorn: 8.12.0 - acorn@8.11.3: {} + acorn@8.12.0: {} agent-base@6.0.2: dependencies: - debug: 4.3.4 + debug: 4.3.5 transitivePeerDependencies: - supports-color - ajv-formats@3.0.1(ajv@8.12.0): + ajv-formats@3.0.1(ajv@8.16.0): optionalDependencies: - ajv: 8.12.0 + ajv: 8.16.0 - ajv@8.12.0: + ajv@8.16.0: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -6052,11 +6063,11 @@ snapshots: async-sema@3.1.1: {} - ava@6.1.2: + ava@6.1.3: dependencies: - "@vercel/nft": 0.26.4 - acorn: 8.11.3 - acorn-walk: 8.3.2 + "@vercel/nft": 0.26.5 + acorn: 8.12.0 + acorn-walk: 8.3.3 ansi-styles: 6.2.1 arrgv: 1.0.2 arrify: 3.0.0 @@ -6071,7 +6082,7 @@ snapshots: common-path-prefix: 3.0.0 concordance: 5.0.4 currently-unhandled: 0.4.1 - debug: 4.3.4 + debug: 4.3.5 emittery: 1.0.3 figures: 6.1.0 globby: 14.0.1 @@ -6123,9 +6134,9 @@ snapshots: dependencies: balanced-match: 1.0.2 - braces@3.0.2: + braces@3.0.3: dependencies: - fill-range: 7.0.1 + fill-range: 7.1.1 breakword@1.0.6: dependencies: @@ -6273,7 +6284,7 @@ snapshots: table-layout: 1.0.2 typical: 5.2.0 - commander@11.1.0: {} + commander@12.1.0: {} commander@8.3.0: {} @@ -6294,7 +6305,7 @@ snapshots: js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.6.0 + semver: 7.6.2 well-known-symbols: 2.0.0 console-control-strings@1.1.0: {} @@ -6322,11 +6333,11 @@ snapshots: convert-to-spaces@2.0.1: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@20.12.7)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5): + cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5): dependencies: - "@types/node": 20.12.7 + "@types/node": 20.14.2 cosmiconfig: 9.0.0(typescript@5.4.5) - jiti: 1.21.0 + jiti: 1.21.6 typescript: 5.4.5 cosmiconfig@9.0.0(typescript@5.4.5): @@ -6393,7 +6404,7 @@ snapshots: dependencies: time-zone: 1.0.0 - debug@4.3.4: + debug@4.3.5: dependencies: ms: 2.1.2 @@ -6485,7 +6496,7 @@ snapshots: function.prototype.name: 1.1.6 get-intrinsic: 1.2.4 get-symbol-description: 1.0.2 - globalthis: 1.0.3 + globalthis: 1.0.4 gopd: 1.0.1 has-property-descriptors: 1.0.2 has-proto: 1.0.3 @@ -6615,7 +6626,7 @@ snapshots: "@nodelib/fs.walk": 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.5 + micromatch: 4.0.7 fastq@1.17.1: dependencies: @@ -6627,7 +6638,7 @@ snapshots: file-uri-to-path@1.0.0: {} - fill-range@7.0.1: + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -6661,7 +6672,7 @@ snapshots: find-yarn-workspace-root2@1.2.16: dependencies: - micromatch: 4.0.5 + micromatch: 4.0.7 pkg-dir: 4.2.0 focus-visible@5.2.0: {} @@ -6670,7 +6681,7 @@ snapshots: dependencies: is-callable: 1.2.7 - foreground-child@3.1.1: + foreground-child@3.2.1: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 @@ -6755,13 +6766,13 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.3.12: + glob@10.4.1: dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 + foreground-child: 3.2.1 + jackspeak: 3.4.0 minimatch: 9.0.4 - minipass: 7.0.4 - path-scurry: 1.10.2 + minipass: 7.1.2 + path-scurry: 1.11.1 glob@7.2.3: dependencies: @@ -6776,9 +6787,10 @@ snapshots: dependencies: ini: 4.1.1 - globalthis@1.0.3: + globalthis@1.0.4: dependencies: define-properties: 1.2.1 + gopd: 1.0.1 globby@11.1.0: dependencies: @@ -6842,7 +6854,7 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.5 transitivePeerDependencies: - supports-color @@ -6865,7 +6877,7 @@ snapshots: parent-module: 1.0.1 resolve-from: 4.0.0 - import-meta-resolve@4.0.0: {} + import-meta-resolve@4.1.0: {} imurmurhash@0.1.4: {} @@ -6993,13 +7005,13 @@ snapshots: isexe@2.0.0: {} - jackspeak@2.3.6: + jackspeak@3.4.0: dependencies: "@isaacs/cliui": 8.0.2 optionalDependencies: "@pkgjs/parseargs": 0.11.0 - jiti@1.21.0: {} + jiti@1.21.6: {} js-string-escape@1.0.1: {} @@ -7040,32 +7052,32 @@ snapshots: kleur@4.1.5: {} - lilconfig@3.0.0: {} + lilconfig@3.1.2: {} lines-and-columns@1.2.4: {} - lint-staged@15.2.2: + lint-staged@15.2.7: dependencies: chalk: 5.3.0 - commander: 11.1.0 - debug: 4.3.4 + commander: 12.1.0 + debug: 4.3.5 execa: 8.0.1 - lilconfig: 3.0.0 - listr2: 8.0.1 - micromatch: 4.0.5 + lilconfig: 3.1.2 + listr2: 8.2.1 + micromatch: 4.0.7 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.3.4 + yaml: 2.4.5 transitivePeerDependencies: - supports-color - listr2@8.0.1: + listr2@8.2.1: dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 eventemitter3: 5.0.1 log-update: 6.0.0 - rfdc: 1.3.1 + rfdc: 1.4.1 wrap-ansi: 9.0.0 lit-element@3.3.3: @@ -7157,17 +7169,13 @@ snapshots: dependencies: tslib: 2.6.2 - lru-cache@10.2.0: {} + lru-cache@10.2.2: {} lru-cache@4.1.5: dependencies: pseudomap: 1.0.2 yallist: 2.1.2 - lru-cache@6.0.0: - dependencies: - yallist: 4.0.0 - make-dir@3.1.0: dependencies: semver: 6.3.1 @@ -7208,9 +7216,9 @@ snapshots: merge2@1.4.1: {} - micromatch@4.0.5: + micromatch@4.0.7: dependencies: - braces: 3.0.2 + braces: 3.0.3 picomatch: 2.3.1 mimic-fn@2.1.0: {} @@ -7243,7 +7251,7 @@ snapshots: minipass@5.0.0: {} - minipass@7.0.4: {} + minipass@7.1.2: {} minizlib@2.1.2: dependencies: @@ -7252,7 +7260,7 @@ snapshots: minizlib@3.0.1: dependencies: - minipass: 7.0.4 + minipass: 7.1.2 rimraf: 5.0.5 mixme@0.5.10: {} @@ -7301,7 +7309,7 @@ snapshots: dependencies: whatwg-url: 5.0.0 - node-gyp-build@4.8.0: {} + node-gyp-build@4.8.1: {} nofilter@3.1.0: {} @@ -7406,7 +7414,7 @@ snapshots: parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.24.2 + "@babel/code-frame": 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -7435,16 +7443,16 @@ snapshots: path-parse@1.0.7: {} - path-scurry@1.10.2: + path-scurry@1.11.1: dependencies: - lru-cache: 10.2.0 - minipass: 7.0.4 + lru-cache: 10.2.2 + minipass: 7.1.2 path-type@4.0.0: {} path-type@5.0.0: {} - picocolors@1.0.0: {} + picocolors@1.0.1: {} picomatch@2.3.1: {} @@ -7467,13 +7475,13 @@ snapshots: postcss@8.4.31: dependencies: nanoid: 3.3.7 - picocolors: 1.0.0 + picocolors: 1.0.1 source-map-js: 1.2.0 postcss@8.4.38: dependencies: nanoid: 3.3.7 - picocolors: 1.0.0 + picocolors: 1.0.1 source-map-js: 1.2.0 preferred-pm@3.1.3: @@ -7485,7 +7493,7 @@ snapshots: prettier@2.8.8: {} - prettier@3.2.5: {} + prettier@3.3.2: {} pretty-ms@9.0.0: dependencies: @@ -7578,7 +7586,7 @@ snapshots: reusify@1.0.4: {} - rfdc@1.3.1: {} + rfdc@1.4.1: {} rimraf@3.0.2: dependencies: @@ -7586,7 +7594,7 @@ snapshots: rimraf@5.0.5: dependencies: - glob: 10.3.12 + glob: 10.4.1 rollup@4.14.3: dependencies: @@ -7639,9 +7647,7 @@ snapshots: semver@6.3.1: {} - semver@7.6.0: - dependencies: - lru-cache: 6.0.0 + semver@7.6.2: {} sentence-case@3.0.4: dependencies: @@ -7732,16 +7738,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.17 + spdx-license-ids: 3.0.18 spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.17 + spdx-license-ids: 3.0.18 - spdx-license-ids@3.0.17: {} + spdx-license-ids@3.0.18: {} split2@4.2.0: {} @@ -7826,7 +7832,7 @@ snapshots: change-case: 4.1.2 commander: 8.3.0 fs-extra: 10.1.0 - glob: 10.3.12 + glob: 10.4.1 json5: 2.2.3 jsonc-parser: 3.2.1 lodash: 4.17.21 @@ -7999,13 +8005,13 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - vite@5.2.9(@types/node@20.12.7): + vite@5.2.9(@types/node@20.14.2): dependencies: esbuild: 0.20.2 postcss: 8.4.38 rollup: 4.14.3 optionalDependencies: - "@types/node": 20.12.7 + "@types/node": 20.14.2 fsevents: 2.3.3 wcwidth@1.0.1: @@ -8102,7 +8108,7 @@ snapshots: yallist@5.0.0: {} - yaml@2.3.4: {} + yaml@2.4.5: {} yargs-parser@18.1.3: dependencies: From dd86e28d4d55da9528306bfc37cc9f907ff3cc5a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 15 Jun 2024 00:52:21 +0000 Subject: [PATCH 195/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 78 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 88 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 2d9f4dc4..bd26b83c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -56,6 +56,7 @@ "sweet-pillows-protect", "tame-bobcats-beg", "twelve-impalas-compare", + "twelve-kangaroos-rescue", "unlucky-buckets-shop", "warm-experts-beg", "weak-crabs-hammer", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 2ab685c5..11b2bdb5 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,83 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.37 + +### Minor Changes + +- [#355](https://github.com/adobe/spectrum-tokens/pull/355) [`783a200`](https://github.com/adobe/spectrum-tokens/commit/783a200983efa8e1f2cc31fd40ac3ed7298bb312) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated tokens according to updated token spec for Spectrum 2, including new and deprecated tokens + + ## Design Motivation + + ### Change 1: Updated terminology to align with t-shirt sizes + + Previously in S1, the breadcrumb variants were default, compact, and multiline. However, in S2, we have aligned breadcrumb to t-shirt sizes, resulting in the following changes: + + - Breadcrumbs (default) -> Breadcrumbs (L) + - Breadcrumbs (compact) -> Breadcrumbs (M) + - Breadcrumbs (multiline) -> Breadcrumbs (multiline) + + ### Change 2: Updated truncated menu button sizes and spacing + + Other structural changes + + - In S1 all variants used M sized action button – now we use S, M, L sized action buttons for respective sizes. + - In S1 all variants had same spacing 8px around chevron, now we use different spacings for all the three variants + + ## Token Diff + + _Tokens added (11):_ + + - `breadcrumbs-separator-to-bottom-text-multiline` + - `breadcrumbs-start-edge-to-text-large` + - `breadcrumbs-start-edge-to-text-medium` + - `breadcrumbs-start-edge-to-text-multiline` + - `breadcrumbs-top-to-separator-large` + - `breadcrumbs-top-to-separator-medium` + - `breadcrumbs-top-to-separator-multiline` + - `breadcrumbs-truncated-menu-to-separator` + - `breadcrumbs-text-to-separator-large` + - `breadcrumbs-text-to-separator-medium` + - `breadcrumbs-text-to-separator-multiline` + + _Newly deprecated tokens (13):_ + + - `breadcrumbs-height` + - `breadcrumbs-height-compact` + - `breadcrumbs-top-to-text` + - `breadcrumbs-top-to-text-compact` + - `breadcrumbs-bottom-to-text` + - `breadcrumbs-bottom-to-text-compact` + - `breadcrumbs-start-edge-to-text` + - `breadcrumbs-top-to-separator-icon` + - `breadcrumbs-top-to-separator-icon-compact` + - `breadcrumbs-top-to-separator-icon-multiline` + - `breadcrumbs-separator-icon-to-bottom-text-multiline` + - `breadcrumbs-truncated-menu-to-separator-icon` + - `breadcrumbs-top-to-truncated-menu-compact` + + _Token values updated (20):_ + + - `breadcrumbs-top-to-separator-icon-multiline` + - `breadcrumbs-top-to-text-multiline` + - `breadcrumbs-bottom-to-text-multiline` + - `breadcrumbs-height-multiline` + - `breadcrumbs-top-to-separator-icon-multiline` + - `breadcrumbs-top-to-text-multiline` + - `breadcrumbs-height` + - `breadcrumbs-height-compact` + - `breadcrumbs-truncated-menu-to-separator-icon` + - `breadcrumbs-truncated-menu-to-bottom-text` + - `breadcrumbs-bottom-to-text` + - `breadcrumbs-bottom-to-text-compact` + - `breadcrumbs-separator-icon-to-bottom-text-multiline` + - `breadcrumbs-start-edge-to-text` + - `breadcrumbs-top-to-separator-icon` + - `breadcrumbs-top-to-separator-icon-compact` + - `breadcrumbs-top-to-text` + - `breadcrumbs-top-to-text-compact` + - `breadcrumbs-top-to-truncated-menu` + - `breadcrumbs-top-to-truncated-menu-compact` + ## 13.0.0-beta.36 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index d78d5fe7..d9f9973c 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.36", + "version": "13.0.0-beta.37", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 1c9178bf..206181c8 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.8 + +### Patch Changes + +- Updated dependencies [[`783a200`](https://github.com/adobe/spectrum-tokens/commit/783a200983efa8e1f2cc31fd40ac3ed7298bb312)]: + - @adobe/spectrum-tokens@13.0.0-beta.37 + ## 0.0.2-beta.7 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 35bdc428..fa399e1e 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.7", + "version": "0.0.2-beta.8", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 51a6ad2e55a5cac52f32fee6dd791d73d8818d52 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Mon, 24 Jun 2024 20:32:08 +0000 Subject: [PATCH 196/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 66 +++++++++++-------- .../tokens/src/semantic-color-palette.json | 14 ++-- 2 files changed, 48 insertions(+), 32 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 5cc3d8b9..ade67ce2 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2599,35 +2599,17 @@ }, "contextual-help-title-size": { "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-xs}", - "uuid": "5358fd6c-d9a0-4caa-a85e-af82ed82efaf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{heading-size-xxs}", - "uuid": "e91709ce-79e3-4a81-88fa-e124960d4389" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{contextual-help-title-font-size}", + "uuid": "5358fd6c-d9a0-4caa-a85e-af82ed82efaf", + "deprecated": true }, "contextual-help-body-size": { "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "e458fa68-ab9c-4441-a7d5-a02f42df1cae" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "c180fa75-254e-4ee1-8b79-31a3d90254cc" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{contextual-help-body-font-size}", + "uuid": "e458fa68-ab9c-4441-a7d5-a02f42df1cae", + "deprecated": true }, "breadcrumbs-height": { "component": "breadcrumbs", @@ -8303,5 +8285,35 @@ "uuid": "fbf763fe-9e35-4cdc-a5ed-9f90e03d23bd" } } + }, + "contextual-help-body-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-s}", + "uuid": "393e9a11-77f6-42a7-973b-34c673ad8afb" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{body-size-xs}", + "uuid": "1d817b1e-7916-4443-b04d-aa232b089f67" + } + } + }, + "contextual-help-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-m}", + "uuid": "16ee4dfd-afbe-482b-943e-03e2614037dd" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-s}", + "uuid": "965f0854-0f3c-4d6e-9e21-54542ecf1a17" + } + } } -} +} \ No newline at end of file diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index a7457389..47a9641f 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -401,23 +401,27 @@ }, "negative-subdued-background-color-default": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-200}", - "uuid": "a553db3e-a051-4023-87eb-da6545b983b2" + "value": "{negative-subtle-background-color-default}", + "uuid": "a553db3e-a051-4023-87eb-da6545b983b2", + "deprecated": true }, "negative-subdued-background-color-hover": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-300}", - "uuid": "9513cf13-8537-443f-81ce-f9d88292ba32" + "uuid": "9513cf13-8537-443f-81ce-f9d88292ba32", + "deprecated": true }, "negative-subdued-background-color-down": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-300}", - "uuid": "1eea917c-52e7-4295-b0e1-d33c2e73a137" + "uuid": "1eea917c-52e7-4295-b0e1-d33c2e73a137", + "deprecated": true }, "negative-subdued-background-color-key-focus": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-color-300}", - "uuid": "4b6aaf76-e0ab-4be0-81c0-d5f64cacee88" + "uuid": "4b6aaf76-e0ab-4be0-81c0-d5f64cacee88", + "deprecated": true }, "informative-subtle-background-color-default": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", From 12280770c08b32bae2236a1823da1beb8ef676c9 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Mon, 24 Jun 2024 14:51:30 -0600 Subject: [PATCH 197/295] fix: added missing component data to contextual-help tokens --- packages/tokens/src/layout-component.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index ade67ce2..aedfc408 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8287,6 +8287,7 @@ } }, "contextual-help-body-font-size": { + "component": "contextual-help", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8302,6 +8303,7 @@ } }, "contextual-help-title-font-size": { + "component": "contextual-help", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8316,4 +8318,4 @@ } } } -} \ No newline at end of file +} From f73a0b40464f1c73f2d9e8f6cf97da926e392ac7 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Mon, 24 Jun 2024 14:51:48 -0600 Subject: [PATCH 198/295] chore: added changeset --- .changeset/flat-parrots-cry.md | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .changeset/flat-parrots-cry.md diff --git a/.changeset/flat-parrots-cry.md b/.changeset/flat-parrots-cry.md new file mode 100644 index 00000000..1d7414c8 --- /dev/null +++ b/.changeset/flat-parrots-cry.md @@ -0,0 +1,37 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +- Fixed token type from Sizing to Font size for contextual-help-body-size and `contextual-help-title-size` +- Renamed tokens by deprecating previous ones and creating new ones, with font in the token name + Updated value of `contextual-help-title-font-size` + +Marked the the following tokens in Tokens Studio for deprecation: + +- `negative-subdued-background-color-default` ( --> points to `negative-subtle-background-color-default`) +- `negative-subdued-background-color-hover` +- `negative-subdued-background-color-down` +- `negative-subdued-background-color-key-focus` + +## Design motivation + +- The updated type sorts them correctly in the Tokens Studio data +- The updated value reflects the latest design for Spectrum 2, using the new title style instead of heading + +- The negative-subdued tokens were deprecated because the tag "error" variant has been deprecated and are no longer needed in the system. A new "subtle" token has been added for the in-line alert use case. + +## Token diff + +_Tokens added (2):_ + +- `contextual-help-body-font-size` +- `contextual-help-title-font-size` + +_Newly deprecated Tokens (6):_ + +- `contextual-help-body-size` +- `contextual-help-title-size` +- `negative-subdued-background-color-default` +- `negative-subdued-background-color-hover` +- `negative-subdued-background-color-down` +- `negative-subdued-background-color-key-focus` From 981b973b4293d053dec85819304406852b8d6833 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 24 Jun 2024 20:54:35 +0000 Subject: [PATCH 199/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 38 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 48 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index bd26b83c..0303f134 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -23,6 +23,7 @@ "eight-months-cheer", "empty-steaks-dress", "five-steaks-argue", + "flat-parrots-cry", "fluffy-bees-play", "forty-lizards-thank", "fuzzy-cherries-buy", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 11b2bdb5..179c3ea5 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,43 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.38 + +### Minor Changes + +- [#360](https://github.com/adobe/spectrum-tokens/pull/360) [`f73a0b4`](https://github.com/adobe/spectrum-tokens/commit/f73a0b40464f1c73f2d9e8f6cf97da926e392ac7) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - Fixed token type from Sizing to Font size for contextual-help-body-size and `contextual-help-title-size` + + - Renamed tokens by deprecating previous ones and creating new ones, with font in the token name + Updated value of `contextual-help-title-font-size` + + Marked the the following tokens in Tokens Studio for deprecation: + + - `negative-subdued-background-color-default` ( --> points to `negative-subtle-background-color-default`) + - `negative-subdued-background-color-hover` + - `negative-subdued-background-color-down` + - `negative-subdued-background-color-key-focus` + + ## Design motivation + + - The updated type sorts them correctly in the Tokens Studio data + - The updated value reflects the latest design for Spectrum 2, using the new title style instead of heading + - The negative-subdued tokens were deprecated because the tag "error" variant has been deprecated and are no longer needed in the system. A new "subtle" token has been added for the in-line alert use case. + + ## Token diff + + _Tokens added (2):_ + + - `contextual-help-body-font-size` + - `contextual-help-title-font-size` + + _Newly deprecated Tokens (6):_ + + - `contextual-help-body-size` + - `contextual-help-title-size` + - `negative-subdued-background-color-default` + - `negative-subdued-background-color-hover` + - `negative-subdued-background-color-down` + - `negative-subdued-background-color-key-focus` + ## 13.0.0-beta.37 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index d9f9973c..77acd05e 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.37", + "version": "13.0.0-beta.38", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 206181c8..23fa4ac1 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.9 + +### Patch Changes + +- Updated dependencies [[`f73a0b4`](https://github.com/adobe/spectrum-tokens/commit/f73a0b40464f1c73f2d9e8f6cf97da926e392ac7)]: + - @adobe/spectrum-tokens@13.0.0-beta.38 + ## 0.0.2-beta.8 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index fa399e1e..5a5559fd 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.8", + "version": "0.0.2-beta.9", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 6168a3154522b43e9e9d8966d67032355e4e209a Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Tue, 25 Jun 2024 16:31:12 +0000 Subject: [PATCH 200/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 7 ++++- packages/tokens/src/layout-component.json | 37 ++++++++++++++++++++++- 2 files changed, 42 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 451f2a88..65909039 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -399,5 +399,10 @@ "uuid": "d8f81d4f-b921-4a41-89c1-cdc79d40901a" } } + }, + "coach-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-800}", + "uuid": "bfd387b8-0ce0-45ff-8d66-fc5de2f4900c" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index aedfc408..78471e73 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8317,5 +8317,40 @@ "uuid": "965f0854-0f3c-4d6e-9e21-54542ecf1a17" } } + }, + "coach-indicator-collapsed-ring-rounding-increment": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "252dc667-b847-4295-8669-3e2f4d408f51" + }, + "coach-indicator-expanded-ring-rounding-increment": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "770aa608-80a3-4715-894b-c1d85a1b0c5e" + }, + "coach-indicator-collapsed-ring-thickness": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "fff486aa-26a4-4b41-91a7-762f8b29d47a" + }, + "coach-indicator-expanded-ring-thickness": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "09c84cdf-0c82-4201-8203-9eb05d8b9486" + }, + "coach-indicator-collapsed-gap": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "adb8eace-decc-4bef-93e9-ff2cb27e9ce6" + }, + "coach-indicator-expanded-gap": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "b25c696f-c6c3-45af-bdc9-fe3a046067f3" + }, + "coach-indicator-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.2", + "uuid": "6fa9bbc8-4c96-45a4-b133-bb2556a003de" } -} +} \ No newline at end of file From d7358edbfaac8707c341cf33937f4cd2c0bdf5fb Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 28 Jun 2024 12:50:03 -0600 Subject: [PATCH 201/295] fix: added missing component data to tokens --- packages/tokens/src/color-component.json | 3 ++- packages/tokens/src/layout-component.json | 9 ++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 65909039..52c37ee4 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -401,8 +401,9 @@ } }, "coach-indicator-color": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-800}", "uuid": "bfd387b8-0ce0-45ff-8d66-fc5de2f4900c" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 78471e73..1d56c713 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8319,38 +8319,45 @@ } }, "coach-indicator-collapsed-ring-rounding-increment": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "252dc667-b847-4295-8669-3e2f4d408f51" }, "coach-indicator-expanded-ring-rounding-increment": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", "uuid": "770aa608-80a3-4715-894b-c1d85a1b0c5e" }, "coach-indicator-collapsed-ring-thickness": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "fff486aa-26a4-4b41-91a7-762f8b29d47a" }, "coach-indicator-expanded-ring-thickness": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", "uuid": "09c84cdf-0c82-4201-8203-9eb05d8b9486" }, "coach-indicator-collapsed-gap": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "adb8eace-decc-4bef-93e9-ff2cb27e9ce6" }, "coach-indicator-expanded-gap": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "b25c696f-c6c3-45af-bdc9-fe3a046067f3" }, "coach-indicator-opacity": { + "component": "coach-indicator", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.2", "uuid": "6fa9bbc8-4c96-45a4-b133-bb2556a003de" } -} \ No newline at end of file +} From f96ffca4990547f8ddc8341d141e0edc65b872d9 Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 28 Jun 2024 12:50:20 -0600 Subject: [PATCH 202/295] chore: added changeset --- .changeset/strong-trains-crash.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .changeset/strong-trains-crash.md diff --git a/.changeset/strong-trains-crash.md b/.changeset/strong-trains-crash.md new file mode 100644 index 00000000..6562676a --- /dev/null +++ b/.changeset/strong-trains-crash.md @@ -0,0 +1,18 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added coach-indicator s2 tokens + +## Token Diff + +_Tokens added (8):_ + +- `coach-indicator-collapsed-gap` +- `coach-indicator-collapsed-ring-rounding-increment` +- `coach-indicator-collapsed-ring-thickness` +- `coach-indicator-color` +- `coach-indicator-expanded-gap` +- `coach-indicator-expanded-ring-rounding-increment` +- `coach-indicator-expanded-ring-thickness` +- `coach-indicator-opacity` From f144c8fa0e6fbbfaf9412b11c265c492a340e547 Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 28 Jun 2024 12:57:33 -0600 Subject: [PATCH 203/295] chore: update dependencies --- package.json | 6 +- pnpm-lock.yaml | 1635 +++--------------------------------------------- 2 files changed, 107 insertions(+), 1534 deletions(-) diff --git a/package.json b/package.json index 1dcd85a5..0c693326 100644 --- a/package.json +++ b/package.json @@ -23,12 +23,12 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@action-validator/core": "^0.6.0", - "@changesets/cli": "^2.27.5", + "@changesets/cli": "^2.27.6", "@commitlint/cli": "^19.3.0", "@commitlint/config-conventional": "^19.2.2", - "@moonrepo/cli": "^1.25.6", + "@moonrepo/cli": "^1.26.4", "ava": "^6.1.3", - "glob": "^10.4.1", + "glob": "^10.4.2", "husky": "^9.0.11", "lint-staged": "^15.2.7", "prettier": "^3.3.2" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 74eae2b6..8881504c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,23 +15,23 @@ importers: specifier: ^0.6.0 version: 0.6.0 "@changesets/cli": - specifier: ^2.27.5 - version: 2.27.5 + specifier: ^2.27.6 + version: 2.27.6 "@commitlint/cli": specifier: ^19.3.0 - version: 19.3.0(@types/node@20.14.2)(typescript@5.4.5) + version: 19.3.0(@types/node@20.14.9)(typescript@5.5.2) "@commitlint/config-conventional": specifier: ^19.2.2 version: 19.2.2 "@moonrepo/cli": - specifier: ^1.25.6 - version: 1.25.6 + specifier: ^1.26.4 + version: 1.26.4 ava: specifier: ^6.1.3 version: 6.1.3 glob: - specifier: ^10.4.1 - version: 10.4.1 + specifier: ^10.4.2 + version: 10.4.2 husky: specifier: ^9.0.11 version: 9.0.11 @@ -134,13 +134,13 @@ importers: devDependencies: "@types/node": specifier: ^20.12.7 - version: 20.14.2 + version: 20.14.9 typescript: specifier: ^5.4.5 - version: 5.4.5 + version: 5.5.2 vite: specifier: ^5.2.9 - version: 5.2.9(@types/node@20.14.2) + version: 5.2.9(@types/node@20.14.9) packages/tokens: devDependencies: @@ -245,10 +245,10 @@ packages: integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==, } - "@changesets/cli@2.27.5": + "@changesets/cli@2.27.6": resolution: { - integrity: sha512-UVppOvzCjjylBenFcwcZNG5IaZ8jsIaEVraV/pbXgukYNb0Oqa0d8UWb0LkYzA1Bf1HmUrOfccFcRLheRuA7pA==, + integrity: sha512-PB7KS5JkCQ4WSXlnfThn8CXAHVwYxFdZvYTimhi12fls/tzj9iimUhKsYwkrKSbw1AiVlGCZtihj5Wkt6siIjA==, } hasBin: true @@ -750,65 +750,65 @@ packages: } hasBin: true - "@moonrepo/cli@1.25.6": + "@moonrepo/cli@1.26.4": resolution: { - integrity: sha512-C7HZURLJWK0Zb3Rb021nMANDku0VrqIa0bDQLUuGATorW4qLA0omjBFa3JFvQFGRdTwDVcWalQnO3wuthnDHog==, + integrity: sha512-a5oiGYoY/eblgDFQ1IOZAkXDVqrx0Wo/ul2zr66JBKydj3iSk9VYn46GAgQq0fPk6GZhlbRQh8FPwlowoToCEg==, } hasBin: true - "@moonrepo/core-linux-arm64-gnu@1.25.6": + "@moonrepo/core-linux-arm64-gnu@1.26.4": resolution: { - integrity: sha512-LwuXyE4DQ7jEnP+uAa0sbwplsDFgS7RP+ZsDucv6YkiBnCahH8cnN085/jI36fwAQF3G/kzKdJCvvrEXIqfUAw==, + integrity: sha512-kMmp5FSpIwitLgbpz8GxhZz2ggBUbt1SF9Z0rGNdC+6ItCw/LFghn6QE30yVvZXbKl/oRW6aEcOAhvoT8+wosw==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-arm64-musl@1.25.6": + "@moonrepo/core-linux-arm64-musl@1.26.4": resolution: { - integrity: sha512-TspwxZ53mgjSE29Atb3bdXMH4pPJFjWxvn8kAIM+tWFDoumzg92LNF/y5ArF56V8ilNweHCg80FSDjgUqucu9g==, + integrity: sha512-eb/rulo46KzCEtdnhih7/DDZ5X4nS+U3Afvag/jVIFW6IcXV72dXbVIp+i+iZRcuUjJWAkEjAQ8RnVvt5A5Prw==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-x64-gnu@1.25.6": + "@moonrepo/core-linux-x64-gnu@1.26.4": resolution: { - integrity: sha512-2X0A2jhqyWz7KVfRuI+qmzh80NTpAOVC3mzYnwhL6fX0kX2dTiSDUWe0Q3M56th7gIwPwN+k+LWxiWWfiFIbyA==, + integrity: sha512-5b/fbr0ZL9bgUipZK92iPLr4ovuwZFkNvvhFic21L3cjcSWBUnUYCzYMh+jGtbv5jUIb+MIljreqnWokMX/ibQ==, } cpu: [x64] os: [linux] - "@moonrepo/core-linux-x64-musl@1.25.6": + "@moonrepo/core-linux-x64-musl@1.26.4": resolution: { - integrity: sha512-uKUn3XM0FivLE8Nfxnnwfv7GH4uAfAP/XUKI7BzKv6GGU2m0yvb41CpHvEK/Va+D2ZqH9hXUXuUiZYXZeOT1DA==, + integrity: sha512-yOvVU2Vj2Yt+o4Jm9HPHu+UwkMz2vAthNiTifHF22l2T0lTc3UNOjfNY+msFc+ECBn5eHweWfItFzEvFdrSh0g==, } cpu: [x64] os: [linux] - "@moonrepo/core-macos-arm64@1.25.6": + "@moonrepo/core-macos-arm64@1.26.4": resolution: { - integrity: sha512-qEICkE8aB87BsVpLY/Hu7hg9JuY9pFW9yMr5u5EYuekp8s+5tinVwmxqWedy3hQI3y6IBJ8r2KD0ZQfJLbat3Q==, + integrity: sha512-AK2OkHEWGzAjGG0346tW8ypQH7G992UmRh8EQd4R4NsS/C4XNQxa+XuhIDYkWJ6brDb7YxW3hTh5QMxPDnBdUQ==, } cpu: [arm64] os: [darwin] - "@moonrepo/core-macos-x64@1.25.6": + "@moonrepo/core-macos-x64@1.26.4": resolution: { - integrity: sha512-HQlq+i90wMPUHiTMlqA4vXkmQgp3Ss14nNOVFSrt+X8hwOnq6I62GlbjVcxczTGLxl3pxYo0a/5oeUc3izQOAQ==, + integrity: sha512-KGeN8LwnrMrDbx1prn+QT1ShitEMZE9n4qGE8gqFsT/Qp95DEk5y0nVbpMsLwB8nOyhPk9zRmKcpxyUEJx/XXQ==, } cpu: [x64] os: [darwin] - "@moonrepo/core-windows-x64-msvc@1.25.6": + "@moonrepo/core-windows-x64-msvc@1.26.4": resolution: { - integrity: sha512-tWnjKWKBM2Ax3FapKmVYUHaowRjFykpcBrib/POSIec+rI0/8ZL5FKJj3dm5Xy8K0/F5z1oZ1bRaoSiM61/LZA==, + integrity: sha512-u5DGLalL9fkyMxsHV3lBzuD5VyWXL4tlKIk0PwoQPbwiqauLrW8VO1/Ab0uTZjkUsjdaVPlsfjRtBgMEWM4bLA==, } cpu: [x64] os: [win32] @@ -1349,28 +1349,16 @@ packages: integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, } - "@types/minimist@1.2.5": - resolution: - { - integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, - } - "@types/node@12.20.55": resolution: { integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } - "@types/node@20.14.2": - resolution: - { - integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==, - } - - "@types/normalize-package-data@2.4.4": + "@types/node@20.14.9": resolution: { - integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, + integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==, } "@types/semver@7.5.8": @@ -1542,13 +1530,6 @@ packages: } engines: { node: ">=8" } - array-buffer-byte-length@1.0.1: - resolution: - { - integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, - } - engines: { node: ">= 0.4" } - array-find-index@1.0.2: resolution: { @@ -1569,20 +1550,6 @@ packages: } engines: { node: ">=8" } - array.prototype.flat@1.3.2: - resolution: - { - integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, - } - engines: { node: ">= 0.4" } - - arraybuffer.prototype.slice@1.0.3: - resolution: - { - integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, - } - engines: { node: ">= 0.4" } - arrgv@1.0.2: resolution: { @@ -1590,13 +1557,6 @@ packages: } engines: { node: ">=8.0.0" } - arrify@1.0.1: - resolution: - { - integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, - } - engines: { node: ">=0.10.0" } - arrify@3.0.0: resolution: { @@ -1623,13 +1583,6 @@ packages: "@ava/typescript": optional: true - available-typed-arrays@1.0.7: - resolution: - { - integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, - } - engines: { node: ">= 0.4" } - balanced-match@1.0.2: resolution: { @@ -1674,12 +1627,6 @@ packages: } engines: { node: ">=8" } - breakword@1.0.6: - resolution: - { - integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==, - } - busboy@1.6.0: resolution: { @@ -1687,13 +1634,6 @@ packages: } engines: { node: ">=10.16.0" } - call-bind@1.0.7: - resolution: - { - integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, - } - engines: { node: ">= 0.4" } - callsites@3.1.0: resolution: { @@ -1714,20 +1654,6 @@ packages: integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, } - camelcase-keys@6.2.2: - resolution: - { - integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, - } - engines: { node: ">=8" } - - camelcase@5.3.1: - resolution: - { - integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, - } - engines: { node: ">=6" } - caniuse-lite@1.0.30001610: resolution: { @@ -1840,12 +1766,6 @@ packages: integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, } - cliui@6.0.0: - resolution: - { - integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, - } - cliui@8.0.1: resolution: { @@ -1853,13 +1773,6 @@ packages: } engines: { node: ">=12" } - clone@1.0.4: - resolution: - { - integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, - } - engines: { node: ">=0.8" } - code-excerpt@4.0.0: resolution: { @@ -2035,31 +1948,6 @@ packages: } engines: { node: ">= 8" } - csv-generate@3.4.3: - resolution: - { - integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==, - } - - csv-parse@4.16.3: - resolution: - { - integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==, - } - - csv-stringify@5.6.5: - resolution: - { - integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==, - } - - csv@5.5.3: - resolution: - { - integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==, - } - engines: { node: ">= 0.1.90" } - currently-unhandled@0.4.1: resolution: { @@ -2074,27 +1962,6 @@ packages: } engines: { node: ">=12" } - data-view-buffer@1.0.1: - resolution: - { - integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==, - } - engines: { node: ">= 0.4" } - - data-view-byte-length@1.0.1: - resolution: - { - integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==, - } - engines: { node: ">= 0.4" } - - data-view-byte-offset@1.0.0: - resolution: - { - integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==, - } - engines: { node: ">= 0.4" } - dataloader@1.4.0: resolution: { @@ -2120,20 +1987,6 @@ packages: supports-color: optional: true - decamelize-keys@1.1.1: - resolution: - { - integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, - } - engines: { node: ">=0.10.0" } - - decamelize@1.2.0: - resolution: - { - integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, - } - engines: { node: ">=0.10.0" } - deep-extend@0.6.0: resolution: { @@ -2154,26 +2007,6 @@ packages: } engines: { node: ">=0.10.0" } - defaults@1.0.4: - resolution: - { - integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, - } - - define-data-property@1.1.4: - resolution: - { - integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, - } - engines: { node: ">= 0.4" } - - define-properties@1.2.1: - resolution: - { - integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, - } - engines: { node: ">= 0.4" } - delegates@1.0.0: resolution: { @@ -2272,54 +2105,6 @@ packages: integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, } - es-abstract@1.23.3: - resolution: - { - integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==, - } - engines: { node: ">= 0.4" } - - es-define-property@1.0.0: - resolution: - { - integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, - } - engines: { node: ">= 0.4" } - - es-errors@1.3.0: - resolution: - { - integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, - } - engines: { node: ">= 0.4" } - - es-object-atoms@1.0.0: - resolution: - { - integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==, - } - engines: { node: ">= 0.4" } - - es-set-tostringtag@2.0.3: - resolution: - { - integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==, - } - engines: { node: ">= 0.4" } - - es-shim-unscopables@1.0.2: - resolution: - { - integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, - } - - es-to-primitive@1.2.1: - resolution: - { - integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, - } - engines: { node: ">= 0.4" } - esbuild@0.20.2: resolution: { @@ -2502,12 +2287,6 @@ packages: integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==, } - for-each@0.3.3: - resolution: - { - integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, - } - foreground-child@3.2.1: resolution: { @@ -2557,25 +2336,6 @@ packages: engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] - function-bind@1.1.2: - resolution: - { - integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, - } - - function.prototype.name@1.1.6: - resolution: - { - integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, - } - engines: { node: ">= 0.4" } - - functions-have-names@1.2.3: - resolution: - { - integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, - } - gauge@3.0.2: resolution: { @@ -2598,13 +2358,6 @@ packages: } engines: { node: ">=18" } - get-intrinsic@1.2.4: - resolution: - { - integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, - } - engines: { node: ">= 0.4" } - get-stream@8.0.1: resolution: { @@ -2612,13 +2365,6 @@ packages: } engines: { node: ">=16" } - get-symbol-description@1.0.2: - resolution: - { - integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, - } - engines: { node: ">= 0.4" } - git-raw-commits@4.0.0: resolution: { @@ -2634,10 +2380,10 @@ packages: } engines: { node: ">= 6" } - glob@10.4.1: + glob@10.4.2: resolution: { - integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==, + integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==, } engines: { node: ">=16 || 14 >=14.18" } hasBin: true @@ -2656,13 +2402,6 @@ packages: } engines: { node: ">=18" } - globalthis@1.0.4: - resolution: - { - integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==, - } - engines: { node: ">= 0.4" } - globby@11.1.0: resolution: { @@ -2677,37 +2416,12 @@ packages: } engines: { node: ">=18" } - gopd@1.0.1: - resolution: - { - integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, - } - graceful-fs@4.2.11: resolution: { integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, } - grapheme-splitter@1.0.4: - resolution: - { - integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, - } - - hard-rejection@2.1.0: - resolution: - { - integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, - } - engines: { node: ">=6" } - - has-bigints@1.0.2: - resolution: - { - integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, - } - has-flag@3.0.0: resolution: { @@ -2722,58 +2436,18 @@ packages: } engines: { node: ">=8" } - has-property-descriptors@1.0.2: - resolution: - { - integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, - } - - has-proto@1.0.3: - resolution: - { - integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==, - } - engines: { node: ">= 0.4" } - - has-symbols@1.0.3: - resolution: - { - integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, - } - engines: { node: ">= 0.4" } - - has-tostringtag@1.0.2: - resolution: - { - integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, - } - engines: { node: ">= 0.4" } - has-unicode@2.0.1: resolution: { integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==, } - hasown@2.0.2: - resolution: - { - integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, - } - engines: { node: ">= 0.4" } - header-case@2.0.4: resolution: { integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, } - hosted-git-info@2.8.9: - resolution: - { - integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, - } - https-proxy-agent@5.0.1: resolution: { @@ -2843,13 +2517,6 @@ packages: } engines: { node: ">=0.8.19" } - indent-string@4.0.0: - resolution: - { - integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, - } - engines: { node: ">=8" } - indent-string@5.0.0: resolution: { @@ -2877,13 +2544,6 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - internal-slot@1.0.7: - resolution: - { - integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, - } - engines: { node: ">= 0.4" } - irregular-plurals@3.5.0: resolution: { @@ -2891,59 +2551,12 @@ packages: } engines: { node: ">=8" } - is-array-buffer@3.0.4: - resolution: - { - integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, - } - engines: { node: ">= 0.4" } - is-arrayish@0.2.1: resolution: { integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, } - is-bigint@1.0.4: - resolution: - { - integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, - } - - is-boolean-object@1.1.2: - resolution: - { - integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, - } - engines: { node: ">= 0.4" } - - is-callable@1.2.7: - resolution: - { - integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, - } - engines: { node: ">= 0.4" } - - is-core-module@2.13.1: - resolution: - { - integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, - } - - is-data-view@1.0.1: - resolution: - { - integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==, - } - engines: { node: ">= 0.4" } - - is-date-object@1.0.5: - resolution: - { - integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, - } - engines: { node: ">= 0.4" } - is-extglob@2.1.1: resolution: { @@ -2979,20 +2592,6 @@ packages: } engines: { node: ">=0.10.0" } - is-negative-zero@2.0.3: - resolution: - { - integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==, - } - engines: { node: ">= 0.4" } - - is-number-object@1.0.7: - resolution: - { - integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, - } - engines: { node: ">= 0.4" } - is-number@7.0.0: resolution: { @@ -3007,13 +2606,6 @@ packages: } engines: { node: ">=8" } - is-plain-obj@1.1.0: - resolution: - { - integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, - } - engines: { node: ">=0.10.0" } - is-plain-object@5.0.0: resolution: { @@ -3027,20 +2619,6 @@ packages: integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==, } - is-regex@1.1.4: - resolution: - { - integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, - } - engines: { node: ">= 0.4" } - - is-shared-array-buffer@1.0.3: - resolution: - { - integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==, - } - engines: { node: ">= 0.4" } - is-stream@3.0.0: resolution: { @@ -3048,13 +2626,6 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - is-string@1.0.7: - resolution: - { - integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, - } - engines: { node: ">= 0.4" } - is-subdir@1.2.0: resolution: { @@ -3062,13 +2633,6 @@ packages: } engines: { node: ">=4" } - is-symbol@1.0.4: - resolution: - { - integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, - } - engines: { node: ">= 0.4" } - is-text-path@2.0.0: resolution: { @@ -3076,13 +2640,6 @@ packages: } engines: { node: ">=8" } - is-typed-array@1.1.13: - resolution: - { - integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, - } - engines: { node: ">= 0.4" } - is-unicode-supported@2.0.0: resolution: { @@ -3090,12 +2647,6 @@ packages: } engines: { node: ">=18" } - is-weakref@1.0.2: - resolution: - { - integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, - } - is-windows@1.0.2: resolution: { @@ -3103,12 +2654,6 @@ packages: } engines: { node: ">=0.10.0" } - isarray@2.0.5: - resolution: - { - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, - } - isexe@2.0.0: resolution: { @@ -3209,20 +2754,6 @@ packages: engines: { node: ">=14.0.0" } hasBin: true - kind-of@6.0.3: - resolution: - { - integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, - } - engines: { node: ">=0.10.0" } - - kleur@4.1.5: - resolution: - { - integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, - } - engines: { node: ">=6" } - lilconfig@3.1.2: resolution: { @@ -3244,10 +2775,10 @@ packages: engines: { node: ">=18.12.0" } hasBin: true - listr2@8.2.1: + listr2@8.2.3: resolution: { - integrity: sha512-irTfvpib/rNiD637xeevjO2l3Z5loZmuaRi0L0YE5LfijwVY96oyVn0DFD3o/teAok7nfobMG1THvvcHh/BP6g==, + integrity: sha512-Lllokma2mtoniUOS94CcOErHWAug5iu7HOmDrvWgpw8jyQH2fomgB+7lZS4HWZxytUuQwkGOwe49FvwVaA85Xw==, } engines: { node: ">=18.0.0" } @@ -3402,10 +2933,10 @@ packages: integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, } - lru-cache@10.2.2: + lru-cache@10.3.0: resolution: { - integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==, + integrity: sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==, } engines: { node: 14 || >=16.14 } @@ -3422,20 +2953,6 @@ packages: } engines: { node: ">=8" } - map-obj@1.0.1: - resolution: - { - integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, - } - engines: { node: ">=0.10.0" } - - map-obj@4.3.0: - resolution: - { - integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, - } - engines: { node: ">=8" } - matcher@5.0.0: resolution: { @@ -3464,13 +2981,6 @@ packages: } engines: { node: ">=16.10" } - meow@6.1.1: - resolution: - { - integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==, - } - engines: { node: ">=8" } - merge-stream@2.0.0: resolution: { @@ -3512,33 +3022,19 @@ packages: } engines: { node: ">=18" } - min-indent@1.0.1: - resolution: - { - integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, - } - engines: { node: ">=4" } - minimatch@3.1.2: resolution: { integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, } - minimatch@9.0.4: + minimatch@9.0.5: resolution: { - integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==, + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, } engines: { node: ">=16 || 14 >=14.17" } - minimist-options@4.1.0: - resolution: - { - integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, - } - engines: { node: ">= 6" } - minimist@1.2.8: resolution: { @@ -3580,13 +3076,6 @@ packages: } engines: { node: ">= 18" } - mixme@0.5.10: - resolution: - { - integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==, - } - engines: { node: ">= 8.0.0" } - mkdirp@1.0.4: resolution: { @@ -3603,6 +3092,13 @@ packages: engines: { node: ">=10" } hasBin: true + mri@1.2.0: + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, + } + engines: { node: ">=4" } + ms@2.1.2: resolution: { @@ -3684,12 +3180,6 @@ packages: engines: { node: ">=6" } hasBin: true - normalize-package-data@2.5.0: - resolution: - { - integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, - } - npm-run-path@5.3.0: resolution: { @@ -3711,26 +3201,6 @@ packages: } engines: { node: ">=0.10.0" } - object-inspect@1.13.1: - resolution: - { - integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, - } - - object-keys@1.1.1: - resolution: - { - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, - } - engines: { node: ">= 0.4" } - - object.assign@4.1.5: - resolution: - { - integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, - } - engines: { node: ">= 0.4" } - once@1.4.0: resolution: { @@ -3841,6 +3311,12 @@ packages: } engines: { node: ">=18" } + package-json-from-dist@1.0.0: + resolution: + { + integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==, + } + param-case@3.0.4: resolution: { @@ -3915,12 +3391,6 @@ packages: } engines: { node: ">=12" } - path-parse@1.0.7: - resolution: - { - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, - } - path-scurry@1.11.1: resolution: { @@ -3991,13 +3461,6 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - possible-typed-array-names@1.0.0: - resolution: - { - integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==, - } - engines: { node: ">= 0.4" } - postcss@8.4.31: resolution: { @@ -4061,13 +3524,6 @@ packages: integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } - quick-lru@4.0.1: - resolution: - { - integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, - } - engines: { node: ">=8" } - react-dom@18.2.0: resolution: { @@ -4083,20 +3539,6 @@ packages: } engines: { node: ">=0.10.0" } - read-pkg-up@7.0.1: - resolution: - { - integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, - } - engines: { node: ">=8" } - - read-pkg@5.2.0: - resolution: - { - integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, - } - engines: { node: ">=8" } - read-yaml-file@1.1.0: resolution: { @@ -4111,13 +3553,6 @@ packages: } engines: { node: ">= 6" } - redent@3.0.0: - resolution: - { - integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, - } - engines: { node: ">=8" } - reduce-flatten@2.0.0: resolution: { @@ -4131,13 +3566,6 @@ packages: integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, } - regexp.prototype.flags@1.5.2: - resolution: - { - integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==, - } - engines: { node: ">= 0.4" } - require-directory@2.1.1: resolution: { @@ -4152,12 +3580,6 @@ packages: } engines: { node: ">=0.10.0" } - require-main-filename@2.0.0: - resolution: - { - integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, - } - resolve-cwd@3.0.0: resolution: { @@ -4179,13 +3601,6 @@ packages: } engines: { node: ">=8" } - resolve@1.22.8: - resolution: - { - integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, - } - hasBin: true - restore-cursor@4.0.0: resolution: { @@ -4236,26 +3651,12 @@ packages: integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, } - safe-array-concat@1.1.2: - resolution: - { - integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==, - } - engines: { node: ">=0.4" } - safe-buffer@5.2.1: resolution: { integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, } - safe-regex-test@1.0.3: - resolution: - { - integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, - } - engines: { node: ">= 0.4" } - safer-buffer@2.1.2: resolution: { @@ -4268,13 +3669,6 @@ packages: integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, } - semver@5.7.2: - resolution: - { - integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, - } - hasBin: true - semver@6.3.1: resolution: { @@ -4309,20 +3703,6 @@ packages: integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, } - set-function-length@1.2.2: - resolution: - { - integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, - } - engines: { node: ">= 0.4" } - - set-function-name@2.0.2: - resolution: - { - integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==, - } - engines: { node: ">= 0.4" } - shebang-command@1.2.0: resolution: { @@ -4351,13 +3731,6 @@ packages: } engines: { node: ">=8" } - side-channel@1.0.6: - resolution: - { - integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==, - } - engines: { node: ">= 0.4" } - signal-exit@3.0.7: resolution: { @@ -4399,14 +3772,6 @@ packages: } engines: { node: ">=18" } - smartwrap@2.0.2: - resolution: - { - integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==, - } - engines: { node: ">=6" } - hasBin: true - snake-case@3.0.4: resolution: { @@ -4426,30 +3791,6 @@ packages: integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, } - spdx-correct@3.2.0: - resolution: - { - integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, - } - - spdx-exceptions@2.5.0: - resolution: - { - integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, - } - - spdx-expression-parse@3.0.1: - resolution: - { - integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, - } - - spdx-license-ids@3.0.18: - resolution: - { - integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==, - } - split2@4.2.0: resolution: { @@ -4470,12 +3811,6 @@ packages: } engines: { node: ">=10" } - stream-transform@2.1.3: - resolution: - { - integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==, - } - streamsearch@1.1.0: resolution: { @@ -4511,26 +3846,6 @@ packages: } engines: { node: ">=18" } - string.prototype.trim@1.2.9: - resolution: - { - integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==, - } - engines: { node: ">= 0.4" } - - string.prototype.trimend@1.0.8: - resolution: - { - integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==, - } - - string.prototype.trimstart@1.0.8: - resolution: - { - integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==, - } - engines: { node: ">= 0.4" } - string_decoder@1.3.0: resolution: { @@ -4565,13 +3880,6 @@ packages: } engines: { node: ">=12" } - strip-indent@3.0.0: - resolution: - { - integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, - } - engines: { node: ">=8" } - style-dictionary-sets@2.3.0: resolution: { @@ -4623,13 +3931,6 @@ packages: } engines: { node: ">=8" } - supports-preserve-symlinks-flag@1.0.0: - resolution: - { - integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, - } - engines: { node: ">= 0.4" } - table-layout@1.0.2: resolution: { @@ -4724,80 +4025,23 @@ packages: integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, } - trim-newlines@3.0.1: - resolution: - { - integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, - } - engines: { node: ">=8" } - tslib@2.6.2: resolution: { integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, } - tty-table@4.2.3: - resolution: - { - integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==, - } - engines: { node: ">=8.0.0" } - hasBin: true - - type-fest@0.13.1: - resolution: - { - integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, - } - engines: { node: ">=10" } - - type-fest@0.6.0: - resolution: - { - integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, - } - engines: { node: ">=8" } - - type-fest@0.8.1: - resolution: - { - integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, - } - engines: { node: ">=8" } - - typed-array-buffer@1.0.2: - resolution: - { - integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==, - } - engines: { node: ">= 0.4" } - - typed-array-byte-length@1.0.1: - resolution: - { - integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==, - } - engines: { node: ">= 0.4" } - - typed-array-byte-offset@1.0.2: - resolution: - { - integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==, - } - engines: { node: ">= 0.4" } - - typed-array-length@1.0.6: + type-fest@0.13.1: resolution: { - integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==, + integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, } - engines: { node: ">= 0.4" } + engines: { node: ">=10" } - typescript@5.4.5: + typescript@5.5.2: resolution: { - integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==, + integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==, } engines: { node: ">=14.17" } hasBin: true @@ -4816,12 +4060,6 @@ packages: } engines: { node: ">=8" } - unbox-primitive@1.0.2: - resolution: - { - integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, - } - undici-types@5.26.5: resolution: { @@ -4873,12 +4111,6 @@ packages: integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, } - validate-npm-package-license@3.0.4: - resolution: - { - integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, - } - vite@5.2.9: resolution: { @@ -4910,12 +4142,6 @@ packages: terser: optional: true - wcwidth@1.0.1: - resolution: - { - integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, - } - webidl-conversions@3.0.1: resolution: { @@ -4935,18 +4161,6 @@ packages: integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, } - which-boxed-primitive@1.0.2: - resolution: - { - integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, - } - - which-module@2.0.1: - resolution: - { - integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==, - } - which-pm@2.0.0: resolution: { @@ -4954,13 +4168,6 @@ packages: } engines: { node: ">=8.15" } - which-typed-array@1.1.15: - resolution: - { - integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==, - } - engines: { node: ">= 0.4" } - which@1.3.1: resolution: { @@ -4989,13 +4196,6 @@ packages: } engines: { node: ">=8.0.0" } - wrap-ansi@6.2.0: - resolution: - { - integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, - } - engines: { node: ">=8" } - wrap-ansi@7.0.0: resolution: { @@ -5030,12 +4230,6 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - y18n@4.0.3: - resolution: - { - integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, - } - y18n@5.0.8: resolution: { @@ -5070,13 +4264,6 @@ packages: engines: { node: ">= 14" } hasBin: true - yargs-parser@18.1.3: - resolution: - { - integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==, - } - engines: { node: ">=6" } - yargs-parser@21.1.1: resolution: { @@ -5084,13 +4271,6 @@ packages: } engines: { node: ">=12" } - yargs@15.4.1: - resolution: - { - integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==, - } - engines: { node: ">=8" } - yargs@17.7.2: resolution: { @@ -5172,7 +4352,7 @@ snapshots: transitivePeerDependencies: - encoding - "@changesets/cli@2.27.5": + "@changesets/cli@2.27.6": dependencies: "@babel/runtime": 7.24.7 "@changesets/apply-release-plan": 7.0.3 @@ -5198,7 +4378,7 @@ snapshots: external-editor: 3.1.0 fs-extra: 7.0.1 human-id: 1.0.2 - meow: 6.1.1 + mri: 1.2.0 outdent: 0.5.0 p-limit: 2.3.0 preferred-pm: 3.1.3 @@ -5206,7 +4386,6 @@ snapshots: semver: 7.6.2 spawndamnit: 2.0.0 term-size: 2.2.1 - tty-table: 4.2.3 "@changesets/config@3.0.1": dependencies: @@ -5305,11 +4484,11 @@ snapshots: human-id: 1.0.2 prettier: 2.8.8 - "@commitlint/cli@19.3.0(@types/node@20.14.2)(typescript@5.4.5)": + "@commitlint/cli@19.3.0(@types/node@20.14.9)(typescript@5.5.2)": dependencies: "@commitlint/format": 19.3.0 "@commitlint/lint": 19.2.2 - "@commitlint/load": 19.2.0(@types/node@20.14.2)(typescript@5.4.5) + "@commitlint/load": 19.2.0(@types/node@20.14.9)(typescript@5.5.2) "@commitlint/read": 19.2.1 "@commitlint/types": 19.0.3 execa: 8.0.1 @@ -5356,15 +4535,15 @@ snapshots: "@commitlint/rules": 19.0.3 "@commitlint/types": 19.0.3 - "@commitlint/load@19.2.0(@types/node@20.14.2)(typescript@5.4.5)": + "@commitlint/load@19.2.0(@types/node@20.14.9)(typescript@5.5.2)": dependencies: "@commitlint/config-validator": 19.0.3 "@commitlint/execute-rule": 19.0.0 "@commitlint/resolve-extends": 19.1.0 "@commitlint/types": 19.0.3 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.4.5) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5) + cosmiconfig: 9.0.0(typescript@5.5.2) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -5558,37 +4737,37 @@ snapshots: - encoding - supports-color - "@moonrepo/cli@1.25.6": + "@moonrepo/cli@1.26.4": dependencies: detect-libc: 2.0.3 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.25.6 - "@moonrepo/core-linux-arm64-musl": 1.25.6 - "@moonrepo/core-linux-x64-gnu": 1.25.6 - "@moonrepo/core-linux-x64-musl": 1.25.6 - "@moonrepo/core-macos-arm64": 1.25.6 - "@moonrepo/core-macos-x64": 1.25.6 - "@moonrepo/core-windows-x64-msvc": 1.25.6 - - "@moonrepo/core-linux-arm64-gnu@1.25.6": + "@moonrepo/core-linux-arm64-gnu": 1.26.4 + "@moonrepo/core-linux-arm64-musl": 1.26.4 + "@moonrepo/core-linux-x64-gnu": 1.26.4 + "@moonrepo/core-linux-x64-musl": 1.26.4 + "@moonrepo/core-macos-arm64": 1.26.4 + "@moonrepo/core-macos-x64": 1.26.4 + "@moonrepo/core-windows-x64-msvc": 1.26.4 + + "@moonrepo/core-linux-arm64-gnu@1.26.4": optional: true - "@moonrepo/core-linux-arm64-musl@1.25.6": + "@moonrepo/core-linux-arm64-musl@1.26.4": optional: true - "@moonrepo/core-linux-x64-gnu@1.25.6": + "@moonrepo/core-linux-x64-gnu@1.26.4": optional: true - "@moonrepo/core-linux-x64-musl@1.25.6": + "@moonrepo/core-linux-x64-musl@1.26.4": optional: true - "@moonrepo/core-macos-arm64@1.25.6": + "@moonrepo/core-macos-arm64@1.26.4": optional: true - "@moonrepo/core-macos-x64@1.25.6": + "@moonrepo/core-macos-x64@1.26.4": optional: true - "@moonrepo/core-windows-x64-msvc@1.25.6": + "@moonrepo/core-windows-x64-msvc@1.26.4": optional: true "@next/env@14.2.1": {} @@ -5921,20 +5100,16 @@ snapshots: "@types/conventional-commits-parser@5.0.0": dependencies: - "@types/node": 20.14.2 + "@types/node": 20.14.9 "@types/estree@1.0.5": {} - "@types/minimist@1.2.5": {} - "@types/node@12.20.55": {} - "@types/node@20.14.2": + "@types/node@20.14.9": dependencies: undici-types: 5.26.5 - "@types/normalize-package-data@2.4.4": {} - "@types/semver@7.5.8": {} "@types/trusted-types@2.0.7": {} @@ -6026,39 +5201,14 @@ snapshots: array-back@4.0.2: {} - array-buffer-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - is-array-buffer: 3.0.4 - array-find-index@1.0.2: {} array-ify@1.0.0: {} array-union@2.1.0: {} - array.prototype.flat@1.3.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-shim-unscopables: 1.0.2 - - arraybuffer.prototype.slice@1.0.3: - dependencies: - array-buffer-byte-length: 1.0.1 - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - is-array-buffer: 3.0.4 - is-shared-array-buffer: 1.0.3 - arrgv@1.0.2: {} - arrify@1.0.1: {} - arrify@3.0.0: {} async-sema@3.1.1: {} @@ -6109,10 +5259,6 @@ snapshots: - encoding - supports-color - available-typed-arrays@1.0.7: - dependencies: - possible-typed-array-names: 1.0.0 - balanced-match@1.0.2: {} better-path-resolve@1.0.0: @@ -6138,22 +5284,10 @@ snapshots: dependencies: fill-range: 7.1.1 - breakword@1.0.6: - dependencies: - wcwidth: 1.0.1 - busboy@1.6.0: dependencies: streamsearch: 1.1.0 - call-bind@1.0.7: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - set-function-length: 1.2.2 - callsites@3.1.0: {} callsites@4.1.0: {} @@ -6163,14 +5297,6 @@ snapshots: pascal-case: 3.1.2 tslib: 2.6.2 - camelcase-keys@6.2.2: - dependencies: - camelcase: 5.3.1 - map-obj: 4.3.0 - quick-lru: 4.0.1 - - camelcase@5.3.1: {} - caniuse-lite@1.0.30001610: {} capital-case@1.0.4: @@ -6236,20 +5362,12 @@ snapshots: client-only@0.0.1: {} - cliui@6.0.0: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - clone@1.0.4: {} - code-excerpt@4.0.0: dependencies: convert-to-spaces: 2.0.1 @@ -6333,21 +5451,21 @@ snapshots: convert-to-spaces@2.0.1: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5): + cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2): dependencies: - "@types/node": 20.14.2 - cosmiconfig: 9.0.0(typescript@5.4.5) + "@types/node": 20.14.9 + cosmiconfig: 9.0.0(typescript@5.5.2) jiti: 1.21.6 - typescript: 5.4.5 + typescript: 5.5.2 - cosmiconfig@9.0.0(typescript@5.4.5): + cosmiconfig@9.0.0(typescript@5.5.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.2 cross-spawn@5.1.0: dependencies: @@ -6361,43 +5479,12 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - csv-generate@3.4.3: {} - - csv-parse@4.16.3: {} - - csv-stringify@5.6.5: {} - - csv@5.5.3: - dependencies: - csv-generate: 3.4.3 - csv-parse: 4.16.3 - csv-stringify: 5.6.5 - stream-transform: 2.1.3 - currently-unhandled@0.4.1: dependencies: array-find-index: 1.0.2 dargs@8.1.0: {} - data-view-buffer@1.0.1: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - - data-view-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - - data-view-byte-offset@1.0.0: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-data-view: 1.0.1 - dataloader@1.4.0: {} date-time@3.1.0: @@ -6408,35 +5495,12 @@ snapshots: dependencies: ms: 2.1.2 - decamelize-keys@1.1.1: - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - - decamelize@1.2.0: {} - deep-extend@0.6.0: {} deep-object-diff@1.1.9: {} deepmerge@4.3.1: {} - defaults@1.0.4: - dependencies: - clone: 1.0.4 - - define-data-property@1.1.4: - dependencies: - es-define-property: 1.0.0 - es-errors: 1.3.0 - gopd: 1.0.1 - - define-properties@1.2.1: - dependencies: - define-data-property: 1.1.4 - has-property-descriptors: 1.0.2 - object-keys: 1.1.1 - delegates@1.0.0: {} detect-indent@6.1.0: {} @@ -6479,81 +5543,6 @@ snapshots: dependencies: is-arrayish: 0.2.1 - es-abstract@1.23.3: - dependencies: - array-buffer-byte-length: 1.0.1 - arraybuffer.prototype.slice: 1.0.3 - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - data-view-buffer: 1.0.1 - data-view-byte-length: 1.0.1 - data-view-byte-offset: 1.0.0 - es-define-property: 1.0.0 - es-errors: 1.3.0 - es-object-atoms: 1.0.0 - es-set-tostringtag: 2.0.3 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.4 - get-symbol-description: 1.0.2 - globalthis: 1.0.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - internal-slot: 1.0.7 - is-array-buffer: 3.0.4 - is-callable: 1.2.7 - is-data-view: 1.0.1 - is-negative-zero: 2.0.3 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - is-string: 1.0.7 - is-typed-array: 1.1.13 - is-weakref: 1.0.2 - object-inspect: 1.13.1 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.2 - safe-array-concat: 1.1.2 - safe-regex-test: 1.0.3 - string.prototype.trim: 1.2.9 - string.prototype.trimend: 1.0.8 - string.prototype.trimstart: 1.0.8 - typed-array-buffer: 1.0.2 - typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.15 - - es-define-property@1.0.0: - dependencies: - get-intrinsic: 1.2.4 - - es-errors@1.3.0: {} - - es-object-atoms@1.0.0: - dependencies: - es-errors: 1.3.0 - - es-set-tostringtag@2.0.3: - dependencies: - get-intrinsic: 1.2.4 - has-tostringtag: 1.0.2 - hasown: 2.0.2 - - es-shim-unscopables@1.0.2: - dependencies: - hasown: 2.0.2 - - es-to-primitive@1.2.1: - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - esbuild@0.20.2: optionalDependencies: "@esbuild/aix-ppc64": 0.20.2 @@ -6677,10 +5666,6 @@ snapshots: focus-visible@5.2.0: {} - for-each@0.3.3: - dependencies: - is-callable: 1.2.7 - foreground-child@3.2.1: dependencies: cross-spawn: 7.0.3 @@ -6713,17 +5698,6 @@ snapshots: fsevents@2.3.3: optional: true - function-bind@1.1.2: {} - - function.prototype.name@1.1.6: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - functions-have-names: 1.2.3 - - functions-have-names@1.2.3: {} - gauge@3.0.2: dependencies: aproba: 2.0.0 @@ -6740,22 +5714,8 @@ snapshots: get-east-asian-width@1.2.0: {} - get-intrinsic@1.2.4: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - has-proto: 1.0.3 - has-symbols: 1.0.3 - hasown: 2.0.2 - get-stream@8.0.1: {} - get-symbol-description@1.0.2: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - git-raw-commits@4.0.0: dependencies: dargs: 8.1.0 @@ -6766,12 +5726,13 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.4.1: + glob@10.4.2: dependencies: foreground-child: 3.2.1 jackspeak: 3.4.0 - minimatch: 9.0.4 + minimatch: 9.0.5 minipass: 7.1.2 + package-json-from-dist: 1.0.0 path-scurry: 1.11.1 glob@7.2.3: @@ -6787,11 +5748,6 @@ snapshots: dependencies: ini: 4.1.1 - globalthis@1.0.4: - dependencies: - define-properties: 1.2.1 - gopd: 1.0.1 - globby@11.1.0: dependencies: array-union: 2.1.0 @@ -6810,47 +5766,19 @@ snapshots: slash: 5.1.0 unicorn-magic: 0.1.0 - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.4 - graceful-fs@4.2.11: {} - grapheme-splitter@1.0.4: {} - - hard-rejection@2.1.0: {} - - has-bigints@1.0.2: {} - has-flag@3.0.0: {} has-flag@4.0.0: {} - has-property-descriptors@1.0.2: - dependencies: - es-define-property: 1.0.0 - - has-proto@1.0.3: {} - - has-symbols@1.0.3: {} - - has-tostringtag@1.0.2: - dependencies: - has-symbols: 1.0.3 - has-unicode@2.0.1: {} - hasown@2.0.2: - dependencies: - function-bind: 1.1.2 - header-case@2.0.4: dependencies: capital-case: 1.0.4 tslib: 2.6.2 - hosted-git-info@2.8.9: {} - https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 @@ -6881,8 +5809,6 @@ snapshots: imurmurhash@0.1.4: {} - indent-string@4.0.0: {} - indent-string@5.0.0: {} inflight@1.0.6: @@ -6894,44 +5820,10 @@ snapshots: ini@4.1.1: {} - internal-slot@1.0.7: - dependencies: - es-errors: 1.3.0 - hasown: 2.0.2 - side-channel: 1.0.6 - irregular-plurals@3.5.0: {} - is-array-buffer@3.0.4: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - is-arrayish@0.2.1: {} - is-bigint@1.0.4: - dependencies: - has-bigints: 1.0.2 - - is-boolean-object@1.1.2: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-callable@1.2.7: {} - - is-core-module@2.13.1: - dependencies: - hasown: 2.0.2 - - is-data-view@1.0.1: - dependencies: - is-typed-array: 1.1.13 - - is-date-object@1.0.5: - dependencies: - has-tostringtag: 1.0.2 - is-extglob@2.1.1: {} is-fullwidth-code-point@3.0.0: {} @@ -6946,63 +5838,28 @@ snapshots: dependencies: is-extglob: 2.1.1 - is-negative-zero@2.0.3: {} - - is-number-object@1.0.7: - dependencies: - has-tostringtag: 1.0.2 - is-number@7.0.0: {} is-obj@2.0.0: {} - is-plain-obj@1.1.0: {} - is-plain-object@5.0.0: {} is-promise@4.0.0: {} - is-regex@1.1.4: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-shared-array-buffer@1.0.3: - dependencies: - call-bind: 1.0.7 - is-stream@3.0.0: {} - is-string@1.0.7: - dependencies: - has-tostringtag: 1.0.2 - is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 - is-symbol@1.0.4: - dependencies: - has-symbols: 1.0.3 - is-text-path@2.0.0: dependencies: text-extensions: 2.4.0 - is-typed-array@1.1.13: - dependencies: - which-typed-array: 1.1.15 - is-unicode-supported@2.0.0: {} - is-weakref@1.0.2: - dependencies: - call-bind: 1.0.7 - is-windows@1.0.2: {} - isarray@2.0.5: {} - isexe@2.0.0: {} jackspeak@3.4.0: @@ -7048,10 +5905,6 @@ snapshots: jsonpath-plus@8.1.0: {} - kind-of@6.0.3: {} - - kleur@4.1.5: {} - lilconfig@3.1.2: {} lines-and-columns@1.2.4: {} @@ -7063,7 +5916,7 @@ snapshots: debug: 4.3.5 execa: 8.0.1 lilconfig: 3.1.2 - listr2: 8.2.1 + listr2: 8.2.3 micromatch: 4.0.7 pidtree: 0.6.0 string-argv: 0.3.2 @@ -7071,7 +5924,7 @@ snapshots: transitivePeerDependencies: - supports-color - listr2@8.2.1: + listr2@8.2.3: dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 @@ -7169,7 +6022,7 @@ snapshots: dependencies: tslib: 2.6.2 - lru-cache@10.2.2: {} + lru-cache@10.3.0: {} lru-cache@4.1.5: dependencies: @@ -7180,10 +6033,6 @@ snapshots: dependencies: semver: 6.3.1 - map-obj@1.0.1: {} - - map-obj@4.3.0: {} - matcher@5.0.0: dependencies: escape-string-regexp: 5.0.0 @@ -7198,20 +6047,6 @@ snapshots: meow@12.1.1: {} - meow@6.1.1: - dependencies: - "@types/minimist": 1.2.5 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 2.5.0 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.13.1 - yargs-parser: 18.1.3 - merge-stream@2.0.0: {} merge2@1.4.1: {} @@ -7227,22 +6062,14 @@ snapshots: mimic-function@5.0.1: {} - min-indent@1.0.1: {} - minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - minimatch@9.0.4: + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 - minimist-options@4.1.0: - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - minimist@1.2.8: {} minipass@3.3.6: @@ -7263,12 +6090,12 @@ snapshots: minipass: 7.1.2 rimraf: 5.0.5 - mixme@0.5.10: {} - mkdirp@1.0.4: {} mkdirp@3.0.1: {} + mri@1.2.0: {} + ms@2.1.2: {} ms@2.1.3: {} @@ -7317,13 +6144,6 @@ snapshots: dependencies: abbrev: 1.1.1 - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.8 - semver: 5.7.2 - validate-npm-package-license: 3.0.4 - npm-run-path@5.3.0: dependencies: path-key: 4.0.0 @@ -7337,17 +6157,6 @@ snapshots: object-assign@4.1.1: {} - object-inspect@1.13.1: {} - - object-keys@1.1.1: {} - - object.assign@4.1.5: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - once@1.4.0: dependencies: wrappy: 1.0.2 @@ -7403,6 +6212,8 @@ snapshots: find-up-simple: 1.0.0 load-json-file: 7.0.1 + package-json-from-dist@1.0.0: {} + param-case@3.0.4: dependencies: dot-case: 3.0.4 @@ -7441,11 +6252,9 @@ snapshots: path-key@4.0.0: {} - path-parse@1.0.7: {} - path-scurry@1.11.1: dependencies: - lru-cache: 10.2.2 + lru-cache: 10.3.0 minipass: 7.1.2 path-type@4.0.0: {} @@ -7470,8 +6279,6 @@ snapshots: dependencies: irregular-plurals: 3.5.0 - possible-typed-array-names@1.0.0: {} - postcss@8.4.31: dependencies: nanoid: 3.3.7 @@ -7505,8 +6312,6 @@ snapshots: queue-microtask@1.2.3: {} - quick-lru@4.0.1: {} - react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 @@ -7517,19 +6322,6 @@ snapshots: dependencies: loose-envify: 1.4.0 - read-pkg-up@7.0.1: - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - - read-pkg@5.2.0: - dependencies: - "@types/normalize-package-data": 2.4.4 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 @@ -7543,28 +6335,14 @@ snapshots: string_decoder: 1.3.0 util-deprecate: 1.0.2 - redent@3.0.0: - dependencies: - indent-string: 4.0.0 - strip-indent: 3.0.0 - reduce-flatten@2.0.0: {} regenerator-runtime@0.14.1: {} - regexp.prototype.flags@1.5.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-errors: 1.3.0 - set-function-name: 2.0.2 - require-directory@2.1.1: {} require-from-string@2.0.2: {} - require-main-filename@2.0.0: {} - resolve-cwd@3.0.0: dependencies: resolve-from: 5.0.0 @@ -7573,12 +6351,6 @@ snapshots: resolve-from@5.0.0: {} - resolve@1.22.8: - dependencies: - is-core-module: 2.13.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - restore-cursor@4.0.0: dependencies: onetime: 5.1.2 @@ -7594,7 +6366,7 @@ snapshots: rimraf@5.0.5: dependencies: - glob: 10.4.1 + glob: 10.4.2 rollup@4.14.3: dependencies: @@ -7622,29 +6394,14 @@ snapshots: dependencies: queue-microtask: 1.2.3 - safe-array-concat@1.1.2: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 - isarray: 2.0.5 - safe-buffer@5.2.1: {} - safe-regex-test@1.0.3: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-regex: 1.1.4 - safer-buffer@2.1.2: {} scheduler@0.23.0: dependencies: loose-envify: 1.4.0 - semver@5.7.2: {} - semver@6.3.1: {} semver@7.6.2: {} @@ -7661,22 +6418,6 @@ snapshots: set-blocking@2.0.0: {} - set-function-length@1.2.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - gopd: 1.0.1 - has-property-descriptors: 1.0.2 - - set-function-name@2.0.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.2 - shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 @@ -7689,13 +6430,6 @@ snapshots: shebang-regex@3.0.0: {} - side-channel@1.0.6: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - get-intrinsic: 1.2.4 - object-inspect: 1.13.1 - signal-exit@3.0.7: {} signal-exit@4.1.0: {} @@ -7714,15 +6448,6 @@ snapshots: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 - smartwrap@2.0.2: - dependencies: - array.prototype.flat: 1.3.2 - breakword: 1.0.6 - grapheme-splitter: 1.0.4 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 15.4.1 - snake-case@3.0.4: dependencies: dot-case: 3.0.4 @@ -7735,20 +6460,6 @@ snapshots: cross-spawn: 5.1.0 signal-exit: 3.0.7 - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.18 - - spdx-exceptions@2.5.0: {} - - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.5.0 - spdx-license-ids: 3.0.18 - - spdx-license-ids@3.0.18: {} - split2@4.2.0: {} sprintf-js@1.0.3: {} @@ -7757,10 +6468,6 @@ snapshots: dependencies: escape-string-regexp: 2.0.0 - stream-transform@2.1.3: - dependencies: - mixme: 0.5.10 - streamsearch@1.1.0: {} string-argv@0.3.2: {} @@ -7783,25 +6490,6 @@ snapshots: get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 - string.prototype.trim@1.2.9: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.23.3 - es-object-atoms: 1.0.0 - - string.prototype.trimend@1.0.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - - string.prototype.trimstart@1.0.8: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-object-atoms: 1.0.0 - string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 @@ -7818,10 +6506,6 @@ snapshots: strip-final-newline@3.0.0: {} - strip-indent@3.0.0: - dependencies: - min-indent: 1.0.1 - style-dictionary-sets@2.3.0: dependencies: deepmerge: 4.3.1 @@ -7832,7 +6516,7 @@ snapshots: change-case: 4.1.2 commander: 8.3.0 fs-extra: 10.1.0 - glob: 10.4.1 + glob: 10.4.2 json5: 2.2.3 jsonc-parser: 3.2.1 lodash: 4.17.21 @@ -7858,8 +6542,6 @@ snapshots: dependencies: has-flag: 4.0.0 - supports-preserve-symlinks-flag@1.0.0: {} - table-layout@1.0.2: dependencies: array-back: 4.0.2 @@ -7913,71 +6595,16 @@ snapshots: tr46@0.0.3: {} - trim-newlines@3.0.1: {} - tslib@2.6.2: {} - tty-table@4.2.3: - dependencies: - chalk: 4.1.2 - csv: 5.5.3 - kleur: 4.1.5 - smartwrap: 2.0.2 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 17.7.2 - type-fest@0.13.1: {} - type-fest@0.6.0: {} - - type-fest@0.8.1: {} - - typed-array-buffer@1.0.2: - dependencies: - call-bind: 1.0.7 - es-errors: 1.3.0 - is-typed-array: 1.1.13 - - typed-array-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - - typed-array-byte-offset@1.0.2: - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - - typed-array-length@1.0.6: - dependencies: - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-proto: 1.0.3 - is-typed-array: 1.1.13 - possible-typed-array-names: 1.0.0 - - typescript@5.4.5: {} + typescript@5.5.2: {} typical@4.0.0: {} typical@5.2.0: {} - unbox-primitive@1.0.2: - dependencies: - call-bind: 1.0.7 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 - undici-types@5.26.5: {} unicorn-magic@0.1.0: {} @@ -8000,24 +6627,15 @@ snapshots: util-deprecate@1.0.2: {} - validate-npm-package-license@3.0.4: - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - - vite@5.2.9(@types/node@20.14.2): + vite@5.2.9(@types/node@20.14.9): dependencies: esbuild: 0.20.2 postcss: 8.4.38 rollup: 4.14.3 optionalDependencies: - "@types/node": 20.14.2 + "@types/node": 20.14.9 fsevents: 2.3.3 - wcwidth@1.0.1: - dependencies: - defaults: 1.0.4 - webidl-conversions@3.0.1: {} well-known-symbols@2.0.0: {} @@ -8027,29 +6645,11 @@ snapshots: tr46: 0.0.3 webidl-conversions: 3.0.1 - which-boxed-primitive@1.0.2: - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - - which-module@2.0.1: {} - which-pm@2.0.0: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 - which-typed-array@1.1.15: - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.7 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.2 - which@1.3.1: dependencies: isexe: 2.0.0 @@ -8067,12 +6667,6 @@ snapshots: reduce-flatten: 2.0.0 typical: 5.2.0 - wrap-ansi@6.2.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 @@ -8098,8 +6692,6 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 4.1.0 - y18n@4.0.3: {} - y18n@5.0.8: {} yallist@2.1.2: {} @@ -8110,27 +6702,8 @@ snapshots: yaml@2.4.5: {} - yargs-parser@18.1.3: - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - yargs-parser@21.1.1: {} - yargs@15.4.1: - dependencies: - cliui: 6.0.0 - decamelize: 1.2.0 - find-up: 4.1.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - require-main-filename: 2.0.0 - set-blocking: 2.0.0 - string-width: 4.2.3 - which-module: 2.0.1 - y18n: 4.0.3 - yargs-parser: 18.1.3 - yargs@17.7.2: dependencies: cliui: 8.0.1 From a13d654014f968fb1c2dda685a7326091040cdbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 28 Jun 2024 19:00:29 +0000 Subject: [PATCH 204/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 19 +++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 29 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 0303f134..6cc8cf3e 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -54,6 +54,7 @@ "sour-rabbits-own", "sour-wasps-sparkle", "strange-rings-love", + "strong-trains-crash", "sweet-pillows-protect", "tame-bobcats-beg", "twelve-impalas-compare", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 179c3ea5..86f8c634 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,24 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.39 + +### Minor Changes + +- [#364](https://github.com/adobe/spectrum-tokens/pull/364) [`f96ffca`](https://github.com/adobe/spectrum-tokens/commit/f96ffca4990547f8ddc8341d141e0edc65b872d9) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added coach-indicator s2 tokens + + ## Token Diff + + _Tokens added (8):_ + + - `coach-indicator-collapsed-gap` + - `coach-indicator-collapsed-ring-rounding-increment` + - `coach-indicator-collapsed-ring-thickness` + - `coach-indicator-color` + - `coach-indicator-expanded-gap` + - `coach-indicator-expanded-ring-rounding-increment` + - `coach-indicator-expanded-ring-thickness` + - `coach-indicator-opacity` + ## 13.0.0-beta.38 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 77acd05e..fdff683a 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.38", + "version": "13.0.0-beta.39", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 23fa4ac1..c7cffcd3 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.10 + +### Patch Changes + +- Updated dependencies [[`f96ffca`](https://github.com/adobe/spectrum-tokens/commit/f96ffca4990547f8ddc8341d141e0edc65b872d9)]: + - @adobe/spectrum-tokens@13.0.0-beta.39 + ## 0.0.2-beta.9 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 5a5559fd..411ed609 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.9", + "version": "0.0.2-beta.10", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 331fe312e332262842500a1c8c00df4601ddd29b Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Tue, 9 Jul 2024 15:10:38 +0000 Subject: [PATCH 205/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 37 ++++- packages/tokens/src/layout-component.json | 167 +++++++++++++++++++++- 2 files changed, 198 insertions(+), 6 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 44dd5b0c..e782462c 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1722,5 +1722,40 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" + }, + "static-black-text-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "9b7919b5-764c-4f93-b4c7-39d8bf7f2b51" + }, + "static-white-text-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "13ee65f0-4bb9-4213-905d-92c1b788a702" + }, + "track-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-300}", + "uuid": "6f2bb13a-8579-495c-8fe3-0046b1f99b01" + }, + "static-black-track-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "c6d40ce0-bcee-4b56-9e63-a51ee1579ef0" + }, + "static-white-track-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-white-300}", + "uuid": "23791534-8963-4ff8-bfb4-15108da47103" + }, + "static-black-track-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-900}", + "uuid": "0599d3b0-4d9e-4a12-ae0e-8f60e3533ab9" + }, + "static-white-track-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-white-900}", + "uuid": "a1cbc282-1376-48d1-b8bb-92f10aef7c6f" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 1d56c713..c26e6a8a 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1465,12 +1465,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", + "value": "8px", "uuid": "06751674-2222-433d-9dc6-40f14b2add6c" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "10px", "uuid": "c9052808-918e-4368-b113-28f928104eda" } } @@ -3920,13 +3920,15 @@ "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "27b481a4-0ea9-4e1c-a283-4a799d18d642" + "uuid": "27b481a4-0ea9-4e1c-a283-4a799d18d642", + "deprecated": true }, "accordion-edge-to-disclosure-indicator": { "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", - "uuid": "614e6448-c0a4-4ad1-b125-f362e3001a86" + "uuid": "614e6448-c0a4-4ad1-b125-f362e3001a86", + "deprecated": true }, "accordion-edge-to-text": { "component": "accordion", @@ -8359,5 +8361,160 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.2", "uuid": "6fa9bbc8-4c96-45a4-b133-bb2556a003de" + }, + "accordion-content-area-edge-to-content-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "b7b23a23-abca-4e96-8c6f-d2b5b4c79d99" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "782d9dfd-413f-4031-8431-be9b638c69b6" + } + } + }, + "accordion-content-area-edge-to-content-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "66fbf171-ff30-4376-9026-686ae3e2fc70" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "80419f6a-d93a-4cc0-883a-833e4717e28f" + } + } + }, + "accordion-content-area-edge-to-content-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "755f796f-bcb6-466c-b4f2-b10b0f819bba" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "f4d133f7-d444-4ddc-907f-9d75ff621a03" + } + } + }, + "accordion-content-area-edge-to-content-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "c26ba15a-cb44-44b2-8423-baf52b1b42db" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "c9aaff95-a17a-408b-bb55-1c9026314c8b" + } + } + }, + "accordion-disclosure-indicator-to-text-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "e6cb7eb7-afa3-441f-9f22-5ca8eec66749" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "f009b7a8-95ca-4b39-92c3-f7656cf2e429" + } + } + }, + "accordion-disclosure-indicator-to-text-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "11px", + "uuid": "e28ca787-7457-4f40-9188-039347047c83" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "13px", + "uuid": "f62edd6d-b833-4aea-8e03-ddd1dfccc464" + } + } + }, + "accordion-disclosure-indicator-to-text-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "802cef85-0ad5-417b-953f-66a812e6637e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "17px", + "uuid": "fae0b204-0198-465a-aa98-c7b4224e4c48" + } + } + }, + "accordion-disclosure-indicator-to-text-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "17px", + "uuid": "90fe1ad4-76a8-4b02-a036-af6d4397334e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "aafcb612-0828-48c7-af1c-39870aafd44a" + } + } + }, + "accordion-item-to-divider": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "9a2c9dee-7acf-4083-9c66-685454444f8c" + }, + "meter-thickness-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "6e404f16-900e-4dd2-8705-3c9077f52240" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "f9a81245-4bcb-4fca-8a4b-04ac78d9d1ca" + } + } + }, + "meter-thickness-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "e5ac2b35-da1d-4936-baa8-498705c9529c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "13px", + "uuid": "272738b2-a274-4e2e-8582-9c2cc7962a85" + } + } } -} +} \ No newline at end of file From c0a292ac011b424d8f9de7e783ae2e283645b129 Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 9 Jul 2024 10:33:30 -0600 Subject: [PATCH 206/295] fix: added missing component data --- packages/tokens/src/layout-component.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index c26e6a8a..a668908b 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8363,6 +8363,7 @@ "uuid": "6fa9bbc8-4c96-45a4-b133-bb2556a003de" }, "accordion-content-area-edge-to-content-small": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8378,6 +8379,7 @@ } }, "accordion-content-area-edge-to-content-medium": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8393,6 +8395,7 @@ } }, "accordion-content-area-edge-to-content-large": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8408,6 +8411,7 @@ } }, "accordion-content-area-edge-to-content-extra-large": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8423,6 +8427,7 @@ } }, "accordion-disclosure-indicator-to-text-small": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8438,6 +8443,7 @@ } }, "accordion-disclosure-indicator-to-text-medium": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8453,6 +8459,7 @@ } }, "accordion-disclosure-indicator-to-text-large": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8468,6 +8475,7 @@ } }, "accordion-disclosure-indicator-to-text-extra-large": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8483,11 +8491,13 @@ } }, "accordion-item-to-divider": { + "component": "accordion", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0px", "uuid": "9a2c9dee-7acf-4083-9c66-685454444f8c" }, "meter-thickness-medium": { + "component": "meter", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8503,6 +8513,7 @@ } }, "meter-thickness-extra-large": { + "component": "meter", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8517,4 +8528,4 @@ } } } -} \ No newline at end of file +} From e04bddf65549c87cd314b54966fe066ae649b7f7 Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 9 Jul 2024 11:06:56 -0600 Subject: [PATCH 207/295] chore: added changeset --- .changeset/khaki-teachers-do.md | 43 +++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .changeset/khaki-teachers-do.md diff --git a/.changeset/khaki-teachers-do.md b/.changeset/khaki-teachers-do.md new file mode 100644 index 00000000..911235d7 --- /dev/null +++ b/.changeset/khaki-teachers-do.md @@ -0,0 +1,43 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +- Updated S2 accordion tokens (non-color) in respective desktop and mobile layout sets +- Added S2 meter tokens, including both color and non-color. + +## Design Motivation + +- Accordion component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing content-area-edge-to-content tokens enhances inclusivity for various design patterns. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13435). +- Meter component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing static tokens enables us to standardize the use of tokens across various components with indicators and tracks. This includes progress bars, progress circles, and potentially sliders in the future. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13414). + +## Token Diff + +_Tokens added (18):_ + +- `accordion-content-area-edge-to-content-extra-large` +- `accordion-content-area-edge-to-content-large` +- `accordion-content-area-edge-to-content-medium` +- `accordion-content-area-edge-to-content-small` +- `accordion-disclosure-indicator-to-text-extra-large` +- `accordion-disclosure-indicator-to-text-large` +- `accordion-disclosure-indicator-to-text-medium` +- `accordion-disclosure-indicator-to-text-small` +- `accordion-item-to-divider` +- `meter-thickness-extra-large` +- `meter-thickness-medium` +- `static-black-text-color` +- `static-black-track-color` +- `static-black-track-indicator-color` +- `static-white-text-color` +- `static-white-track-color` +- `static-white-track-indicator-color` +- `track-color` + +_Newly deprecated tokens (2):_ + +- `accordion-edge-to-disclosure-indicator` +- `accordion-disclosure-indicator-to-text` + +_Tokens updated (1):_ + +- `meter-thickness-large` From 96b84773ecfa9d9e1af59faf912a46e2f3b1de27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 9 Jul 2024 17:15:42 +0000 Subject: [PATCH 208/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 45 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 ++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 55 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 6cc8cf3e..8a62f6df 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -33,6 +33,7 @@ "good-baboons-doubt", "good-peas-mix", "happy-students-vanish", + "khaki-teachers-do", "kind-geese-hope", "lazy-bears-remember", "lemon-dragons-raise", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 86f8c634..058c3573 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,50 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.40 + +### Minor Changes + +- [#373](https://github.com/adobe/spectrum-tokens/pull/373) [`e04bddf`](https://github.com/adobe/spectrum-tokens/commit/e04bddf65549c87cd314b54966fe066ae649b7f7) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - Updated S2 accordion tokens (non-color) in respective desktop and mobile layout sets + + - Added S2 meter tokens, including both color and non-color. + + ## Design Motivation + + - Accordion component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing content-area-edge-to-content tokens enhances inclusivity for various design patterns. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13435). + - Meter component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing static tokens enables us to standardize the use of tokens across various components with indicators and tracks. This includes progress bars, progress circles, and potentially sliders in the future. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13414). + + ## Token Diff + + _Tokens added (18):_ + + - `accordion-content-area-edge-to-content-extra-large` + - `accordion-content-area-edge-to-content-large` + - `accordion-content-area-edge-to-content-medium` + - `accordion-content-area-edge-to-content-small` + - `accordion-disclosure-indicator-to-text-extra-large` + - `accordion-disclosure-indicator-to-text-large` + - `accordion-disclosure-indicator-to-text-medium` + - `accordion-disclosure-indicator-to-text-small` + - `accordion-item-to-divider` + - `meter-thickness-extra-large` + - `meter-thickness-medium` + - `static-black-text-color` + - `static-black-track-color` + - `static-black-track-indicator-color` + - `static-white-text-color` + - `static-white-track-color` + - `static-white-track-indicator-color` + - `track-color` + + _Newly deprecated tokens (2):_ + + - `accordion-edge-to-disclosure-indicator` + - `accordion-disclosure-indicator-to-text` + + _Tokens updated (1):_ + + - `meter-thickness-large` + ## 13.0.0-beta.39 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index fdff683a..08749eb4 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.39", + "version": "13.0.0-beta.40", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index c7cffcd3..05771062 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.11 + +### Patch Changes + +- Updated dependencies [[`e04bddf`](https://github.com/adobe/spectrum-tokens/commit/e04bddf65549c87cd314b54966fe066ae649b7f7)]: + - @adobe/spectrum-tokens@13.0.0-beta.40 + ## 0.0.2-beta.10 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 411ed609..9507c30a 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.10", + "version": "0.0.2-beta.11", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 5dc37c2bd50150a911b18796e9ef1f1eca303758 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Thu, 25 Jul 2024 05:44:26 +0000 Subject: [PATCH 209/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 113 ++++++++++++---------- packages/tokens/src/layout.json | 17 +++- 2 files changed, 80 insertions(+), 50 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index a668908b..5836445b 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1207,35 +1207,15 @@ }, "action-bar-height": { "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "e67822de-d0cd-4b49-8e90-6c43523bb4dd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "4be2cf45-1ba5-4a6f-a004-8d26ecbb4c2f" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-height-400}", + "uuid": "e67822de-d0cd-4b49-8e90-6c43523bb4dd" }, "action-bar-top-to-item-counter": { "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "73f82d09-7927-461c-b7d7-ab0bc6b3e3f9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "b8466a83-3409-47c0-a329-b8e83b83abdb" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-top-to-text-300}", + "uuid": "73f82d09-7927-461c-b7d7-ab0bc6b3e3f9" }, "swatch-size-extra-small": { "component": "swatch", @@ -2359,12 +2339,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "20px", "uuid": "20706cc7-9d07-4938-8328-debd3ab8d822" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "24px", "uuid": "852fc55b-beb7-428c-bc0c-452abc204de3" } } @@ -2375,12 +2355,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", + "value": "24px", "uuid": "46dd2eca-598a-45e3-8c7d-c6cf17e148bf" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", + "value": "28px", "uuid": "545604c8-484f-4697-907c-31e2b2cb46d0" } } @@ -2391,12 +2371,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "28px", "uuid": "ec457831-d272-4809-a84a-f1e9dcaec495" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", + "value": "32px", "uuid": "0e548378-9633-49d2-90d8-b40e1ba7c98e" } } @@ -2407,12 +2387,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", + "value": "32px", "uuid": "95c5905f-b209-4e84-881f-13ea85f12d87" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", + "value": "36px", "uuid": "8f4dd02c-d3eb-4654-aea4-b3921048cdbe" } } @@ -2423,12 +2403,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", + "value": "36px", "uuid": "7ee6d5ae-eb01-49e1-93ba-df3e7c25d876" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", + "value": "40px", "uuid": "b0351cf7-f0df-4044-ab26-5b6649ea2e1f" } } @@ -2439,12 +2419,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", + "value": "40px", "uuid": "87234a25-8f6d-457c-9d3f-363930fec12c" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", + "value": "44px", "uuid": "1798b58e-fce4-411d-ba8d-75006fa4f53e" } } @@ -2455,12 +2435,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", + "value": "44px", "uuid": "d533a543-9622-4c43-92a6-82dd5eebcc64" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", + "value": "48px", "uuid": "543dcd25-42cc-4198-b4ba-ba5524b08691" } } @@ -2471,12 +2451,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", + "value": "48px", "uuid": "d6aaa2c4-d213-44de-9bae-742d26df8765" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", + "value": "52px", "uuid": "5eab16f9-5537-4a14-958d-d96200c5723f" } } @@ -2487,12 +2467,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", + "value": "52px", "uuid": "8cee2b4d-48c8-45aa-803b-5d1cd9027fcf" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "55px", + "value": "56px", "uuid": "94ca9817-988a-4e4f-9163-954d29204049" } } @@ -2503,12 +2483,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", + "value": "56px", "uuid": "5b9fb77d-8a2e-4e1c-ba86-475cd66b4202" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "62px", + "value": "64px", "uuid": "97f11dd2-0173-464c-9eef-c260c9e8cf22" } } @@ -2519,12 +2499,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", + "value": "64px", "uuid": "48959be8-02f9-45b9-8190-af60c93cbb6c" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", + "value": "72px", "uuid": "cfbf3ec4-f51d-4a50-b81c-765fff84ce14" } } @@ -8527,5 +8507,40 @@ "uuid": "272738b2-a274-4e2e-8582-9c2cc7962a85" } } + }, + "thumbnail-opacity-checkerboard-square-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "0322f848-009a-45c4-ad4a-17d8f7e41995" + }, + "thumbnail-corner-radius": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{corner-radius-75}", + "uuid": "13681294-e3c6-4898-a17e-943932a53c08" + }, + "action-bar-top-to-content-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-200}", + "uuid": "cfa41a43-8fb2-4c3b-a2df-f8658c87b31b" + }, + "action-bar-bottom-to-content-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-200}", + "uuid": "3116a00c-0ad3-4ae6-9fbb-f9b5624a2708" + }, + "action-bar-edge-to-content-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-100}", + "uuid": "a9fc8786-060e-4663-9381-211621240b2f" + }, + "action-bar-close-button-to-counter": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{text-to-control-50}", + "uuid": "bc54e89f-6740-4004-891e-c515f8f79693" + }, + "action-bar-counter-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "66540ddb-ec74-487f-8e09-a37b436694b5" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index c4ce4fab..46e686a6 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -302,6 +302,21 @@ } } }, + "text-to-control-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "4b47e7a8-b330-4c6c-a497-9ee9eed0c50a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "56e2cc0c-7d56-454e-bb4f-4517f412eeac" + } + } + }, "text-to-control-75": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { @@ -2329,4 +2344,4 @@ "value": "{drop-shadow-blur-200}", "uuid": "f3487a86-3aea-4527-8b5c-287c0bddad6c" } -} +} \ No newline at end of file From 5905c137ba0326a3f30cdf614f260d7da8e14a48 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 25 Jul 2024 00:11:43 -0600 Subject: [PATCH 210/295] fix: added missing component properties --- packages/tokens/src/layout-component.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 5836445b..a6629585 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8509,38 +8509,45 @@ } }, "thumbnail-opacity-checkerboard-square-size": { + "component": "thumbnail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "0322f848-009a-45c4-ad4a-17d8f7e41995" }, "thumbnail-corner-radius": { + "component": "thumbnail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{corner-radius-75}", "uuid": "13681294-e3c6-4898-a17e-943932a53c08" }, "action-bar-top-to-content-area": { + "component": "action-bar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-200}", "uuid": "cfa41a43-8fb2-4c3b-a2df-f8658c87b31b" }, "action-bar-bottom-to-content-area": { + "component": "action-bar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-200}", "uuid": "3116a00c-0ad3-4ae6-9fbb-f9b5624a2708" }, "action-bar-edge-to-content-area": { + "component": "action-bar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-100}", "uuid": "a9fc8786-060e-4663-9381-211621240b2f" }, "action-bar-close-button-to-counter": { + "component": "action-bar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{text-to-control-50}", "uuid": "bc54e89f-6740-4004-891e-c515f8f79693" }, "action-bar-counter-font-size": { + "component": "action-bar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "66540ddb-ec74-487f-8e09-a37b436694b5" } -} \ No newline at end of file +} From 6e3be6d8a458efa1752a8dd1360f03fa83f84c37 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 25 Jul 2024 00:45:31 -0600 Subject: [PATCH 211/295] chore: added changeset --- .changeset/sixty-poems-tap.md | 84 +++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 .changeset/sixty-poems-tap.md diff --git a/.changeset/sixty-poems-tap.md b/.changeset/sixty-poems-tap.md new file mode 100644 index 00000000..c6d406b0 --- /dev/null +++ b/.changeset/sixty-poems-tap.md @@ -0,0 +1,84 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +- [Updated thumbnail size tokens and added new tokens](https://github.com/adobe/spectrum-tokens-studio-data/pull/144) +- [Updated S2 Action bar tokens](https://github.com/adobe/spectrum-tokens-studio-data/pull/149) + +## Design Motivation + +Thumbnail: updated sizes in order for opacity checkerboards to translate better in implementation. + +⚠️ Important note: Accepting updates from this release will update the thumbnail sizes. The change in size is no more than 4 px. In some cases, you may want to relink to a new size. View the migration guide below to find the closest recommended size: + +| Former thumbnail size | Available thumbnail size | +| :-------------------- | :--------------------------------------- | +| size 50 (16 x 16) | size 50 (16 x 16) | +| size 75 (18 x 18) | size 75 (20 x 20) | +| size 100 (20 x 20) | size 75 (20 x 20) | +| size 200 (22 x 22) | size 100 (24 x 24) | +| size 300 (26 x 26) | size 200 (28 x 28) | +| size 400 (28 x 28) | size 200 (28 x 28) | +| size 500 (32 x 32) | size 300 (32 x 32) | +| size 600 (36 x 36) | size 400 (36 x 36) | +| size 700 (40 x 40) | size 500 (40 x 40) | +| size 800 (44 x 44) | size 600 (44 x 44) | +| size 900 (50 x 50) | size 700 (48 x 48) or size 800 (52 x 52) | +| size 1000 (56 x 56) | size 900 (56 x 56) | +| -- | size 1000 (64 x 64) | + +Action bar: Updated S2 action bar (non-color) in respective desktop and mobile layout sets. + +## Token Diff + +_Tokens added (8):_ + +- `action-bar-top-to-content-area` +- `action-bar-bottom-to-content-area` +- `action-bar-edge-to-content-area` +- `action-bar-close-button-to-counter` +- `action-bar-counter-font-size` +- `thumbnail-opacity-checkerboard-square-size` +- `thumbnail-corner-radius` +- `text-to-control-50` + +_Tokens updated (2):_ + +- `action-bar-height` +- `action-bar-top-to-item-counter` + +_Token values updated (11):_ + +- `thumbnail-size-75` + - `desktop`: `18px` -> `20px` + - `mobile`: `22px` -> `24px` +- `thumbnail-size-100` + - `desktop`: `20px` -> `24px` + - `mobile`: `26px` -> `28px` +- `thumbnail-size-200` + - `desktop`: `22px` -> `28px` + - `mobile`: `28px` -> `32px` +- `thumbnail-size-300` + - `desktop`: `26px` -> `32px` + - `mobile`: `32px` -> `36px` +- `thumbnail-size-400` + - `desktop`: `28px` -> `36px` + - `mobile`: `36px` -> `40px` +- `thumbnail-size-500` + - `desktop`: `32px` -> `40px` + - `mobile`: `40px` -> `44px` +- `thumbnail-size-600` + - `desktop`: `36px` -> `44px` + - `mobile`: `46px` -> `48px` +- `thumbnail-size-700` + - `desktop`: `40px` -> `48px` + - `mobile`: `50px` -> `52px` +- `thumbnail-size-800` + - `desktop`: `44px` -> `52px` + - `mobile`: `55px` -> `56px` +- `thumbnail-size-900` + - `desktop`: `50px` -> `56px` + - `mobile`: `62px` -> `64px` +- `thumbnail-size-1000` + - `desktop`: `56px` -> `64px` + - `mobile`: `70px` -> `72px` From 95b4e430613210df05bcaadd424a5091bd0221e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Jul 2024 06:50:02 +0000 Subject: [PATCH 212/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 86 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 96 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 8a62f6df..6835f364 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -48,6 +48,7 @@ "silly-radios-float", "silver-pianos-share", "six-phones-rescue", + "sixty-poems-tap", "slimy-emus-enjoy", "small-clocks-jam", "smooth-turtles-retire", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 058c3573..93d76d2c 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,91 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.41 + +### Minor Changes + +- [#375](https://github.com/adobe/spectrum-tokens/pull/375) [`6e3be6d`](https://github.com/adobe/spectrum-tokens/commit/6e3be6d8a458efa1752a8dd1360f03fa83f84c37) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - [Updated thumbnail size tokens and added new tokens](https://github.com/adobe/spectrum-tokens-studio-data/pull/144) + + - [Updated S2 Action bar tokens](https://github.com/adobe/spectrum-tokens-studio-data/pull/149) + + ## Design Motivation + + Thumbnail: updated sizes in order for opacity checkerboards to translate better in implementation. + + ⚠️ Important note: Accepting updates from this release will update the thumbnail sizes. The change in size is no more than 4 px. In some cases, you may want to relink to a new size. View the migration guide below to find the closest recommended size: + + | Former thumbnail size | Available thumbnail size | + | :-------------------- | :--------------------------------------- | + | size 50 (16 x 16) | size 50 (16 x 16) | + | size 75 (18 x 18) | size 75 (20 x 20) | + | size 100 (20 x 20) | size 75 (20 x 20) | + | size 200 (22 x 22) | size 100 (24 x 24) | + | size 300 (26 x 26) | size 200 (28 x 28) | + | size 400 (28 x 28) | size 200 (28 x 28) | + | size 500 (32 x 32) | size 300 (32 x 32) | + | size 600 (36 x 36) | size 400 (36 x 36) | + | size 700 (40 x 40) | size 500 (40 x 40) | + | size 800 (44 x 44) | size 600 (44 x 44) | + | size 900 (50 x 50) | size 700 (48 x 48) or size 800 (52 x 52) | + | size 1000 (56 x 56) | size 900 (56 x 56) | + | -- | size 1000 (64 x 64) | + + Action bar: Updated S2 action bar (non-color) in respective desktop and mobile layout sets. + + ## Token Diff + + _Tokens added (8):_ + + - `action-bar-top-to-content-area` + - `action-bar-bottom-to-content-area` + - `action-bar-edge-to-content-area` + - `action-bar-close-button-to-counter` + - `action-bar-counter-font-size` + - `thumbnail-opacity-checkerboard-square-size` + - `thumbnail-corner-radius` + - `text-to-control-50` + + _Tokens updated (2):_ + + - `action-bar-height` + - `action-bar-top-to-item-counter` + + _Token values updated (11):_ + + - `thumbnail-size-75` + - `desktop`: `18px` -> `20px` + - `mobile`: `22px` -> `24px` + - `thumbnail-size-100` + - `desktop`: `20px` -> `24px` + - `mobile`: `26px` -> `28px` + - `thumbnail-size-200` + - `desktop`: `22px` -> `28px` + - `mobile`: `28px` -> `32px` + - `thumbnail-size-300` + - `desktop`: `26px` -> `32px` + - `mobile`: `32px` -> `36px` + - `thumbnail-size-400` + - `desktop`: `28px` -> `36px` + - `mobile`: `36px` -> `40px` + - `thumbnail-size-500` + - `desktop`: `32px` -> `40px` + - `mobile`: `40px` -> `44px` + - `thumbnail-size-600` + - `desktop`: `36px` -> `44px` + - `mobile`: `46px` -> `48px` + - `thumbnail-size-700` + - `desktop`: `40px` -> `48px` + - `mobile`: `50px` -> `52px` + - `thumbnail-size-800` + - `desktop`: `44px` -> `52px` + - `mobile`: `55px` -> `56px` + - `thumbnail-size-900` + - `desktop`: `50px` -> `56px` + - `mobile`: `62px` -> `64px` + - `thumbnail-size-1000` + - `desktop`: `56px` -> `64px` + - `mobile`: `70px` -> `72px` + ## 13.0.0-beta.40 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 08749eb4..32c187e8 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.40", + "version": "13.0.0-beta.41", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 05771062..7ffdf640 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.12 + +### Patch Changes + +- Updated dependencies [[`6e3be6d`](https://github.com/adobe/spectrum-tokens/commit/6e3be6d8a458efa1752a8dd1360f03fa83f84c37)]: + - @adobe/spectrum-tokens@13.0.0-beta.41 + ## 0.0.2-beta.11 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 9507c30a..3380df6f 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.11", + "version": "0.0.2-beta.12", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From e4fc5c2fcfdad12a1563e517f9e1c37150c41180 Mon Sep 17 00:00:00 2001 From: Nadeen Abuhasan <129990790+nabuhasan@users.noreply.github.com> Date: Thu, 25 Jul 2024 06:55:52 +0000 Subject: [PATCH 213/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 13 +++++++++---- packages/tokens/src/layout-component.json | 12 +++++++++++- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 52c37ee4..2f3579ac 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -2,13 +2,13 @@ "swatch-border-color": { "component": "swatch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", + "value": "{gray-1000}", "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" }, "swatch-border-opacity": { "component": "swatch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.51", + "value": "0.42", "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" }, "swatch-disabled-icon-border-color": { @@ -20,7 +20,7 @@ "swatch-disabled-icon-border-opacity": { "component": "swatch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.51", + "value": "0.42", "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" }, "thumbnail-border-color": { @@ -405,5 +405,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{blue-800}", "uuid": "bfd387b8-0ce0-45ff-8d66-fc5de2f4900c" + }, + "swatch-group-border-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-1000}", + "uuid": "08b8d06a-5475-47bf-ad2e-9f52ee07345a" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index a6629585..1db78313 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8549,5 +8549,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", "uuid": "66540ddb-ec74-487f-8e09-a37b436694b5" + }, + "swatch-group-spacing-spacious": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "b80ef303-eae7-498f-b172-73a098be0f0b" + }, + "swatch-group-border-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.2", + "uuid": "19968846-dad0-42eb-b6a8-af65f3a910ff" } -} +} \ No newline at end of file From 3cf60c8da4e1ecbb1c7b4688c0eca92db59849ee Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 25 Jul 2024 01:05:47 -0600 Subject: [PATCH 214/295] fix: added missing component properties --- packages/tokens/src/color-component.json | 3 ++- packages/tokens/src/layout-component.json | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 2f3579ac..d6ee2ef3 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -407,8 +407,9 @@ "uuid": "bfd387b8-0ce0-45ff-8d66-fc5de2f4900c" }, "swatch-group-border-color": { + "component": "swatch-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-1000}", "uuid": "08b8d06a-5475-47bf-ad2e-9f52ee07345a" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 1db78313..cf555daa 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8551,13 +8551,15 @@ "uuid": "66540ddb-ec74-487f-8e09-a37b436694b5" }, "swatch-group-spacing-spacious": { + "component": "swatch-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "b80ef303-eae7-498f-b172-73a098be0f0b" }, "swatch-group-border-opacity": { + "component": "swatch-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.2", "uuid": "19968846-dad0-42eb-b6a8-af65f3a910ff" } -} \ No newline at end of file +} From 2af3850a554812fd9c1b3e6fd902a746c9ac42c7 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 25 Jul 2024 01:16:54 -0600 Subject: [PATCH 215/295] chore: added changeset --- .changeset/wet-apricots-tickle.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .changeset/wet-apricots-tickle.md diff --git a/.changeset/wet-apricots-tickle.md b/.changeset/wet-apricots-tickle.md new file mode 100644 index 00000000..85ac8bc0 --- /dev/null +++ b/.changeset/wet-apricots-tickle.md @@ -0,0 +1,25 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated S2 swatch tokens and added swatch-group tokens in S2 Color and S2 Non-color data sets, respectively. + +## Design Motivation + +Swatch and swatch group components are being formalized as Spectrum 2 components. These tokens define the design data needed for implementation. Changes include updated corner rounding, colors and spacing for spacious density. + +For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13497). + +## Token Diff + +_Tokens added (3):_ + +- `swatch-group-spacing-spacious` +- `swatch-group-border-opacity` +- `swatch-group-border-color` + +_Tokens values updated (3):_ + +- `swatch-border-color`: `gray-900` -> `gray-1000` +- `swatch-border-opacity`: `0.51` -> `0.42` +- `swatch-disabled-icon-border-opacity`: `0.51` -> `0.42` From 49d08bb997961e066ca494cea927f86316ab0f35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Jul 2024 07:19:02 +0000 Subject: [PATCH 216/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 26 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 36 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 6835f364..70f5787d 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -64,6 +64,7 @@ "unlucky-buckets-shop", "warm-experts-beg", "weak-crabs-hammer", + "wet-apricots-tickle", "wet-jobs-lie", "wild-numbers-sip", "wise-turtles-confess" diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 93d76d2c..c99828e5 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,31 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.42 + +### Minor Changes + +- [#382](https://github.com/adobe/spectrum-tokens/pull/382) [`2af3850`](https://github.com/adobe/spectrum-tokens/commit/2af3850a554812fd9c1b3e6fd902a746c9ac42c7) Thanks [@nabuhasan](https://github.com/nabuhasan)! - Updated S2 swatch tokens and added swatch-group tokens in S2 Color and S2 Non-color data sets, respectively. + + ## Design Motivation + + Swatch and swatch group components are being formalized as Spectrum 2 components. These tokens define the design data needed for implementation. Changes include updated corner rounding, colors and spacing for spacious density. + + For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13497). + + ## Token Diff + + _Tokens added (3):_ + + - `swatch-group-spacing-spacious` + - `swatch-group-border-opacity` + - `swatch-group-border-color` + + _Tokens values updated (3):_ + + - `swatch-border-color`: `gray-900` -> `gray-1000` + - `swatch-border-opacity`: `0.51` -> `0.42` + - `swatch-disabled-icon-border-opacity`: `0.51` -> `0.42` + ## 13.0.0-beta.41 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 32c187e8..ff872bf0 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.41", + "version": "13.0.0-beta.42", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 7ffdf640..a436e8d1 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.13 + +### Patch Changes + +- Updated dependencies [[`2af3850`](https://github.com/adobe/spectrum-tokens/commit/2af3850a554812fd9c1b3e6fd902a746c9ac42c7)]: + - @adobe/spectrum-tokens@13.0.0-beta.42 + ## 0.0.2-beta.12 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 3380df6f..9bd89a7c 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.12", + "version": "0.0.2-beta.13", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 2a68053aaeea2744ddcd378da464ab89d2b51b44 Mon Sep 17 00:00:00 2001 From: Lynn Hao Date: Thu, 25 Jul 2024 14:49:54 +0000 Subject: [PATCH 217/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 20 +++++++++++++++++ packages/tokens/src/layout.json | 30 ++++++++++++++++++++++++++ 2 files changed, 50 insertions(+) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index e782462c..b31d5f0b 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -1703,6 +1703,21 @@ } } }, + "drop-shadow-color-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.2)", + "uuid": "84ced765-054d-44f4-9dbe-5be607f65a16" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgba(0, 0, 0, 0.6)", + "uuid": "8fd7fa72-67c3-4004-b8b3-af55a4b9cada" + } + } + }, "drop-shadow-emphasized-default-color": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-color-100}", @@ -1757,5 +1772,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{transparent-white-900}", "uuid": "a1cbc282-1376-48d1-b8bb-92f10aef7c6f" + }, + "drop-shadow-dragged-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color-300}", + "uuid": "83c30113-68b5-475b-ba46-9179c9ff7e8d" } } \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 46e686a6..fda43ea7 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2279,6 +2279,11 @@ "value": "0px", "uuid": "0c76c925-4d29-49a3-b882-e946bd7fe9f1" }, + "drop-shadow-x-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "cb6d74fe-cc32-47ff-bf8b-74597643a8a6" + }, "drop-shadow-y-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", @@ -2289,6 +2294,11 @@ "value": "2px", "uuid": "d2d0320a-6984-4b3f-8f5d-ccb88892a26c" }, + "drop-shadow-y-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "5d09089b-c0c5-4122-a3be-3e989562acda" + }, "drop-shadow-blur-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", @@ -2299,6 +2309,11 @@ "value": "8px", "uuid": "2b08d425-ecf2-4891-83cd-005a2d5e76ce" }, + "drop-shadow-blur-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "34812e0c-7ccf-49c2-884a-6fecd45f7c5a" + }, "drop-shadow-emphasized-default-x": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-x-100}", @@ -2343,5 +2358,20 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-blur-200}", "uuid": "f3487a86-3aea-4527-8b5c-287c0bddad6c" + }, + "drop-shadow-dragged-x": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-x-300}", + "uuid": "be5c80b4-5769-491b-9550-fcf94f0c762e" + }, + "drop-shadow-dragged-y": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-y-300}", + "uuid": "ff8d4fda-72fa-4256-b2c8-f22a9d3e644f" + }, + "drop-shadow-dragged-blur": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-blur-300}", + "uuid": "f6015252-21fb-48f9-aadb-5ad050e3d590" } } \ No newline at end of file From 681b4b0094d31bae4c9b1b095fa59d6448c26cab Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 25 Jul 2024 09:01:06 -0600 Subject: [PATCH 218/295] chore: added changeset --- .changeset/curly-pants-enjoy.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .changeset/curly-pants-enjoy.md diff --git a/.changeset/curly-pants-enjoy.md b/.changeset/curly-pants-enjoy.md new file mode 100644 index 00000000..02544bda --- /dev/null +++ b/.changeset/curly-pants-enjoy.md @@ -0,0 +1,22 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added dragged drop shadow tokens that point to new 300 global drop shadow tokens + +## Design Motivation + +These are new foundational drop shadow tokens that represent a higher elevation when items are dragged. The more prominent shadow also brings more visual focus to the dragged item. They will be used in the standard panel "dragged" state, as well as in future component updates, to be determined. + +## Token Diff + +_Tokens added (8):_ + +- `drop-shadow-blur-300` +- `drop-shadow-color-300` +- `drop-shadow-dragged-blur` +- `drop-shadow-dragged-color` +- `drop-shadow-dragged-x` +- `drop-shadow-dragged-y` +- `drop-shadow-x-300` +- `drop-shadow-y-300` From 8c95903721a407123a8e1dd3fed54b61a94620eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 25 Jul 2024 15:32:16 +0000 Subject: [PATCH 219/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 23 +++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 33 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 70f5787d..40107fd0 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -17,6 +17,7 @@ "chatty-dolphins-build", "chatty-turtles-sell", "clever-onions-compete", + "curly-pants-enjoy", "dirty-keys-deny", "dirty-pets-attend", "dull-eyes-grab", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index c99828e5..a998af5f 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,28 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.43 + +### Minor Changes + +- [#384](https://github.com/adobe/spectrum-tokens/pull/384) [`681b4b0`](https://github.com/adobe/spectrum-tokens/commit/681b4b0094d31bae4c9b1b095fa59d6448c26cab) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added dragged drop shadow tokens that point to new 300 global drop shadow tokens + + ## Design Motivation + + These are new foundational drop shadow tokens that represent a higher elevation when items are dragged. The more prominent shadow also brings more visual focus to the dragged item. They will be used in the standard panel "dragged" state, as well as in future component updates, to be determined. + + ## Token Diff + + _Tokens added (8):_ + + - `drop-shadow-blur-300` + - `drop-shadow-color-300` + - `drop-shadow-dragged-blur` + - `drop-shadow-dragged-color` + - `drop-shadow-dragged-x` + - `drop-shadow-dragged-y` + - `drop-shadow-x-300` + - `drop-shadow-y-300` + ## 13.0.0-beta.42 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index ff872bf0..4fb90209 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.42", + "version": "13.0.0-beta.43", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index a436e8d1..18456794 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.14 + +### Patch Changes + +- Updated dependencies [[`681b4b0`](https://github.com/adobe/spectrum-tokens/commit/681b4b0094d31bae4c9b1b095fa59d6448c26cab)]: + - @adobe/spectrum-tokens@13.0.0-beta.43 + ## 0.0.2-beta.13 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 9bd89a7c..e0e07b61 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.13", + "version": "0.0.2-beta.14", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 9b5c947a0366d01e78f89475a749bc2690125695 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Wed, 7 Aug 2024 20:39:24 +0000 Subject: [PATCH 220/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 7 +- packages/tokens/src/layout-component.json | 299 ++++++++++++++++++++-- 2 files changed, 288 insertions(+), 18 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index d6ee2ef3..0b5ad185 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -411,5 +411,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-1000}", "uuid": "08b8d06a-5475-47bf-ad2e-9f52ee07345a" + }, + "avatar-border-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-25}", + "uuid": "bae79ea7-2b3e-4d43-af42-7deab67acc7c" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index cf555daa..6d2c93b0 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2816,12 +2816,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "20px", "uuid": "6aa2d529-0e10-4eaf-8786-f38e04e4d438" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "24px", "uuid": "f23636e9-93e2-444d-a95b-1311a7e074f3" } } @@ -2832,12 +2832,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", + "value": "24px", "uuid": "f3293ec2-befd-49e8-a280-b5a1827aa40c" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", + "value": "28px", "uuid": "a2833b95-ba74-4caf-89e6-8294465d2780" } } @@ -2848,12 +2848,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "28px", "uuid": "a17f3911-00ad-4d52-a474-dc5d4e3341d1" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", + "value": "32px", "uuid": "7bfa97a1-39a8-4a30-af13-31ce1393098a" } } @@ -2864,12 +2864,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", + "value": "32px", "uuid": "337f89c8-5b8a-4cd9-a32d-31f2d9804b2e" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", + "value": "36px", "uuid": "b0bd14f7-9642-4e20-90c4-68f38a53e72c" } } @@ -2880,12 +2880,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", + "value": "36px", "uuid": "f7ee2f39-d2ea-44ce-a5e6-e9a2bb8af52e" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", + "value": "40px", "uuid": "44237baf-1128-445d-8337-a943c6ac0019" } } @@ -2896,12 +2896,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", + "value": "40px", "uuid": "9088ecf5-e278-48fe-a7cc-bdf77d15772f" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", + "value": "44px", "uuid": "db33d97e-15e4-4248-a8cf-4b69d745a2e0" } } @@ -2912,12 +2912,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", + "value": "44px", "uuid": "15634a63-05f3-4fb8-989a-cb3ad46b8946" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", + "value": "48px", "uuid": "9ea7c014-2c8d-403f-ad7f-fa3c08a3a46d" } } @@ -2928,16 +2928,136 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", + "value": "48px", "uuid": "92260f9e-ad2a-4e46-ad65-d83d99f7e7b7" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", + "value": "52px", "uuid": "0bec4f0f-efb2-44f9-a131-28f8fe248c40" } } }, + "avatar-size-800": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "52px", + "uuid": "4c3c7ee0-637c-4c0f-b79b-ba8d4f8aaf9d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "56px", + "uuid": "99cf09f1-da56-4961-a805-723b68f718c2" + } + } + }, + "avatar-size-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "56px", + "uuid": "531b56b5-3abd-4bcc-a4fa-9cceb08b0b8d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "64px", + "uuid": "e774036a-23b9-4d74-b878-5d8edf20355f" + } + } + }, + "avatar-size-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "64px", + "uuid": "7f677464-22fe-47c5-b4da-e6c60740aafe" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "72px", + "uuid": "c723eb21-c020-40d5-a225-5857c8b4f0c9" + } + } + }, + "avatar-size-1100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "72px", + "uuid": "63e8bd84-a7e2-4aed-9ac8-44ae2fe70424" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "80px", + "uuid": "371af425-26e6-4891-a195-b4dbee5e17b9" + } + } + }, + "avatar-size-1200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "80px", + "uuid": "d8af9c52-b267-4c77-8ca2-ffa5dc27a45e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "88px", + "uuid": "49075645-054f-4b42-8b8a-7fa4971b2ca9" + } + } + }, + "avatar-size-1300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "88px", + "uuid": "77d45064-5013-417e-9663-a91e97e40d01" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "96px", + "uuid": "b8372421-023d-4d86-b792-eb1c9fd8230c" + } + } + }, + "avatar-size-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "96px", + "uuid": "974ccab6-b9d9-4101-ba6c-69dd75b8602f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "104px", + "uuid": "c46a76c1-77af-4e15-96e1-9e7f16000de5" + } + } + }, + "avatar-size-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "104px", + "uuid": "2ab3cbdf-5791-41ca-b6e3-66d5a4970f32" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "112px", + "uuid": "06359a10-02d1-4886-a841-940b5ffbb0f0" + } + } + }, "alert-banner-minimum-height": { "component": "alert-banner", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", @@ -8561,5 +8681,150 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.2", "uuid": "19968846-dad0-42eb-b6a8-af65f3a910ff" + }, + "avatar-border-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{border-width-100}", + "uuid": "2d4cd3ad-cc2c-4ad5-9475-c73882c5201e" + }, + "avatar-group-size-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{avatar-size-50}", + "uuid": "d55ab204-ee6c-47e3-a21b-25543c8fc36b" + }, + "avatar-group-size-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{avatar-size-75}", + "uuid": "420c8327-fa41-4919-9e01-4d58178d739b" + }, + "avatar-group-size-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{avatar-size-100}", + "uuid": "1c869018-8c56-4c10-acea-7fc6e838aa09" + }, + "avatar-group-size-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{avatar-size-200}", + "uuid": "590ef940-55ea-4690-a403-e4b47a185a64" + }, + "avatar-group-size-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{avatar-size-300}", + "uuid": "5e60d980-21db-4bbd-b321-a20808571411" + }, + "avatar-group-size-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{avatar-size-400}", + "uuid": "80e446ee-0091-4c6e-9158-e15fbc6207a4" + }, + "avatar-group-size-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{avatar-size-500}", + "uuid": "4bf63b03-931b-47ce-bb1a-4bd4e2cd82c1" + }, + "avatar-to-avatar-50": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-4px", + "uuid": "4328bc86-01d4-4467-b99a-33099effe781" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-5px", + "uuid": "b395e912-9061-44bd-ab77-840cde0f3e80" + } + } + }, + "avatar-to-avatar-75": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-5px", + "uuid": "4970f7de-506d-4e2c-9412-8ebd268c5da3" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-6px", + "uuid": "889a7ebb-86b7-4615-87ee-e75aa4b48d60" + } + } + }, + "avatar-to-avatar-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-6px", + "uuid": "273888c7-abc9-4af8-802a-e8ecf864f2fa" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-7px", + "uuid": "bacd5b38-1eed-49d6-9513-f363315f2a23" + } + } + }, + "avatar-to-avatar-200": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-7px", + "uuid": "629d5ce9-487d-4ee9-be0d-5ff24c66d174" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-8px", + "uuid": "7815e63c-1d4f-4ee0-a656-a6053595ad59" + } + } + }, + "avatar-to-avatar-300": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-8px", + "uuid": "e345324b-640f-4f45-88c6-4765ca97ea22" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-9px", + "uuid": "04481b80-1c05-416a-95cf-c0c85147ce2e" + } + } + }, + "avatar-to-avatar-400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-9px", + "uuid": "63c5deff-94da-4981-ba9a-fd46b4372830" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-10px", + "uuid": "5c733ac6-d7b9-44f0-8827-1d8232ca5332" + } + } + }, + "avatar-to-avatar-500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-10px", + "uuid": "8b6b74b4-e7c3-4f7c-a2b6-f410fcc17a83" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-11px", + "uuid": "c980c4f4-f2c5-4963-873e-de275f3353d1" + } + } } -} +} \ No newline at end of file From 7eb60d42801c74029f142ef0da63c25e568d7828 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 7 Aug 2024 14:49:03 -0600 Subject: [PATCH 221/295] fix: added missing component data --- packages/tokens/src/color-component.json | 3 ++- packages/tokens/src/layout-component.json | 25 ++++++++++++++++++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 0b5ad185..b08b7d57 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -413,8 +413,9 @@ "uuid": "08b8d06a-5475-47bf-ad2e-9f52ee07345a" }, "avatar-border-color": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-25}", "uuid": "bae79ea7-2b3e-4d43-af42-7deab67acc7c" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 6d2c93b0..e18ffa4d 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -2939,6 +2939,7 @@ } }, "avatar-size-800": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -2954,6 +2955,7 @@ } }, "avatar-size-900": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -2969,6 +2971,7 @@ } }, "avatar-size-1000": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -2984,6 +2987,7 @@ } }, "avatar-size-1100": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -2999,6 +3003,7 @@ } }, "avatar-size-1200": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -3014,6 +3019,7 @@ } }, "avatar-size-1300": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -3029,6 +3035,7 @@ } }, "avatar-size-1400": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -3044,6 +3051,7 @@ } }, "avatar-size-1500": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8683,46 +8691,55 @@ "uuid": "19968846-dad0-42eb-b6a8-af65f3a910ff" }, "avatar-border-width": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{border-width-100}", "uuid": "2d4cd3ad-cc2c-4ad5-9475-c73882c5201e" }, "avatar-group-size-50": { + "component": "avatar-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{avatar-size-50}", "uuid": "d55ab204-ee6c-47e3-a21b-25543c8fc36b" }, "avatar-group-size-75": { + "component": "avatar-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{avatar-size-75}", "uuid": "420c8327-fa41-4919-9e01-4d58178d739b" }, "avatar-group-size-100": { + "component": "avatar-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{avatar-size-100}", "uuid": "1c869018-8c56-4c10-acea-7fc6e838aa09" }, "avatar-group-size-200": { + "component": "avatar-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{avatar-size-200}", "uuid": "590ef940-55ea-4690-a403-e4b47a185a64" }, "avatar-group-size-300": { + "component": "avatar-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{avatar-size-300}", "uuid": "5e60d980-21db-4bbd-b321-a20808571411" }, "avatar-group-size-400": { + "component": "avatar-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{avatar-size-400}", "uuid": "80e446ee-0091-4c6e-9158-e15fbc6207a4" }, "avatar-group-size-500": { + "component": "avatar-group", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{avatar-size-500}", "uuid": "4bf63b03-931b-47ce-bb1a-4bd4e2cd82c1" }, "avatar-to-avatar-50": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8738,6 +8755,7 @@ } }, "avatar-to-avatar-75": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8753,6 +8771,7 @@ } }, "avatar-to-avatar-100": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8768,6 +8787,7 @@ } }, "avatar-to-avatar-200": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8783,6 +8803,7 @@ } }, "avatar-to-avatar-300": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8798,6 +8819,7 @@ } }, "avatar-to-avatar-400": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8813,6 +8835,7 @@ } }, "avatar-to-avatar-500": { + "component": "avatar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -8827,4 +8850,4 @@ } } } -} \ No newline at end of file +} From 58425e67b2d4cbd716205d4d502cc823245811fe Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 7 Aug 2024 14:53:57 -0600 Subject: [PATCH 222/295] chore: added changeset --- .changeset/wicked-rings-knock.md | 80 ++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .changeset/wicked-rings-knock.md diff --git a/.changeset/wicked-rings-knock.md b/.changeset/wicked-rings-knock.md new file mode 100644 index 00000000..da3d1f70 --- /dev/null +++ b/.changeset/wicked-rings-knock.md @@ -0,0 +1,80 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated avatar and avatar group tokens + +## Description + +- Updated avatar size tokens, including all sizes from `75` to `700` +- Added new avatar size tokens, from `800` to `1500` +- Added new avatar border thickness and color tokens +- Added avatar group size tokens, from `50` to `500` +- Added avatar group spacing tokens, from `50` to `500` + +## Motivation and context + +- Avatar: added new sizes and updated existing sizes to better match other components and work across a variety of use cases. + - ⚠️ Important note: Accepting updates from this release will update the avatar sizes. The largest change in size is 8px. In some cases, you may want to relink to a new size. View the migration guide below to find the closest recommended size: + +| Former avatar size | Available avatar size | +| :----------------- | :--------------------------------------- | +| size 50 (16 x 16) | size 50 (16 x 16) | +| size 75 (18 x 18) | size 50 (16 x 16) or size 75 (20 x 20) | +| size 100 (20 x 20) | size 75 (20 x 20) | +| size 200 (22 x 22) | size 75 (20 x 20) or size 100 (24 x 24) | +| size 300 (26 x 26) | size 100 (24 x 24) or size 200 (28 x 28) | +| size 400 (28 x 28) | size 200 (28 x 28) | +| size 500 (32 x 32) | size 300 (32 x 32) | +| size 600 (36 x 36) | size 400 (36 x 36) | +| size 700 (40 x 40) | size 500 (40 x 40) | +| -- | size 600 (44 x 44) | +| -- | size 700 (48 x 48) | +| -- | size 800 (52 x 52) | +| -- | size 900 (56 x 56) | +| -- | size 1000 (64 x 64) | +| -- | size 1100 (72 x 72) | +| -- | size 1200 (80 x 80) | +| -- | size 1300 (88 x 88) | +| -- | size 1400 (96 x 96) | +| -- | size 1500 (104 x 104) | + +## Token Diff + +_Tokens added (24):_ + +- `avatar-border-color` +- `avatar-border-width` +- `avatar-group-size-100` +- `avatar-group-size-200` +- `avatar-group-size-300` +- `avatar-group-size-400` +- `avatar-group-size-50` +- `avatar-group-size-500` +- `avatar-group-size-75` +- `avatar-size-1000` +- `avatar-size-1100` +- `avatar-size-1200` +- `avatar-size-1300` +- `avatar-size-1400` +- `avatar-size-1500` +- `avatar-size-800` +- `avatar-size-900` +- `avatar-to-avatar-100` +- `avatar-to-avatar-200` +- `avatar-to-avatar-300` +- `avatar-to-avatar-400` +- `avatar-to-avatar-50` +- `avatar-to-avatar-500` +- `avatar-to-avatar-75` + +_Token values updated (8):_ + +- `avatar-size-100` +- `avatar-size-200` +- `avatar-size-300` +- `avatar-size-400` +- `avatar-size-500` +- `avatar-size-600` +- `avatar-size-700` +- `avatar-size-75` From 0b57e424ca59a9f9fc8e4df2822a16255573c3cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 7 Aug 2024 20:56:08 +0000 Subject: [PATCH 223/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 81 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 91 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 40107fd0..eda8b643 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -67,6 +67,7 @@ "weak-crabs-hammer", "wet-apricots-tickle", "wet-jobs-lie", + "wicked-rings-knock", "wild-numbers-sip", "wise-turtles-confess" ] diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index a998af5f..95c61481 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,86 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.44 + +### Minor Changes + +- [#388](https://github.com/adobe/spectrum-tokens/pull/388) [`58425e6`](https://github.com/adobe/spectrum-tokens/commit/58425e67b2d4cbd716205d4d502cc823245811fe) Thanks [@lynnhao](https://github.com/lynnhao)! - Updated avatar and avatar group tokens + + ## Description + + - Updated avatar size tokens, including all sizes from `75` to `700` + - Added new avatar size tokens, from `800` to `1500` + - Added new avatar border thickness and color tokens + - Added avatar group size tokens, from `50` to `500` + - Added avatar group spacing tokens, from `50` to `500` + + ## Motivation and context + + - Avatar: added new sizes and updated existing sizes to better match other components and work across a variety of use cases. + - ⚠️ Important note: Accepting updates from this release will update the avatar sizes. The largest change in size is 8px. In some cases, you may want to relink to a new size. View the migration guide below to find the closest recommended size: + + | Former avatar size | Available avatar size | + | :----------------- | :--------------------------------------- | + | size 50 (16 x 16) | size 50 (16 x 16) | + | size 75 (18 x 18) | size 50 (16 x 16) or size 75 (20 x 20) | + | size 100 (20 x 20) | size 75 (20 x 20) | + | size 200 (22 x 22) | size 75 (20 x 20) or size 100 (24 x 24) | + | size 300 (26 x 26) | size 100 (24 x 24) or size 200 (28 x 28) | + | size 400 (28 x 28) | size 200 (28 x 28) | + | size 500 (32 x 32) | size 300 (32 x 32) | + | size 600 (36 x 36) | size 400 (36 x 36) | + | size 700 (40 x 40) | size 500 (40 x 40) | + | -- | size 600 (44 x 44) | + | -- | size 700 (48 x 48) | + | -- | size 800 (52 x 52) | + | -- | size 900 (56 x 56) | + | -- | size 1000 (64 x 64) | + | -- | size 1100 (72 x 72) | + | -- | size 1200 (80 x 80) | + | -- | size 1300 (88 x 88) | + | -- | size 1400 (96 x 96) | + | -- | size 1500 (104 x 104) | + + ## Token Diff + + _Tokens added (24):_ + + - `avatar-border-color` + - `avatar-border-width` + - `avatar-group-size-100` + - `avatar-group-size-200` + - `avatar-group-size-300` + - `avatar-group-size-400` + - `avatar-group-size-50` + - `avatar-group-size-500` + - `avatar-group-size-75` + - `avatar-size-1000` + - `avatar-size-1100` + - `avatar-size-1200` + - `avatar-size-1300` + - `avatar-size-1400` + - `avatar-size-1500` + - `avatar-size-800` + - `avatar-size-900` + - `avatar-to-avatar-100` + - `avatar-to-avatar-200` + - `avatar-to-avatar-300` + - `avatar-to-avatar-400` + - `avatar-to-avatar-50` + - `avatar-to-avatar-500` + - `avatar-to-avatar-75` + + _Token values updated (8):_ + + - `avatar-size-100` + - `avatar-size-200` + - `avatar-size-300` + - `avatar-size-400` + - `avatar-size-500` + - `avatar-size-600` + - `avatar-size-700` + - `avatar-size-75` + ## 13.0.0-beta.43 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 4fb90209..d2997e03 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.43", + "version": "13.0.0-beta.44", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 18456794..6c657b81 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.15 + +### Patch Changes + +- Updated dependencies [[`58425e6`](https://github.com/adobe/spectrum-tokens/commit/58425e67b2d4cbd716205d4d502cc823245811fe)]: + - @adobe/spectrum-tokens@13.0.0-beta.44 + ## 0.0.2-beta.14 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index e0e07b61..47cd0e8d 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.14", + "version": "0.0.2-beta.15", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 91e920974dc79e1c54dfb18a087351e790388417 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Wed, 7 Aug 2024 22:01:29 +0000 Subject: [PATCH 224/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 27 ++++++++++++++++++++++- packages/tokens/src/typography.json | 6 ++--- 2 files changed, 29 insertions(+), 4 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index e18ffa4d..94392f36 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8849,5 +8849,30 @@ "uuid": "c980c4f4-f2c5-4963-873e-de275f3353d1" } } + }, + "code-cjk-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{code-size-xl}", + "uuid": "a2e258a0-21f6-44d7-9bfe-0052620e5ac2" + }, + "code-cjk-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{code-size-l}", + "uuid": "15e8593b-1b86-40e0-ae88-fcc587e24373" + }, + "code-cjk-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{code-size-m}", + "uuid": "69436fba-18a7-4a28-b6c5-683a8838917c" + }, + "code-cjk-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{code-size-s}", + "uuid": "80c3d9ab-39d1-4329-a88f-bb84c3afd17f" + }, + "code-cjk-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{code-size-xs}", + "uuid": "6b577e2a-09c0-42bb-8b94-42034df63036" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index b85ed16b..b8867455 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -1537,7 +1537,7 @@ "code-cjk-strong-font-weight": { "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{bold-font-weight}", "uuid": "ed73f5fc-5b7a-4414-8f1c-325e7944a9e1" }, "code-cjk-strong-font-style": { @@ -1585,7 +1585,7 @@ "code-cjk-strong-emphasized-font-weight": { "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{bold-font-weight}", "uuid": "8ed5c5e0-ff72-4937-98fd-fd09f1fab288" }, "code-cjk-strong-emphasized-font-style": { @@ -1642,4 +1642,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} +} \ No newline at end of file From 4bb7191bff21fba3be7a138f6cb8ee52f50bf58d Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 7 Aug 2024 16:13:54 -0600 Subject: [PATCH 225/295] fix: added missing component data --- packages/tokens/src/layout-component.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 94392f36..3c7da439 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8851,28 +8851,33 @@ } }, "code-cjk-size-xl": { + "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{code-size-xl}", "uuid": "a2e258a0-21f6-44d7-9bfe-0052620e5ac2" }, "code-cjk-size-l": { + "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{code-size-l}", "uuid": "15e8593b-1b86-40e0-ae88-fcc587e24373" }, "code-cjk-size-m": { + "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{code-size-m}", "uuid": "69436fba-18a7-4a28-b6c5-683a8838917c" }, "code-cjk-size-s": { + "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{code-size-s}", "uuid": "80c3d9ab-39d1-4329-a88f-bb84c3afd17f" }, "code-cjk-size-xs": { + "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{code-size-xs}", "uuid": "6b577e2a-09c0-42bb-8b94-42034df63036" } -} \ No newline at end of file +} From cc9c3048893058c3f01d6f1ce4688d8ab3716397 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 7 Aug 2024 16:21:44 -0600 Subject: [PATCH 226/295] chore: added changeset --- .changeset/metal-colts-scream.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .changeset/metal-colts-scream.md diff --git a/.changeset/metal-colts-scream.md b/.changeset/metal-colts-scream.md new file mode 100644 index 00000000..5a1d1c96 --- /dev/null +++ b/.changeset/metal-colts-scream.md @@ -0,0 +1,24 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated code tokens for S2 + +## Design Motivation + +These code token updates include some fixes to CJK font-weights to match the Latin font-weights when possible. We added CJK size tokens for consistency with other typography style tokens. Note that the new CJK size tokens currently point to the default code font-size tokens since Source Code Pro handles Latin and CJK sizing comparably. + +## Token Diff + +_Tokens added (5):_ + +- `code-cjk-size-l` +- `code-cjk-size-m` +- `code-cjk-size-s` +- `code-cjk-size-xl` +- `code-cjk-size-xs` + +_Token values updated (2):_ + +- `code-cjk-strong-emphasized-font-weight` +- `code-cjk-strong-font-weight` From 38d06a79a7e19fadf7cb93a710be012383d7b427 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 7 Aug 2024 22:25:43 +0000 Subject: [PATCH 227/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 25 +++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 35 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index eda8b643..ce270fbe 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -38,6 +38,7 @@ "kind-geese-hope", "lazy-bears-remember", "lemon-dragons-raise", + "metal-colts-scream", "neat-balloons-rhyme", "olive-schools-warn", "popular-socks-clean", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 95c61481..c5a2550e 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,30 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.45 + +### Minor Changes + +- [#390](https://github.com/adobe/spectrum-tokens/pull/390) [`cc9c304`](https://github.com/adobe/spectrum-tokens/commit/cc9c3048893058c3f01d6f1ce4688d8ab3716397) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated code tokens for S2 + + ## Design Motivation + + These code token updates include some fixes to CJK font-weights to match the Latin font-weights when possible. We added CJK size tokens for consistency with other typography style tokens. Note that the new CJK size tokens currently point to the default code font-size tokens since Source Code Pro handles Latin and CJK sizing comparably. + + ## Token Diff + + _Tokens added (5):_ + + - `code-cjk-size-l` + - `code-cjk-size-m` + - `code-cjk-size-s` + - `code-cjk-size-xl` + - `code-cjk-size-xs` + + _Token values updated (2):_ + + - `code-cjk-strong-emphasized-font-weight` + - `code-cjk-strong-font-weight` + ## 13.0.0-beta.44 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index d2997e03..514dfaea 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.44", + "version": "13.0.0-beta.45", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 6c657b81..0cf26bea 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.16 + +### Patch Changes + +- Updated dependencies [[`cc9c304`](https://github.com/adobe/spectrum-tokens/commit/cc9c3048893058c3f01d6f1ce4688d8ab3716397)]: + - @adobe/spectrum-tokens@13.0.0-beta.45 + ## 0.0.2-beta.15 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 47cd0e8d..d5ade98e 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.15", + "version": "0.0.2-beta.16", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From c2d5a9f1583e7cb74abf187f53a3f903e7f6b076 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Wed, 7 Aug 2024 16:35:24 -0600 Subject: [PATCH 228/295] fix(tokens): changelog fix --- packages/tokens/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index c5a2550e..d06bcab5 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -4,7 +4,7 @@ ### Minor Changes -- [#390](https://github.com/adobe/spectrum-tokens/pull/390) [`cc9c304`](https://github.com/adobe/spectrum-tokens/commit/cc9c3048893058c3f01d6f1ce4688d8ab3716397) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated code tokens for S2 +- [#390](https://github.com/adobe/spectrum-tokens/pull/390) [`cc9c304`](https://github.com/adobe/spectrum-tokens/commit/cc9c3048893058c3f01d6f1ce4688d8ab3716397) Thanks [@lynnhao](https://github.com/lynnhao)! - Updated code tokens for S2 ## Design Motivation From 36166a96fb6db495797a6c969e568dec100b66ca Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:55:38 +0000 Subject: [PATCH 229/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 22 +++++++++- packages/tokens/src/layout-component.json | 52 ++++++++++++++++++++++- 2 files changed, 72 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index b08b7d57..1271f7f4 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -417,5 +417,25 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-25}", "uuid": "bae79ea7-2b3e-4d43-af42-7deab67acc7c" + }, + "standard-panel-gripper-color-drag": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "69e2d0b3-6807-4e46-9f8a-72bf49439f36" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "e0533561-893d-4947-a0bb-d29c0bb42a2b" + } + } + }, + "standard-panel-gripper-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "71840c7b-acdd-45b9-a228-5091591f5405" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 3c7da439..ddf231cb 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8879,5 +8879,55 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{code-size-xs}", "uuid": "6b577e2a-09c0-42bb-8b94-42034df63036" + }, + "standard-panel-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "260px", + "uuid": "41cd9d92-4d69-4aaa-9c95-e980aa5eb992" + }, + "standard-panel-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "200px", + "uuid": "37ab7428-8175-409f-8e74-55e51a962139" + }, + "standard-panel-maximum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "400px", + "uuid": "11400ef3-c995-41bc-8a9d-eb389d95f360" + }, + "standard-panel-top-to-close-button-compact": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "66f385cd-b60b-42dd-bfdc-aba2db6e35a2" + }, + "standard-panel-top-to-close-button-regular": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "968a056e-4397-4a71-91f1-a0f1ebb6f751" + }, + "standard-panel-top-to-close-button-spacious": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "17px", + "uuid": "96572147-20a9-4089-9904-0a0efa42a5af" + }, + "standard-panel-edge-to-close-button-compact": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "6364d657-804c-4753-832d-09bfdf5ad36a" + }, + "standard-panel-edge-to-close-button-regular": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "f2c9847f-2c3f-4e2e-94ed-59b6cc58f34a" + }, + "standard-panel-edge-to-close-button-spacious": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "b9c04337-a6f5-42db-9bf9-a761c0d9f876" + }, + "standard-panel-title-font-size": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{title-size-s}", + "uuid": "ce8278ea-da1b-4a42-bf7d-4018c9e9d18e" } -} +} \ No newline at end of file From e8b731c870b15ae5487dc6cb9cc1ef3a2c706bad Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 12 Aug 2024 15:59:21 -0600 Subject: [PATCH 230/295] fix: added missing component data --- packages/tokens/src/color-component.json | 4 +++- packages/tokens/src/layout-component.json | 12 +++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 1271f7f4..38431863 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -419,6 +419,7 @@ "uuid": "bae79ea7-2b3e-4d43-af42-7deab67acc7c" }, "standard-panel-gripper-color-drag": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -434,8 +435,9 @@ } }, "standard-panel-gripper-color": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "71840c7b-acdd-45b9-a228-5091591f5405" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index ddf231cb..0f44e432 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -8881,53 +8881,63 @@ "uuid": "6b577e2a-09c0-42bb-8b94-42034df63036" }, "standard-panel-width": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "260px", "uuid": "41cd9d92-4d69-4aaa-9c95-e980aa5eb992" }, "standard-panel-minimum-width": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "200px", "uuid": "37ab7428-8175-409f-8e74-55e51a962139" }, "standard-panel-maximum-width": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "400px", "uuid": "11400ef3-c995-41bc-8a9d-eb389d95f360" }, "standard-panel-top-to-close-button-compact": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", "uuid": "66f385cd-b60b-42dd-bfdc-aba2db6e35a2" }, "standard-panel-top-to-close-button-regular": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", "uuid": "968a056e-4397-4a71-91f1-a0f1ebb6f751" }, "standard-panel-top-to-close-button-spacious": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", "uuid": "96572147-20a9-4089-9904-0a0efa42a5af" }, "standard-panel-edge-to-close-button-compact": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "6364d657-804c-4753-832d-09bfdf5ad36a" }, "standard-panel-edge-to-close-button-regular": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", "uuid": "f2c9847f-2c3f-4e2e-94ed-59b6cc58f34a" }, "standard-panel-edge-to-close-button-spacious": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", "uuid": "b9c04337-a6f5-42db-9bf9-a761c0d9f876" }, "standard-panel-title-font-size": { + "component": "standard-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{title-size-s}", "uuid": "ce8278ea-da1b-4a42-bf7d-4018c9e9d18e" } -} \ No newline at end of file +} From 6ac8ac3c9c0678cb5cdca1930fb8a7e02e0a6178 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 12 Aug 2024 16:17:07 -0600 Subject: [PATCH 231/295] chore: adding tdiff to beta branch --- packages/tokens/package.json | 1 + pnpm-lock.yaml | 554 +++++++ tools/diff-generator/CHANGELOG.md | 13 + tools/diff-generator/README.md | 87 + tools/diff-generator/moon.yml | 30 + tools/diff-generator/package-lock.json | 1475 +++++++++++++++++ tools/diff-generator/package.json | 39 + .../src/lib/added-token-detection.js | 39 + tools/diff-generator/src/lib/cli.js | 468 ++++++ .../src/lib/deleted-token-detection.js | 40 + .../src/lib/deprecated-token-detection.js | 44 + tools/diff-generator/src/lib/file-import.js | 56 + tools/diff-generator/src/lib/index.js | 83 + .../src/lib/renamed-token-detection.js | 35 + .../src/lib/updated-token-detection.js | 230 +++ tools/diff-generator/test/addedToken.test.js | 247 +++ tools/diff-generator/test/cli.test.js | 254 +++ .../diff-generator/test/deletedToken.test.js | 87 + .../test/deprecatedToken.test.js | 143 ++ tools/diff-generator/test/fileImport.test.js | 180 ++ .../diff-generator/test/renamedToken.test.js | 123 ++ .../test/snapshots/cli.test.js.md | 341 ++++ .../test/snapshots/cli.test.js.snap | Bin 0 -> 1387 bytes .../test/snapshots/file-import.test.js.md | 53 + .../test/snapshots/file-import.test.js.snap | Bin 0 -> 492 bytes .../test/snapshots/fileImport.test.js.md | 438 +++++ .../test/snapshots/fileImport.test.js.snap | Bin 0 -> 1343 bytes .../expected-added-property.txt | 27 + .../test-cli-outputs/expected-all-tokens.txt | 90 + .../expected-branch-release-compare.txt | 119 ++ .../expected-branches-added.txt | 19 + .../expected-branches-changes.txt | 122 ++ .../expected-branches-deleted.txt | 15 + .../expected-deleted-property-token.txt | 18 + .../expected-deleted-property.txt | 27 + .../test-cli-outputs/expected-main-branch.txt | 8 + .../expected-non-schema-property.txt | 18 + .../expected-release-branch-compare.txt | 120 ++ ...ected-renamed-added-deleted-deprecated.txt | 43 + .../expected-renamed-added-deleted.txt | 25 + .../expected-renamed-property-token.txt | 48 + .../added-deleted-set-token-property.json | 28 + .../test-schemas/added-deprecated-token.json | 43 + .../test-schemas/added-inner-value-token.json | 24 + .../added-non-schema-property-token.json | 31 + .../added-property-set-token.json | 33 + .../test-schemas/added-renamed-tokens.json | 273 +++ .../test/test-schemas/added-set-token.json | 45 + .../added-set-tokens-out-of-order.json | 87 + .../basic-multiple-updated-token.json | 8 + .../test-schemas/basic-original-token.json | 8 + .../test-schemas/basic-renamed-set-token.json | 28 + .../test-schemas/basic-renamed-token.json | 8 + .../basic-set-token-property.json | 28 + .../test/test-schemas/basic-set-token.json | 28 + .../test-schemas/basic-updated-set-token.json | 28 + .../test-schemas/basic-updated-token.json | 8 + .../test/test-schemas/deleted-set-token.json | 36 + .../test/test-schemas/deleted-set-tokens.json | 19 + .../test/test-schemas/deprecated-token.json | 10 + .../test-schemas/entire-schema-renamed.json | 261 +++ .../test/test-schemas/entire-schema.json | 261 +++ .../test-schemas/inner-key-added-token.json | 23 + .../test/test-schemas/inner-key-tokens.json | 18 + .../test/test-schemas/new-token.json | 14 + ...named-added-deleted-deprecated-tokens.json | 251 +++ ...ed-deprecated-updated-reverted-tokens.json | 249 +++ ...ded-deleted-deprecated-updated-tokens.json | 251 +++ ...amed-added-deleted-property-set-token.json | 28 + .../renamed-added-deleted-set-tokens.json | 63 + .../renamed-added-deleted-tokens.json | 247 +++ .../test-schemas/several-added-tokens.json | 40 + .../several-deprecated-tokens.json | 29 + .../test-schemas/several-original-tokens.json | 20 + .../several-renamed-deprecated-tokens.json | 29 + .../several-renamed-set-tokens.json | 53 + .../test-schemas/several-renamed-tokens.json | 20 + .../several-renamed-updated-set-tokens.json | 53 + .../test/test-schemas/several-set-tokens.json | 53 + .../several-updated-set-tokens.json | 53 + tools/diff-generator/test/tokenDiff.test.js | 564 +++++++ .../diff-generator/test/updatedToken.test.js | 777 +++++++++ 82 files changed, 9889 insertions(+) create mode 100644 tools/diff-generator/CHANGELOG.md create mode 100644 tools/diff-generator/README.md create mode 100644 tools/diff-generator/moon.yml create mode 100644 tools/diff-generator/package-lock.json create mode 100644 tools/diff-generator/package.json create mode 100644 tools/diff-generator/src/lib/added-token-detection.js create mode 100755 tools/diff-generator/src/lib/cli.js create mode 100644 tools/diff-generator/src/lib/deleted-token-detection.js create mode 100644 tools/diff-generator/src/lib/deprecated-token-detection.js create mode 100644 tools/diff-generator/src/lib/file-import.js create mode 100644 tools/diff-generator/src/lib/index.js create mode 100644 tools/diff-generator/src/lib/renamed-token-detection.js create mode 100644 tools/diff-generator/src/lib/updated-token-detection.js create mode 100644 tools/diff-generator/test/addedToken.test.js create mode 100644 tools/diff-generator/test/cli.test.js create mode 100644 tools/diff-generator/test/deletedToken.test.js create mode 100644 tools/diff-generator/test/deprecatedToken.test.js create mode 100644 tools/diff-generator/test/fileImport.test.js create mode 100644 tools/diff-generator/test/renamedToken.test.js create mode 100644 tools/diff-generator/test/snapshots/cli.test.js.md create mode 100644 tools/diff-generator/test/snapshots/cli.test.js.snap create mode 100644 tools/diff-generator/test/snapshots/file-import.test.js.md create mode 100644 tools/diff-generator/test/snapshots/file-import.test.js.snap create mode 100644 tools/diff-generator/test/snapshots/fileImport.test.js.md create mode 100644 tools/diff-generator/test/snapshots/fileImport.test.js.snap create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-added-property.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-all-tokens.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-branch-release-compare.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-branches-added.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-branches-changes.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-branches-deleted.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-deleted-property-token.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-deleted-property.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-main-branch.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-non-schema-property.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-release-branch-compare.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted-deprecated.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted.txt create mode 100644 tools/diff-generator/test/test-cli-outputs/expected-renamed-property-token.txt create mode 100644 tools/diff-generator/test/test-schemas/added-deleted-set-token-property.json create mode 100644 tools/diff-generator/test/test-schemas/added-deprecated-token.json create mode 100644 tools/diff-generator/test/test-schemas/added-inner-value-token.json create mode 100644 tools/diff-generator/test/test-schemas/added-non-schema-property-token.json create mode 100644 tools/diff-generator/test/test-schemas/added-property-set-token.json create mode 100644 tools/diff-generator/test/test-schemas/added-renamed-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/added-set-token.json create mode 100644 tools/diff-generator/test/test-schemas/added-set-tokens-out-of-order.json create mode 100644 tools/diff-generator/test/test-schemas/basic-multiple-updated-token.json create mode 100644 tools/diff-generator/test/test-schemas/basic-original-token.json create mode 100644 tools/diff-generator/test/test-schemas/basic-renamed-set-token.json create mode 100644 tools/diff-generator/test/test-schemas/basic-renamed-token.json create mode 100644 tools/diff-generator/test/test-schemas/basic-set-token-property.json create mode 100644 tools/diff-generator/test/test-schemas/basic-set-token.json create mode 100644 tools/diff-generator/test/test-schemas/basic-updated-set-token.json create mode 100644 tools/diff-generator/test/test-schemas/basic-updated-token.json create mode 100644 tools/diff-generator/test/test-schemas/deleted-set-token.json create mode 100644 tools/diff-generator/test/test-schemas/deleted-set-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/deprecated-token.json create mode 100644 tools/diff-generator/test/test-schemas/entire-schema-renamed.json create mode 100644 tools/diff-generator/test/test-schemas/entire-schema.json create mode 100644 tools/diff-generator/test/test-schemas/inner-key-added-token.json create mode 100644 tools/diff-generator/test/test-schemas/inner-key-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/new-token.json create mode 100644 tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-reverted-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/renamed-added-deleted-property-set-token.json create mode 100644 tools/diff-generator/test/test-schemas/renamed-added-deleted-set-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/renamed-added-deleted-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-added-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-deprecated-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-original-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-renamed-deprecated-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-renamed-set-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-renamed-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-renamed-updated-set-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-set-tokens.json create mode 100644 tools/diff-generator/test/test-schemas/several-updated-set-tokens.json create mode 100644 tools/diff-generator/test/tokenDiff.test.js create mode 100644 tools/diff-generator/test/updatedToken.test.js diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 514dfaea..e7b4d1c0 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -23,6 +23,7 @@ }, "homepage": "https://github.com/adobe/spectrum-tokens/tree/main/packages/tokens#readme", "devDependencies": { + "@adobe/token-diff-generator": "workspace:*", "ajv": "^8.12.0", "ajv-formats": "^3.0.1", "deep-object-diff": "^1.1.9", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8881504c..dd32f00f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -144,6 +144,9 @@ importers: packages/tokens: devDependencies: + "@adobe/token-diff-generator": + specifier: workspace:* + version: link:../../tools/diff-generator ajv: specifier: ^8.12.0 version: 8.16.0 @@ -169,6 +172,40 @@ importers: specifier: ^3.0.3 version: 3.0.3 + tools/diff-generator: + dependencies: + chalk: + specifier: ^5.3.0 + version: 5.3.0 + commander: + specifier: ^12.1.0 + version: 12.1.0 + deep-object-diff: + specifier: ^1.1.9 + version: 1.1.9 + emojilib: + specifier: ^3.0.12 + version: 3.0.12 + inquirer: + specifier: ^9.2.23 + version: 9.3.6 + nixt: + specifier: ^0.5.1 + version: 0.5.1 + node-emoji: + specifier: ^2.1.3 + version: 2.1.3 + tar: + specifier: ^7.0.1 + version: 7.0.1 + tmp-promise: + specifier: ^3.0.3 + version: 3.0.3 + devDependencies: + c8: + specifier: ^9.1.0 + version: 9.1.0 + tools/token-csv-generator: dependencies: "@adobe/spectrum-tokens": @@ -221,6 +258,12 @@ packages: } engines: { node: ">=6.9.0" } + "@bcoe/v8-coverage@0.2.3": + resolution: + { + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, + } + "@changesets/apply-release-plan@7.0.3": resolution: { @@ -687,6 +730,13 @@ packages: integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==, } + "@inquirer/figures@1.0.5": + resolution: + { + integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==, + } + engines: { node: ">=18" } + "@internationalized/number@3.5.1": resolution: { @@ -707,6 +757,32 @@ packages: } engines: { node: ">=18.0.0" } + "@istanbuljs/schema@0.1.3": + resolution: + { + integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, + } + engines: { node: ">=8" } + + "@jridgewell/resolve-uri@3.1.2": + resolution: + { + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/sourcemap-codec@1.5.0": + resolution: + { + integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, + } + + "@jridgewell/trace-mapping@0.3.25": + resolution: + { + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, + } + "@lit-labs/observers@2.0.2": resolution: { @@ -1063,6 +1139,13 @@ packages: cpu: [x64] os: [win32] + "@sindresorhus/is@4.6.0": + resolution: + { + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, + } + engines: { node: ">=10" } + "@sindresorhus/merge-streams@2.3.0": resolution: { @@ -1349,6 +1432,12 @@ packages: integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, } + "@types/istanbul-lib-coverage@2.0.6": + resolution: + { + integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==, + } + "@types/node@12.20.55": resolution: { @@ -1448,6 +1537,13 @@ packages: } engines: { node: ">=6" } + ansi-escapes@4.3.2: + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + } + engines: { node: ">=8" } + ansi-escapes@6.2.1: resolution: { @@ -1564,6 +1660,12 @@ packages: } engines: { node: ">=12" } + assertion-error@1.0.2: + resolution: + { + integrity: sha512-wzQs0MF+xNG9ji/rooK2bLg8XVqP+dn/IYX6qgejMtmDNB8JRLL+BoBrd4furQNgPaWhJaQRXyMXGa48lzsGtQ==, + } + async-sema@3.1.1: resolution: { @@ -1589,6 +1691,12 @@ packages: integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, } + base64-js@1.5.1: + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } + better-path-resolve@1.0.0: resolution: { @@ -1602,6 +1710,12 @@ packages: integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, } + bl@4.1.0: + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, + } + blueimp-md5@2.19.0: resolution: { @@ -1627,6 +1741,12 @@ packages: } engines: { node: ">=8" } + buffer@5.7.1: + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, + } + busboy@1.6.0: resolution: { @@ -1634,6 +1754,14 @@ packages: } engines: { node: ">=10.16.0" } + c8@9.1.0: + resolution: + { + integrity: sha512-mBWcT5iqNir1zIkzSPyI3NCR9EZCVI3WUD+AVO17MVWTSFNyUueXE82qTeampNtTr+ilN/5Ua3j24LgbCKjDVg==, + } + engines: { node: ">=14.14.0" } + hasBin: true + callsites@3.1.0: resolution: { @@ -1700,6 +1828,13 @@ packages: integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, } + char-regex@1.0.2: + resolution: + { + integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, + } + engines: { node: ">=10" } + chardet@0.7.0: resolution: { @@ -1746,6 +1881,13 @@ packages: integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==, } + cli-cursor@3.1.0: + resolution: + { + integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, + } + engines: { node: ">=8" } + cli-cursor@4.0.0: resolution: { @@ -1753,6 +1895,13 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + cli-spinners@2.9.2: + resolution: + { + integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==, + } + engines: { node: ">=6" } + cli-truncate@4.0.0: resolution: { @@ -1760,6 +1909,13 @@ packages: } engines: { node: ">=18" } + cli-width@4.1.0: + resolution: + { + integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==, + } + engines: { node: ">= 12" } + client-only@0.0.1: resolution: { @@ -1773,6 +1929,13 @@ packages: } engines: { node: ">=12" } + clone@1.0.4: + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + } + engines: { node: ">=0.8" } + code-excerpt@4.0.0: resolution: { @@ -1905,6 +2068,12 @@ packages: engines: { node: ">=16" } hasBin: true + convert-source-map@2.0.0: + resolution: + { + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, + } + convert-to-spaces@2.0.1: resolution: { @@ -2007,6 +2176,12 @@ packages: } engines: { node: ">=0.10.0" } + defaults@1.0.4: + resolution: + { + integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, + } + delegates@1.0.0: resolution: { @@ -2085,6 +2260,18 @@ packages: integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, } + emojilib@2.4.0: + resolution: + { + integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==, + } + + emojilib@3.0.12: + resolution: + { + integrity: sha512-b52zmWqBwv9juk6lKaTdYxRQSnpsnT58Sj/x6fE8fZWcsNd43gAPXUbtjLKJvVlPS9FFNCN6nB9Vh1xipnCzXw==, + } + enquirer@2.4.1: resolution: { @@ -2448,6 +2635,12 @@ packages: integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, } + html-escaper@2.0.2: + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, + } + https-proxy-agent@5.0.1: resolution: { @@ -2483,6 +2676,12 @@ packages: } engines: { node: ">=0.10.0" } + ieee754@1.2.1: + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } + ignore-by-default@2.1.0: resolution: { @@ -2544,6 +2743,13 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + inquirer@9.3.6: + resolution: + { + integrity: sha512-riK/iQB2ctwkpWYgjjWIRv3MBLt2gzb2Sj0JNQNbyTXgyXsLWcDPJ5WS5ZDTCx7BRFnJsARtYh+58fjP5M2Y0Q==, + } + engines: { node: ">=18" } + irregular-plurals@3.5.0: resolution: { @@ -2592,6 +2798,13 @@ packages: } engines: { node: ">=0.10.0" } + is-interactive@1.0.0: + resolution: + { + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, + } + engines: { node: ">=8" } + is-number@7.0.0: resolution: { @@ -2640,6 +2853,13 @@ packages: } engines: { node: ">=8" } + is-unicode-supported@0.1.0: + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, + } + engines: { node: ">=10" } + is-unicode-supported@2.0.0: resolution: { @@ -2660,6 +2880,27 @@ packages: integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } + istanbul-lib-coverage@3.2.2: + resolution: + { + integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==, + } + engines: { node: ">=8" } + + istanbul-lib-report@3.0.1: + resolution: + { + integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, + } + engines: { node: ">=10" } + + istanbul-reports@3.1.7: + resolution: + { + integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==, + } + engines: { node: ">=8" } + jackspeak@3.4.0: resolution: { @@ -2913,6 +3154,13 @@ packages: integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, } + log-symbols@4.1.0: + resolution: + { + integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, + } + engines: { node: ">=10" } + log-update@6.0.0: resolution: { @@ -2953,6 +3201,13 @@ packages: } engines: { node: ">=8" } + make-dir@4.0.0: + resolution: + { + integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, + } + engines: { node: ">=10" } + matcher@5.0.0: resolution: { @@ -3111,6 +3366,13 @@ packages: integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, } + mute-stream@1.0.0: + resolution: + { + integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + nanoid@3.3.7: resolution: { @@ -3140,12 +3402,25 @@ packages: sass: optional: true + nixt@0.5.1: + resolution: + { + integrity: sha512-FlRpYm9sopR+aN05WSTZUA68nolYbH1MRB8JnQfDquToyo1YJCTJvhKnQzNZV3XLHKcLVURWWtMgAJr5IZ2wUg==, + } + no-case@3.0.4: resolution: { integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, } + node-emoji@2.1.3: + resolution: + { + integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==, + } + engines: { node: ">=18" } + node-fetch@2.7.0: resolution: { @@ -3221,6 +3496,13 @@ packages: } engines: { node: ">=12" } + ora@5.4.1: + resolution: + { + integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, + } + engines: { node: ">=10" } + os-tmpdir@1.0.2: resolution: { @@ -3601,6 +3883,13 @@ packages: } engines: { node: ">=8" } + restore-cursor@3.1.0: + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, + } + engines: { node: ">=8" } + restore-cursor@4.0.0: resolution: { @@ -3645,12 +3934,25 @@ packages: engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true + run-async@3.0.0: + resolution: + { + integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==, + } + engines: { node: ">=0.12.0" } + run-parallel@1.2.0: resolution: { integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, } + rxjs@7.8.1: + resolution: + { + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, + } + safe-buffer@5.2.1: resolution: { @@ -3731,6 +4033,12 @@ packages: } engines: { node: ">=8" } + shell-quote@1.8.1: + resolution: + { + integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==, + } + signal-exit@3.0.7: resolution: { @@ -3744,6 +4052,13 @@ packages: } engines: { node: ">=14" } + skin-tone@2.0.0: + resolution: + { + integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==, + } + engines: { node: ">=8" } + slash@3.0.0: resolution: { @@ -3966,6 +4281,13 @@ packages: } engines: { node: ">=8" } + test-exclude@6.0.0: + resolution: + { + integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, + } + engines: { node: ">=8" } + text-extensions@2.4.0: resolution: { @@ -4038,6 +4360,13 @@ packages: } engines: { node: ">=10" } + type-fest@0.21.3: + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: { node: ">=10" } + typescript@5.5.2: resolution: { @@ -4066,6 +4395,13 @@ packages: integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, } + unicode-emoji-modifier-base@1.0.0: + resolution: + { + integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==, + } + engines: { node: ">=4" } + unicorn-magic@0.1.0: resolution: { @@ -4111,6 +4447,13 @@ packages: integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, } + v8-to-istanbul@9.3.0: + resolution: + { + integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==, + } + engines: { node: ">=10.12.0" } + vite@5.2.9: resolution: { @@ -4142,6 +4485,12 @@ packages: terser: optional: true + wcwidth@1.0.1: + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } + webidl-conversions@3.0.1: resolution: { @@ -4196,6 +4545,13 @@ packages: } engines: { node: ">=8.0.0" } + wrap-ansi@6.2.0: + resolution: + { + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, + } + engines: { node: ">=8" } + wrap-ansi@7.0.0: resolution: { @@ -4292,6 +4648,13 @@ packages: } engines: { node: ">=12.20" } + yoctocolors-cjs@2.1.2: + resolution: + { + integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==, + } + engines: { node: ">=18" } + snapshots: "@action-validator/core@0.6.0": {} @@ -4313,6 +4676,8 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 + "@bcoe/v8-coverage@0.2.3": {} + "@changesets/apply-release-plan@7.0.3": dependencies: "@babel/runtime": 7.24.7 @@ -4675,6 +5040,8 @@ snapshots: "@floating-ui/utils@0.2.1": {} + "@inquirer/figures@1.0.5": {} + "@internationalized/number@3.5.1": dependencies: "@swc/helpers": 0.5.10 @@ -4692,6 +5059,17 @@ snapshots: dependencies: minipass: 7.1.2 + "@istanbuljs/schema@0.1.3": {} + + "@jridgewell/resolve-uri@3.1.2": {} + + "@jridgewell/sourcemap-codec@1.5.0": {} + + "@jridgewell/trace-mapping@0.3.25": + dependencies: + "@jridgewell/resolve-uri": 3.1.2 + "@jridgewell/sourcemap-codec": 1.5.0 + "@lit-labs/observers@2.0.2": dependencies: "@lit/reactive-element": 2.0.4 @@ -4867,6 +5245,8 @@ snapshots: "@rollup/rollup-win32-x64-msvc@4.14.3": optional: true + "@sindresorhus/is@4.6.0": {} + "@sindresorhus/merge-streams@2.3.0": {} "@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0)": @@ -5104,6 +5484,8 @@ snapshots: "@types/estree@1.0.5": {} + "@types/istanbul-lib-coverage@2.0.6": {} + "@types/node@12.20.55": {} "@types/node@20.14.9": @@ -5168,6 +5550,10 @@ snapshots: ansi-colors@4.1.3: {} + ansi-escapes@4.3.2: + dependencies: + type-fest: 0.21.3 + ansi-escapes@6.2.1: {} ansi-regex@5.0.1: {} @@ -5211,6 +5597,8 @@ snapshots: arrify@3.0.0: {} + assertion-error@1.0.2: {} + async-sema@3.1.1: {} ava@6.1.3: @@ -5261,6 +5649,8 @@ snapshots: balanced-match@1.0.2: {} + base64-js@1.5.1: {} + better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 @@ -5269,6 +5659,12 @@ snapshots: dependencies: file-uri-to-path: 1.0.0 + bl@4.1.0: + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + blueimp-md5@2.19.0: {} brace-expansion@1.1.11: @@ -5284,10 +5680,29 @@ snapshots: dependencies: fill-range: 7.1.1 + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + busboy@1.6.0: dependencies: streamsearch: 1.1.0 + c8@9.1.0: + dependencies: + "@bcoe/v8-coverage": 0.2.3 + "@istanbuljs/schema": 0.1.3 + find-up: 5.0.0 + foreground-child: 3.2.1 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-reports: 3.1.7 + test-exclude: 6.0.0 + v8-to-istanbul: 9.3.0 + yargs: 17.7.2 + yargs-parser: 21.1.1 + callsites@3.1.0: {} callsites@4.1.0: {} @@ -5337,6 +5752,8 @@ snapshots: snake-case: 3.0.4 tslib: 2.6.2 + char-regex@1.0.2: {} + chardet@0.7.0: {} chownr@2.0.0: {} @@ -5351,15 +5768,23 @@ snapshots: ci-parallel-vars@1.0.1: {} + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + cli-cursor@4.0.0: dependencies: restore-cursor: 4.0.0 + cli-spinners@2.9.2: {} + cli-truncate@4.0.0: dependencies: slice-ansi: 5.0.0 string-width: 7.1.0 + cli-width@4.1.0: {} + client-only@0.0.1: {} cliui@8.0.1: @@ -5368,6 +5793,8 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + clone@1.0.4: {} + code-excerpt@4.0.0: dependencies: convert-to-spaces: 2.0.1 @@ -5449,6 +5876,8 @@ snapshots: meow: 12.1.1 split2: 4.2.0 + convert-source-map@2.0.0: {} + convert-to-spaces@2.0.1: {} cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2): @@ -5501,6 +5930,10 @@ snapshots: deepmerge@4.3.1: {} + defaults@1.0.4: + dependencies: + clone: 1.0.4 + delegates@1.0.0: {} detect-indent@6.1.0: {} @@ -5532,6 +5965,10 @@ snapshots: emoji-regex@9.2.2: {} + emojilib@2.4.0: {} + + emojilib@3.0.12: {} + enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 @@ -5779,6 +6216,8 @@ snapshots: capital-case: 1.0.4 tslib: 2.6.2 + html-escaper@2.0.2: {} + https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 @@ -5796,6 +6235,8 @@ snapshots: dependencies: safer-buffer: 2.1.2 + ieee754@1.2.1: {} + ignore-by-default@2.1.0: {} ignore@5.3.1: {} @@ -5820,6 +6261,21 @@ snapshots: ini@4.1.1: {} + inquirer@9.3.6: + dependencies: + "@inquirer/figures": 1.0.5 + ansi-escapes: 4.3.2 + cli-width: 4.1.0 + external-editor: 3.1.0 + mute-stream: 1.0.0 + ora: 5.4.1 + run-async: 3.0.0 + rxjs: 7.8.1 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + yoctocolors-cjs: 2.1.2 + irregular-plurals@3.5.0: {} is-arrayish@0.2.1: {} @@ -5838,6 +6294,8 @@ snapshots: dependencies: is-extglob: 2.1.1 + is-interactive@1.0.0: {} + is-number@7.0.0: {} is-obj@2.0.0: {} @@ -5856,12 +6314,27 @@ snapshots: dependencies: text-extensions: 2.4.0 + is-unicode-supported@0.1.0: {} + is-unicode-supported@2.0.0: {} is-windows@1.0.2: {} isexe@2.0.0: {} + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-report@3.0.1: + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + jackspeak@3.4.0: dependencies: "@isaacs/cliui": 8.0.2 @@ -6006,6 +6479,11 @@ snapshots: lodash@4.17.21: {} + log-symbols@4.1.0: + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + log-update@6.0.0: dependencies: ansi-escapes: 6.2.1 @@ -6033,6 +6511,10 @@ snapshots: dependencies: semver: 6.3.1 + make-dir@4.0.0: + dependencies: + semver: 7.6.2 + matcher@5.0.0: dependencies: escape-string-regexp: 5.0.0 @@ -6100,6 +6582,8 @@ snapshots: ms@2.1.3: {} + mute-stream@1.0.0: {} + nanoid@3.3.7: {} next@14.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): @@ -6127,11 +6611,24 @@ snapshots: - "@babel/core" - babel-plugin-macros + nixt@0.5.1: + dependencies: + assertion-error: 1.0.2 + clone: 1.0.4 + shell-quote: 1.8.1 + no-case@3.0.4: dependencies: lower-case: 2.0.2 tslib: 2.6.2 + node-emoji@2.1.3: + dependencies: + "@sindresorhus/is": 4.6.0 + char-regex: 1.0.2 + emojilib: 2.4.0 + skin-tone: 2.0.0 + node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 @@ -6169,6 +6666,18 @@ snapshots: dependencies: mimic-fn: 4.0.0 + ora@5.4.1: + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.2 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + os-tmpdir@1.0.2: {} outdent@0.5.0: {} @@ -6351,6 +6860,11 @@ snapshots: resolve-from@5.0.0: {} + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + restore-cursor@4.0.0: dependencies: onetime: 5.1.2 @@ -6390,10 +6904,16 @@ snapshots: "@rollup/rollup-win32-x64-msvc": 4.14.3 fsevents: 2.3.3 + run-async@3.0.0: {} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 + rxjs@7.8.1: + dependencies: + tslib: 2.6.2 + safe-buffer@5.2.1: {} safer-buffer@2.1.2: {} @@ -6430,10 +6950,16 @@ snapshots: shebang-regex@3.0.0: {} + shell-quote@1.8.1: {} + signal-exit@3.0.7: {} signal-exit@4.1.0: {} + skin-tone@2.0.0: + dependencies: + unicode-emoji-modifier-base: 1.0.0 + slash@3.0.0: {} slash@5.1.0: {} @@ -6571,6 +7097,12 @@ snapshots: term-size@2.2.1: {} + test-exclude@6.0.0: + dependencies: + "@istanbuljs/schema": 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + text-extensions@2.4.0: {} through@2.3.8: {} @@ -6599,6 +7131,8 @@ snapshots: type-fest@0.13.1: {} + type-fest@0.21.3: {} + typescript@5.5.2: {} typical@4.0.0: {} @@ -6607,6 +7141,8 @@ snapshots: undici-types@5.26.5: {} + unicode-emoji-modifier-base@1.0.0: {} + unicorn-magic@0.1.0: {} universalify@0.1.2: {} @@ -6627,6 +7163,12 @@ snapshots: util-deprecate@1.0.2: {} + v8-to-istanbul@9.3.0: + dependencies: + "@jridgewell/trace-mapping": 0.3.25 + "@types/istanbul-lib-coverage": 2.0.6 + convert-source-map: 2.0.0 + vite@5.2.9(@types/node@20.14.9): dependencies: esbuild: 0.20.2 @@ -6636,6 +7178,10 @@ snapshots: "@types/node": 20.14.9 fsevents: 2.3.3 + wcwidth@1.0.1: + dependencies: + defaults: 1.0.4 + webidl-conversions@3.0.1: {} well-known-symbols@2.0.0: {} @@ -6667,6 +7213,12 @@ snapshots: reduce-flatten: 2.0.0 typical: 5.2.0 + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 @@ -6717,3 +7269,5 @@ snapshots: yocto-queue@0.1.0: {} yocto-queue@1.0.0: {} + + yoctocolors-cjs@2.1.2: {} diff --git a/tools/diff-generator/CHANGELOG.md b/tools/diff-generator/CHANGELOG.md new file mode 100644 index 00000000..1fed24bb --- /dev/null +++ b/tools/diff-generator/CHANGELOG.md @@ -0,0 +1,13 @@ +# @adobe/token-diff-generator + +## 1.0.1 + +### Patch Changes + +- [#394](https://github.com/adobe/spectrum-tokens/pull/394) [`71b38bd`](https://github.com/adobe/spectrum-tokens/commit/71b38bd99262e707ba6333a4d14d1e90ab95d502) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed author + +## 1.0.0 + +### Major Changes + +- [#344](https://github.com/adobe/spectrum-tokens/pull/344) [`8a021e0`](https://github.com/adobe/spectrum-tokens/commit/8a021e0593d5d1bc190bbe6472747135f735791c) Thanks [@shirlsli](https://github.com/shirlsli)! - Initial release of the token diff generator library and cli diff --git a/tools/diff-generator/README.md b/tools/diff-generator/README.md new file mode 100644 index 00000000..b406c3ba --- /dev/null +++ b/tools/diff-generator/README.md @@ -0,0 +1,87 @@ +# Token Diff Generator Library and CLI + +###### WARNING: Will either be inaccurate or will throw an error if used for releases or branches that use tokens from before @adobe/spectrum-tokens@12.26.0! + +The token diff generator library and cli is a npm package containing the CLI and standalone Javascript library that you can use to generate reports detailing the changes made between two different Spectrum token schema. Both the CLI and the standalone Javascript library are located in the Spectrum Tokens monorepo. + +## Installation + +Installing the package is done preferably with pnpm. + +``` +pnpm i @adobe/token-diff-generator +``` + +## Imports + +Import the token diff generator as a module per ES6 standards. + +``` +import tokenDiff from “@adobe/token-diff-generator”; +``` + +## Token diff generator library + +The token diff generator library holds the functions used to generate diffs between two compilations of design tokens. It uses the deep-object-diff open-source library to extract a JSON object containing the changes, and then runs that JSON object through various functions to tailor the result specifically for design tokens. + +An example of tailoring involves detecting when tokens are renamed. The deep-object-diff library is unable to tell whether or not a token has been renamed due to it being designed for general JSON objects. Instead, it will mark the new name as a new token being added to the schema and the old name as a deleted token. + +This is where the token diff generator comes in. It goes through the changes detected by deep-object-diff and checks if a token is renamed via its uuid. Since the token diff generator relies on all tokens having their own uuid, the library—including the CLI and web version—will not work for versions of spectrum-tokens before the @adobe/spectrum-tokens@12.26.0 release. + +### Usage examples + +The most basic usage case is calling tokenDiff with two JSON objects, one for the original token(s) and the other for the updated token(s). + +``` +import tokenDiff from “@adobe/token-diff-generator”; + +const report = tokenDiff(originalSchema, updatedSchema); +``` + +If you are interested in comparing tokens locally between different versions or branches, you can use the following code snippet. + +``` +import tokenDiff from “@adobe/token-diff-generator”; +import fileImport from “@adobe/token-diff-generator”; + +const [originalSchema, updatedSchema] = await Promise.all([ + fileImport(tokenNames, originalVersion, originalBranch), + fileImport(tokenNames, updatedVersion, updatedBranch), + ]); + +const report = tokenDiff(originalSchema, updatedSchema); +``` + +Both of these examples output a JSON object containing the changes made between the two schema. + +## Token diff cli + +The token diff cli is a command line interface tool used to generate reports in the terminal with data from the token diff generator. It is included in the same package as the standalone Javascript library and uses the commander open-source library. + +### Commands + +There currently is only one command to run in the CLI. It generates a diff report for two inputted schema. + +``` +tdiff report +``` + +### Options + +| Shorthand | Name | Argument(s) | Description | +| --------- | --------------------- | -------------- | ------------------------------------------------------ | +| `-y` | `-y` | `null` | answers yes to removing deprecated status of token(s) | +| `-otv` | `--old-token-version` | `` | npm package version/github tag to pull old tokens from | +| `-ntv` | `--new-token-version` | `` | npm package version/github tag to pull new tokens from | +| `-otb` | `--old-token-branch` | `` | branch to fetch old token data from | +| `-ntb` | `--new-token-branch` | `` | branch to fetch new token data from | +| `-t` | `--test` | `` | indicates test mode and runs only on tokens passed in | +| `-tn` | `--token-names` | `` | indicates specific tokens to compare | + +### Usage examples + +This is how you can compare between branches and/or versions. + +``` +tdiff report -otv shirlsli/diff-generator-cli-tests -ntb shirlsli/file-import-tests +``` diff --git a/tools/diff-generator/moon.yml b/tools/diff-generator/moon.yml new file mode 100644 index 00000000..19bff900 --- /dev/null +++ b/tools/diff-generator/moon.yml @@ -0,0 +1,30 @@ +# 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: + diff: + command: + - node + - src/lib/index.js + platform: node + test: + command: + - pnpm + - ava + platform: node + test-watch: + command: + - ava + - --watch + - c8 + - ava + local: true + platform: node diff --git a/tools/diff-generator/package-lock.json b/tools/diff-generator/package-lock.json new file mode 100644 index 00000000..72da01f1 --- /dev/null +++ b/tools/diff-generator/package-lock.json @@ -0,0 +1,1475 @@ +{ + "name": "diff-generator", + "version": "0.0.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "diff-generator", + "version": "0.0.1", + "license": "Apache-2.0", + "dependencies": { + "chalk-cli": "^5.0.1", + "commander": "^12.1.0", + "deep-object-diff": "^1.1.9", + "node-emoji": "^2.1.3" + }, + "devDependencies": { + "c8": "^9.1.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", + "license": "MIT" + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "license": "MIT" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/c8": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/c8/-/c8-9.1.0.tgz", + "integrity": "sha512-mBWcT5iqNir1zIkzSPyI3NCR9EZCVI3WUD+AVO17MVWTSFNyUueXE82qTeampNtTr+ilN/5Ua3j24LgbCKjDVg==", + "dev": true, + "license": "ISC", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.3", + "find-up": "^5.0.0", + "foreground-child": "^3.1.1", + "istanbul-lib-coverage": "^3.2.0", + "istanbul-lib-report": "^3.0.1", + "istanbul-reports": "^3.1.6", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^9.0.0", + "yargs": "^17.7.2", + "yargs-parser": "^21.1.1" + }, + "bin": { + "c8": "bin/c8.js" + }, + "engines": { + "node": ">=14.14.0" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-keys": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-7.0.2.tgz", + "integrity": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==", + "license": "MIT", + "dependencies": { + "camelcase": "^6.3.0", + "map-obj": "^4.1.0", + "quick-lru": "^5.1.1", + "type-fest": "^1.2.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk-cli": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/chalk-cli/-/chalk-cli-5.0.1.tgz", + "integrity": "sha512-TfXu7URcInm2gX43FOlCPsQxg637R/1o7lDMWZFVFozBd19YxfJ90HZfoy4WuC1MksqVOzqCRz3SX6iFQyI0ZQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "chalk": "^4.1.2", + "dot-prop": "^6.0.1", + "get-stdin": "^9.0.0", + "meow": "^10.1.1" + }, + "bin": { + "chalk": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk-cli?sponsor=1" + } + }, + "node_modules/chalk-cli/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/decamelize": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz", + "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "license": "MIT", + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys/node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/deep-object-diff": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.9.tgz", + "integrity": "sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==", + "license": "MIT" + }, + "node_modules/dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", + "license": "MIT" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-stdin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow": { + "version": "10.1.5", + "resolved": "https://registry.npmjs.org/meow/-/meow-10.1.5.tgz", + "integrity": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==", + "license": "MIT", + "dependencies": { + "@types/minimist": "^1.2.2", + "camelcase-keys": "^7.0.0", + "decamelize": "^5.0.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.2", + "read-pkg-up": "^8.0.0", + "redent": "^4.0.0", + "trim-newlines": "^4.0.2", + "type-fest": "^1.2.2", + "yargs-parser": "^20.2.9" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "license": "MIT", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/node-emoji": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", + "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^4.6.0", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "license": "ISC" + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-6.0.0.tgz", + "integrity": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==", + "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^3.0.2", + "parse-json": "^5.2.0", + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-8.0.0.tgz", + "integrity": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==", + "license": "MIT", + "dependencies": { + "find-up": "^5.0.0", + "read-pkg": "^6.0.0", + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/redent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-4.0.0.tgz", + "integrity": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==", + "license": "MIT", + "dependencies": { + "indent-string": "^5.0.0", + "strip-indent": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", + "license": "MIT", + "dependencies": { + "unicode-emoji-modifier-base": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "license": "CC-BY-3.0" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", + "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", + "license": "CC0-1.0" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/trim-newlines": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", + "integrity": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/tools/diff-generator/package.json b/tools/diff-generator/package.json new file mode 100644 index 00000000..303fda16 --- /dev/null +++ b/tools/diff-generator/package.json @@ -0,0 +1,39 @@ +{ + "name": "@adobe/token-diff-generator", + "version": "1.0.1", + "description": "Creates diffs for tokens", + "type": "module", + "scripts": { + "test": "c8 ava" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/adobe/spectrum-tokens.git" + }, + "author": "Shirley Li https://github.com/shirlsli", + "contributors": [ + "Garth Braithwaite (http://garthdb.com/)" + ], + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/adobe/spectrum-tokens/issues" + }, + "homepage": "https://github.com/adobe/spectrum-tokens#readme", + "dependencies": { + "chalk": "^5.3.0", + "commander": "^12.1.0", + "deep-object-diff": "^1.1.9", + "emojilib": "^3.0.12", + "inquirer": "^9.2.23", + "nixt": "^0.5.1", + "node-emoji": "^2.1.3", + "tar": "^7.0.1", + "tmp-promise": "^3.0.3" + }, + "devDependencies": { + "c8": "^9.1.0" + }, + "bin": { + "tdiff": "./src/lib/cli.js" + } +} diff --git a/tools/diff-generator/src/lib/added-token-detection.js b/tools/diff-generator/src/lib/added-token-detection.js new file mode 100644 index 00000000..b454c53d --- /dev/null +++ b/tools/diff-generator/src/lib/added-token-detection.js @@ -0,0 +1,39 @@ +/* +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. +*/ + +/** + * Check if the added token's uuid exists in renamed and added + * @param {object} renamed - the token data that were renamed + * @param {object} deprecatedTokens - the newly deprecated tokens + * @param {object} changes - the changed token data + * @returns {object} addedTokens - a JSON object containing the added tokens + */ + +export default function detectNewTokens( + renamed, + deprecatedTokens, + added, + original, +) { + const addedTokens = { ...added }; + Object.keys(added).forEach((token) => { + if ( + deprecatedTokens.deprecated[token] !== undefined || + renamed[token] !== undefined || + original[token] !== undefined + ) { + delete addedTokens[token]; + } + }); + + return addedTokens; +} diff --git a/tools/diff-generator/src/lib/cli.js b/tools/diff-generator/src/lib/cli.js new file mode 100755 index 00000000..4d7ddd1e --- /dev/null +++ b/tools/diff-generator/src/lib/cli.js @@ -0,0 +1,468 @@ +#! /usr/bin/env node + +/* +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. +*/ + +import tokenDiff from "./index.js"; +import chalk from "chalk"; +import inquirer from "inquirer"; +import fileImport from "./file-import.js"; +import * as emoji from "node-emoji"; + +import { Command } from "commander"; + +const yellow = chalk.hex("F3EE7E"); +const red = chalk.hex("F37E7E"); +const green = chalk.hex("7EF383"); +const white = chalk.white; + +const program = new Command(); + +program + .name("tdiff") + .description("CLI to a Spectrum token diff generator") + .version("0.0.1"); + +program + .command("report") + .description("Generates a diff report for two inputted schema") + .option("-y", "answers yes to removing deprecated status of token(s)") + .option( + "-otv, --old-token-version ", + "indicates which npm package version/github tag to pull old tokens from", + ) + .option( + "-ntv, --new-token-version ", + "indicates which npm package version/github tag to pull new tokens from", + ) + .option( + "-otb, --old-token-branch ", + "indicates which branch to fetch old token data from", + ) + .option( + "-ntb, --new-token-branch ", + "indicates which branch to fetch updated token data from", + ) + .option("-t, --test ", "indicates switch to testing mode") + .option( + "-tn, --token-names ", + "indicates specific tokens to compare", + ) + .action(async (options) => { + try { + const [originalFile, updatedFile] = + options.test !== undefined + ? await Promise.all([ + fileImport(options.test[0], "test"), + fileImport(options.test[1], "test"), + ]) + : await Promise.all([ + fileImport( + options.tokenNames, + options.oldTokenVersion, + options.oldTokenBranch, + ), + fileImport( + options.tokenNames, + options.newTokenVersion, + options.newTokenBranch, + ), + ]); + const result = tokenDiff(originalFile, updatedFile); + cliCheck(originalFile, result, options); + } catch (e) { + console.error(red("\n" + e + "\n")); + } + }); + +program.parse(); + +/** + * Formatting helper function for indentation + * @param {object} text - the string that needs to be indented + * @param {object} amount - the amount of indents (x3 spaces each indent) + * @returns {object} indented string + */ +function indent(text, amount) { + const str = `\n${" ".repeat(amount)}${text}`; + return str.replace(/{|}/g, ""); +} + +/** + * Styling for renamed tokens + * @param {object} result - the JSON object with the report results + * @param {object} token - the current token + * @param {object} log - the console.log object being used + * @param {object} i - the number of times to indent + */ +const printStyleRenamed = (result, token, log, i) => { + const str = + white(`"${result[token]["old-name"]}" -> `) + yellow(`"${token}"`); + log(indent(str, i)); +}; + +/** + * Styling for deprecated tokens + * @param {object} result - the JSON object with the report results + * @param {object} token - the current token + * @param {object} log - the console.log object being used + * @param {object} i - the number of times to indent + */ +const printStyleDeprecated = (result, token, log, i) => { + log( + indent( + yellow(`"${token}"`) + + white(": ") + + yellow(`"${result[token]["deprecated_comment"]}"`), + i, + ), + ); +}; + +/** + * Styling for reverted, added, and deleted tokens + * @param {object} token - the current token + * @param {object} color - intended color + * @param {object} log - the console.log object being used + */ +const printStyleColored = (token, color, log) => { + log(indent(color(`"${token}"`), 1)); +}; + +/** + * Styling for updated tokens + * @param {object} result - the JSON object with the report results + * @param {object} token - the current token + * @param {object} log - the console.log object being used + * @param {object} i - the number of times to indent + */ +const printStyleUpdated = (result, token, log, i) => { + log(indent(yellow(`"${token}"`), i)); + printNestedChanges(result[token], log); +}; + +/** + * Checks for previously deprecated tokens whose deprecated status is removed and asks + * the user if that is intended + * @param {object} originalFile - the original token + * @param {object} result - the updated token report + * @param {object} options - an array holding the values of options inputted from command line + */ +async function cliCheck(originalFile, result, options) { + const log = console.log; + log( + red( + "\nWARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!\n", + ), + ); + if (Object.keys(result.reverted).length > 0 && !options.y) { + printSection( + "alarm_clock", + 'Newly "Un-deprecated"', + Object.keys(result.reverted).length, + result.reverted, + log, + printStyleColored, + yellow, + ); + log( + white( + "\n-------------------------------------------------------------------------------------------", + ), + ); + inquirer + .prompt([ + { + type: "confirm", + name: "confirmation", + message: + "Are you sure this token is supposed to lose its `deprecated` status (y/n)?", + default: false, + }, + ]) + .then((response) => { + if (response.confirmation) { + console.clear(); + return printReport(result, log, options); + } else { + log( + yellow( + emoji.emojify( + "\n:+1: Cool, closing diff generator CLI, see you next time!\n", + ), + ), + ); + return 1; + } + }); + } else { + return printReport(result, log, options); + } +} + +/** + * Formats and prints the report + * @param {object} result - the updated token report + * @param {object} log - console.log object used in previous function (don't really need this, but decided to continue using same variable) + * @param {object} options - an array holding the values of options inputted from command line + * @returns {int} exit code + */ +function printReport(result, log, options) { + try { + const totalTokens = + Object.keys(result.renamed).length + + Object.keys(result.deprecated).length + + Object.keys(result.reverted).length + + Object.keys(result.added).length + + Object.keys(result.deleted).length + + Object.keys(result.updated.added).length + + Object.keys(result.updated.deleted).length + + Object.keys(result.updated.updated).length + + Object.keys(result.updated.renamed).length; + log(white("\n**Tokens Changed (" + totalTokens + ")**")); + let originalSchema = ""; + let updatedSchema = ""; + if (options.oldTokenBranch !== undefined) { + originalSchema = white(`\n${options.oldTokenBranch} | `); + } else if (options.oldTokenVersion !== undefined) { + originalSchema = white(`\n${options.oldTokenVersion} | `); + } + if (options.newTokenBranch !== undefined) { + updatedSchema = yellow(`${options.newTokenBranch}`); + } else if (options.newTokenVersion !== undefined) { + updatedSchema = yellow(`${options.newTokenVersion}`); + } + if (originalSchema !== "" && updatedSchema !== "") { + log(`${originalSchema}${updatedSchema}`); + } + log( + white( + "-------------------------------------------------------------------------------------------\n", + ), + ); + if (Object.keys(result.renamed).length > 0) { + printSection( + "memo", + "Renamed", + Object.keys(result.renamed).length, + result.renamed, + log, + printStyleRenamed, + 1, + ); + } + if (Object.keys(result.deprecated).length > 0) { + printSection( + "clock3", + "Newly Deprecated", + Object.keys(result.deprecated).length, + result.deprecated, + log, + printStyleDeprecated, + 1, + ); + } + if (Object.keys(result.reverted).length > 0) { + printSection( + "alarm_clock", + 'Newly "Un-deprecated"', + Object.keys(result.reverted).length, + result.reverted, + log, + printStyleColored, + yellow, + ); + } + if (Object.keys(result.added).length > 0) { + printSection( + "arrow_up_small", + "Added", + Object.keys(result.added).length, + result.added, + log, + printStyleColored, + green, + ); + } + if (Object.keys(result.deleted).length > 0) { + printSection( + "arrow_down_small", + "Deleted", + Object.keys(result.deleted).length, + result.deleted, + log, + printStyleColored, + red, + ); + } + const totalUpdatedTokens = + Object.keys(result.updated.added).length + + Object.keys(result.updated.deleted).length + + Object.keys(result.updated.updated).length + + Object.keys(result.updated.renamed).length; + if (totalUpdatedTokens > 0) { + printTitle("new", "Updated", totalUpdatedTokens, log); + if (Object.keys(result.updated.renamed).length > 0) { + printSection( + "new", + "Renamed Properties", + Object.keys(result.updated.renamed).length, + result.updated.renamed, + log, + printStyleRenamed, + 2, + ); + } + if (Object.keys(result.updated.added).length > 0) { + printSection( + "new", + "Added Properties", + Object.keys(result.updated.added).length, + result.updated.added, + log, + printStyleUpdated, + 2, + ); + } + if (Object.keys(result.updated.deleted).length > 0) { + printSection( + "new", + "Deleted Properties", + Object.keys(result.updated.deleted).length, + result.updated.deleted, + log, + printStyleUpdated, + 2, + ); + } + if (Object.keys(result.updated.updated).length > 0) { + printSection( + "new", + "Updated Properties", + Object.keys(result.updated.updated).length, + result.updated.updated, + log, + printStyleUpdated, + 2, + ); + } + } + } catch { + return console.error( + red( + new Error( + `either could not format and print the result or failed along the way\n`, + ), + ), + ); + } + return 0; +} + +/** + * Helper function to print and format titles/subtitles + * @param {string} emojiName - the name of the category's emoji + * @param {string} title - the category name + * @param {int} numTokens - the number of tokens changed in that category + * @param {object} log - the console.log object being used + * @param {object} i - the number of times to indent + */ +function printTitle(emojiName, title, numTokens, log, i) { + log( + indent(white(emoji.emojify(`:${emojiName}: ${title} (${numTokens})`)), i), + ); +} + +/** + * General helper function for printing each category + * @param {string} emojiName - the name of the category's emoji + * @param {string} title - the category name + * @param {int} numTokens - the number of tokens changed in that category + * @param {object} result - the json object holding the report + * @param {object} log - the console.log object being used + * @param {object} func - the styling function that will be used + * @param {object} colorOrIndent - can be either the intended text color or the number of times to indent + */ +function printSection( + emojiName, + title, + numTokens, + result, + log, + func, + colorOrIndent, +) { + if ( + title === "Added Properties" || + title === "Deleted Properties" || + title === "Updated Properties" || + title === "Renamed Properties" + ) { + printTitle(emojiName, title, numTokens, log, 1); + } else { + printTitle(emojiName, title, numTokens, log, 0); + } + Object.keys(result).forEach((token) => { + if (typeof colorOrIndent !== "number") { + func(token, colorOrIndent, log); + } else { + func(result, token, log, colorOrIndent); + } + }); + log("\n"); +} + +/** + * Traverse through the updated token's keys and prints a simple changelog + * @param {object} token - the updated token + * @param {object} log - the console.log object used + */ +function printNestedChanges(token, log) { + if (token["path"] !== undefined) { + log(indent(yellow(token["path"]), 3)); + + if (token["original-value"] === undefined) { + if (token["path"].includes("$schema")) { + log(indent(yellow(`"${token["new-value"]}"`), 4)); + } else { + log(indent(yellow(`${token["new-value"]}`), 4)); + } + } else if (token["path"].includes("$schema")) { + const newValue = token["new-value"].split("/"); + const str = + indent(white(`"${token["original-value"]}" -> \n`), 4) + + indent( + white( + `"${token["new-value"].substring(0, token["new-value"].length - newValue[newValue.length - 1].length)}`, + ) + + yellow( + `${newValue[newValue.length - 1].split(".")[0]}` + + white(`.${newValue[newValue.length - 1].split(".")[1]}"`), + ), + 4, + ); + log(str); + } else { + log( + indent( + white(`${token["original-value"]} -> `) + + yellow(`${token["new-value"]}`), + 4, + ), + ); + } + return; + } + Object.keys(token).forEach((property) => { + printNestedChanges(token[property], log); + }); +} diff --git a/tools/diff-generator/src/lib/deleted-token-detection.js b/tools/diff-generator/src/lib/deleted-token-detection.js new file mode 100644 index 00000000..8ddc845c --- /dev/null +++ b/tools/diff-generator/src/lib/deleted-token-detection.js @@ -0,0 +1,40 @@ +/* +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. +*/ + +/** + * Detects deleted tokens + * @param {object} renamed - the renamed tokens (can be none) + * @param {object} deleted - the deleted tokens detected by deep-boject-diff + * @returns {object} deletedTokens - the tokens that were deleted, but not renamed + */ + +export default function detectDeletedTokens(renamed, deleted) { + const deletedTokens = { ...deleted }; + Object.keys(deleted).forEach((token) => { + if ( + deletedTokens[token] !== undefined && + deletedTokens[token].deprecated === undefined + ) { + delete deletedTokens[token]; + } + Object.keys(renamed).forEach((renamedToken) => { + if ( + (deletedTokens[token] !== undefined && + deletedTokens[token].deprecated === undefined) || + renamed[renamedToken]["old-name"] === token + ) { + delete deletedTokens[token]; + } + }); + }); + return deletedTokens; +} diff --git a/tools/diff-generator/src/lib/deprecated-token-detection.js b/tools/diff-generator/src/lib/deprecated-token-detection.js new file mode 100644 index 00000000..a970b38c --- /dev/null +++ b/tools/diff-generator/src/lib/deprecated-token-detection.js @@ -0,0 +1,44 @@ +/* +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. +*/ + +/** + * Detects newly deprecated tokens in the diff + * @param {object} renamedTokens - the newly renamed tokens + * @param {object} changes - the changed token data + * @returns {object} result - a JSON object containing the newly deprecated tokens and (potentially) "undeprecated" tokens + */ + +export default function detectDeprecatedTokens(renamedTokens, changes) { + const result = { + deprecated: {}, + reverted: {}, + }; + const deprecatedTokens = { ...changes.added }; + const possibleMistakenRevert = { ...changes.deleted }; + Object.keys(changes.added).forEach((token) => { + if ( + (token !== undefined && !deprecatedTokens[token].deprecated) || + renamedTokens[token] !== undefined + ) { + delete deprecatedTokens[token]; + } + }); + Object.keys(changes.deleted).forEach((token) => { + const t = possibleMistakenRevert[token]; // a token marked as deleted + if (t === undefined || (typeof t !== "string" && !("deprecated" in t))) { + delete possibleMistakenRevert[token]; + } + }); + result.deprecated = deprecatedTokens; + result.reverted = possibleMistakenRevert; + return result; +} diff --git a/tools/diff-generator/src/lib/file-import.js b/tools/diff-generator/src/lib/file-import.js new file mode 100644 index 00000000..8ab2d943 --- /dev/null +++ b/tools/diff-generator/src/lib/file-import.js @@ -0,0 +1,56 @@ +/* +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. +*/ +import { access, readFile } from "fs/promises"; + +const source = "https://raw.githubusercontent.com/adobe/spectrum-tokens/"; + +/** + * Returns file with given file name as a JSON object (took this from diff.js) + * @param {string} tokenName - the name of the target file + * @param {string} version - the intended package version (full name) + * @returns {object} the target file as a JSON object + */ +export default async function fileImport( + givenTokenNames, + givenVersion, + givenLocation, +) { + const version = givenVersion || "latest"; + const location = givenLocation || "main"; + const tokenNames = + givenTokenNames || (await fetchTokens("manifest.json", version, location)); + if (givenVersion === "test") { + await access(tokenNames); + return JSON.parse(await readFile(tokenNames, { encoding: "utf8" })); + } + const result = {}; + for (let i = 0; i < tokenNames.length; i++) { + const tokens = await fetchTokens(tokenNames[i], version, location); + Object.assign(result, tokens); + } + return result; +} + +async function fetchTokens(tokenName, version, location) { + const link = + version !== "latest" + ? source + version.replace("@", "%40") + : source + location; + return (await fetch(`${link}/packages/tokens/${tokenName}`)) + .json() + .then((tokens) => { + return tokens; + }) + .catch((e) => { + console.log(e); + }); +} diff --git a/tools/diff-generator/src/lib/index.js b/tools/diff-generator/src/lib/index.js new file mode 100644 index 00000000..2b57f585 --- /dev/null +++ b/tools/diff-generator/src/lib/index.js @@ -0,0 +1,83 @@ +/* +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. +*/ +import { detailedDiff } from "deep-object-diff"; +import detectRenamedTokens from "./renamed-token-detection.js"; +import detectNewTokens from "./added-token-detection.js"; +import detectDeletedTokens from "./deleted-token-detection.js"; +import detectDeprecatedTokens from "./deprecated-token-detection.js"; +import detectUpdatedTokens from "./updated-token-detection.js"; + +/** + * Token diff generator + * @param {object} original - token data to compare against + * @param {object} updated - updated token data + * @return {object} resultJSON - a JSON object containing the new tokens, newly deprecated tokens, deleted tokens, updated values, renamed, updated type + */ +export default function tokenDiff(original, updated) { + const changes = detailedDiff(original, updated); + const renamedTokens = detectRenamedTokens(original, changes.added); + const deprecatedTokens = detectDeprecatedTokens(renamedTokens, changes); + const newTokens = detectNewTokens( + renamedTokens, + deprecatedTokens, + changes.added, + original, + ); + const deletedTokens = detectDeletedTokens(renamedTokens, changes.deleted); + const updatedTokens = detectUpdatedTokens( + renamedTokens, + original, + changes, + newTokens, + deprecatedTokens, + ); + return formatResult( + renamedTokens, + deprecatedTokens, + newTokens, + deletedTokens, + updatedTokens, + ); +} + +/** + * Formats the results from all the different diff categories + * @param {object} renamedTokens - a list containing the renamed tokens and their old names + * @param {object} deprecatedTokens - a JSON object containing the newly deprecated tokens + * @param {object} newTokens - a JSON object containing the added tokens + * @param {object} deletedTokens - a JSON object containing the deleted tokens + * @param {object} updatedTokens - a JSON object containing tokens that had updated properties + * @returns {object} resultJSON - a JSON object containing the new tokens, newly deprecated tokens, deleted tokens, updated values, renamed, updated type + */ +function formatResult( + renamedTokens, + deprecatedTokens, + newTokens, + deletedTokens, + updatedTokens, +) { + const resultJSON = { + renamed: {}, + deprecated: {}, + reverted: {}, + added: {}, + deleted: {}, + updated: {}, + }; + resultJSON.renamed = renamedTokens; + resultJSON.deprecated = deprecatedTokens.deprecated; + resultJSON.reverted = deprecatedTokens.reverted; + resultJSON.added = newTokens; + resultJSON.deleted = deletedTokens; + resultJSON.updated = updatedTokens; + return resultJSON; +} diff --git a/tools/diff-generator/src/lib/renamed-token-detection.js b/tools/diff-generator/src/lib/renamed-token-detection.js new file mode 100644 index 00000000..5ab8c404 --- /dev/null +++ b/tools/diff-generator/src/lib/renamed-token-detection.js @@ -0,0 +1,35 @@ +/* +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. +*/ + +/** + * Check if a change is a rename by comparing the tokens' UUIDs + * @param {object} original - the original token data + * @param {object} added - the added token data from deep-obj-diff + * @returns {object} renamedTokens - an array containing the renamed tokens + */ + +export default function detectRenamedTokens(original, added) { + const renamedTokens = {}; + Object.keys(added).forEach((change) => { + Object.keys(original).forEach((originalToken) => { + if ( + original[originalToken].uuid === added[change].uuid && + originalToken !== change + ) { + renamedTokens[change] = { + "old-name": originalToken, + }; + } + }); + }); + return renamedTokens; +} diff --git a/tools/diff-generator/src/lib/updated-token-detection.js b/tools/diff-generator/src/lib/updated-token-detection.js new file mode 100644 index 00000000..0442f994 --- /dev/null +++ b/tools/diff-generator/src/lib/updated-token-detection.js @@ -0,0 +1,230 @@ +/* +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. +*/ +import { detailedDiff } from "deep-object-diff"; + +/** + * Detects updates made to tokens + * @param {object} renamed - a list containing tokens that were renamed + * @param {object} original - the original token data + * @param {object} changes - the changed token data + * @returns {object} updatedTokens - a JSON object containing the updated tokens (with new name, if renamed) + */ +export default function detectUpdatedTokens( + renamed, + original, + changes, + newTokens, + deprecatedTokens, +) { + const updatedTokens = { + renamed: {}, + added: {}, + deleted: {}, + updated: { ...changes.updated }, + }; + Object.keys(changes.added).forEach((token) => { + if (renamed[token] !== undefined) { + const tokenDiff = detailedDiff( + original[renamed[token]["old-name"]], + changes.added[token], + ).updated; + if (Object.keys(tokenDiff).length !== 0) { + updatedTokens.updated[token] = tokenDiff; + } + } else if ( + newTokens[token] === undefined && + original[token] !== undefined && + deprecatedTokens.deprecated[token] === undefined + ) { + updatedTokens.added[token] = changes.added[token]; + formatJSON( + updatedTokens, + updatedTokens.added[token], + token, + original, + renamed, + false, + ); + } + }); + Object.keys(changes.deleted).forEach((token) => { + const t = changes.deleted[token]; + if (t !== undefined && !("deprecated" in t)) { + const tokenDiff = detailedDiff( + t, // switching the order to easily get change + original[token], + ).updated; + updatedTokens.deleted[token] = tokenDiff; + formatJSON( + updatedTokens, + updatedTokens.deleted[token], + token, + original, + renamed, + false, + ); + } + }); + Object.keys(updatedTokens.updated).forEach((token) => { + formatJSON( + updatedTokens, + updatedTokens.updated[token], + token, + original, + renamed, + true, + ); + }); + return updatedTokens; +} + +/** + * Appends original token properties to updatedTokens JSON + * @param {object} tokens - the updated tokens (added, deleted, or updated) + * @param {string} properties - the path containing all the keys required to traverse through to get to value + * @param {object} original - the original token + * @param {object} renamed - a JSON object containing the renamed tokens + * @param {boolean} update - a boolean indicating whether token property is added, deleted, or updated + */ +function formatJSON( + updatedTokens, + tokens, + properties, + original, + renamed, + update, +) { + if (renamed[properties] !== undefined) { + includeOldProperties( + updatedTokens, + tokens, + tokens, + properties, + original, + original[renamed[properties]["old-name"]], + renamed, + update, + ); + } else { + includeOldProperties( + updatedTokens, + tokens, + tokens, + properties, + original, + original[properties], + renamed, + update, + ); + } +} + +/** + * Traverses original and result token to insert the original value, path to the value, and new value + * @param {object} token - the current token from updatedTokens + * @param {object} curTokenLevel - the current key + * @param {string} properties - a string containing the path to get to the value + * @param {object} originalToken - the original token + * @param {object} curOriginalLevel - the current key for original token + * @param {object} renamed - the renamed tokens + */ +function includeOldProperties( + updatedTokens, + token, + curTokenLevel, + properties, + originalToken, + curOriginalLevel, + renamed, + update, +) { + Object.keys(curTokenLevel).forEach((property) => { + if ( + property === "path" || + property === "new-value" || + property === "original-value" + ) { + return; + } + if (typeof curTokenLevel[property] === "string") { + const newValue = curTokenLevel[property]; + const path = !properties.includes(".") + ? property + : `${properties.substring(properties.indexOf(".") + 1)}.${property}`; + curTokenLevel[property] = update + ? JSON.parse(`{ + "new-value": "${newValue}", + "path": "${path}", + "original-value": "${curOriginalLevel[property]}" + }`) + : JSON.parse(`{ + "new-value": "${newValue}", + "path": "${path}" + }`); + return; + } + const nextProperties = properties + "." + property; + const keys = nextProperties.split("."); + curOriginalLevel = originalToken; + curTokenLevel = token; + keys.forEach((key) => { + if (curOriginalLevel[key] === undefined) { + if ( + renamed[key] !== undefined && + curOriginalLevel[renamed[key]["old-name"]] !== undefined + ) { + curOriginalLevel = curOriginalLevel[renamed[key]["old-name"]]; + } + } else { + curOriginalLevel = curOriginalLevel[key]; + } + curTokenLevel = + curTokenLevel[key] === undefined ? token : curTokenLevel[key]; + }); + if (!update) { + Object.keys(curOriginalLevel).forEach((originalProp) => { + Object.keys(curTokenLevel).forEach((curProp) => { + if ( + curTokenLevel[curProp] !== undefined && + typeof curOriginalLevel[originalProp] !== "string" && + typeof curTokenLevel[curProp] !== "string" && + curOriginalLevel[originalProp].uuid !== undefined && + curTokenLevel[curProp].uuid !== undefined && + curOriginalLevel[originalProp].uuid === + curTokenLevel[curProp].uuid && + originalProp !== curProp + ) { + updatedTokens.renamed[curProp] = { + "old-name": originalProp, + }; + delete curTokenLevel[curProp]; + } + Object.keys(updatedTokens["renamed"]).forEach((prop) => { + if (updatedTokens["renamed"][prop]["old-name"] === curProp) { + delete curTokenLevel[curProp]; + } + }); + }); + }); + } + includeOldProperties( + updatedTokens, + token, + curTokenLevel, + nextProperties, + originalToken, + curOriginalLevel, + renamed, + update, + ); + }); +} diff --git a/tools/diff-generator/test/addedToken.test.js b/tools/diff-generator/test/addedToken.test.js new file mode 100644 index 00000000..11b7e4c9 --- /dev/null +++ b/tools/diff-generator/test/addedToken.test.js @@ -0,0 +1,247 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import detectRenamedTokens from "../src/lib/renamed-token-detection.js"; +import detectNewTokens from "../src/lib/added-token-detection.js"; +import detectDeprecatedTokens from "../src/lib/deprecated-token-detection.js"; +import { detailedDiff } from "deep-object-diff"; +import original from "./test-schemas/basic-original-token.json" with { type: "json" }; +import updated from "./test-schemas/new-token.json" with { type: "json" }; +import originalSeveral from "./test-schemas/several-original-tokens.json" with { type: "json" }; +import updatedSeveral from "./test-schemas/several-added-tokens.json" with { type: "json" }; +import originalEntireSchema from "./test-schemas/entire-schema.json" with { type: "json" }; +import addedRenamedTokens from "./test-schemas/added-renamed-tokens.json" with { type: "json" }; +import basicSetToken from "./test-schemas/basic-set-token.json" with { type: "json" }; +import addedSetToken from "./test-schemas/added-set-token.json" with { type: "json" }; +import addedSeveralSetTokens from "./test-schemas/added-set-tokens-out-of-order.json" with { type: "json" }; + +const expectedOneToken = { + "swatch-border-opacity": { + component: "swatch", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-900}", + uuid: "0e397a80-cf33-44ed-8b7d-1abaf4426bf5", + }, +}; + +const expectedSeveral = { + "focus-indicator-color": { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{blue-800}", + uuid: "fe914904-a368-414b-a4ac-21c0b0340d05", + }, + "static-white-focus-indicator-color": { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{white}", + uuid: "1dd6dc5b-47a2-41eb-80fc-f06293ae8e13", + }, + "static-black-focus-indicator-color": { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{black}", + uuid: "c6b8275b-f44e-43b4-b763-82dda94d963c", + }, + "overlay-color": { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{black}", + uuid: "af66daa6-9e52-4e68-a605-86d1de4ee971", + }, +}; + +const expectedNotRenamed = { + "i-like-pizza": { + component: "table", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.07", + uuid: "1234", + }, + "hi-how-are-you": { + component: "color-handle", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.42", + uuid: "234", + }, +}; + +const expectedAddedSetToken = { + "help-text-top-to-workflow-icon-medium": { + component: "help-text", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token-set.json", + sets: { + desktop: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/changing-two-schemas.json", + value: "3px", + uuid: "d159b313-4def-493a-adcf-398e2d1fce9f", + }, + mobile: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + value: "9px", + uuid: "b690bd12-855e-444d-8b76-a7ae948e3f52", + }, + }, + uuid: "86ac0bd3-7ea6-4f80-9c73-c0c77616f246", + }, +}; + +const expectedSeveralAddedSetTokens = { + "background-layer-2-color": { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + sets: { + light: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-50}", + uuid: "b7b2bf98-b96a-40ca-b51e-5876d3418085", + }, + dark: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-100}", + uuid: "dd462fc7-bd79-4b52-9411-adf317832989", + }, + darkest: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-100}", + uuid: "e30b7936-6ae7-4ada-8892-94a1f67d55c9", + }, + wireframe: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-50}", + uuid: "6556a64d-5944-4d65-a6cc-9c6121044ac7", + }, + }, + }, + "help-text-top-to-workflow-icon-medium": { + component: "help-text", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token-set.json", + sets: { + desktop: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/changing-two-schemas.json", + value: "3px", + uuid: "d159b313-4def-493a-adcf-398e2d1fce9f", + }, + mobile: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + value: "9px", + uuid: "b690bd12-855e-444d-8b76-a7ae948e3f52", + }, + }, + uuid: "86ac0bd3-7ea6-4f80-9c73-c0c77616f246", + }, + "neutral-background-color-selected-default": { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/system-set.json", + sets: { + spectrum: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-700}", + uuid: "fd1c9f2b-8358-4bd3-a5cc-d211673428bc", + }, + express: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{gray-800}", + deprecated: true, + deprecated_comment: + "Express will merge with Spectrum with the release of Spectrum 2.", + uuid: "60caae29-d389-421e-a574-b26bcaeed3bf", + }, + }, + }, +}; + +test("basic test to see if new token was added", (t) => { + const diff = detailedDiff(original, updated); + const renamed = detectRenamedTokens(original, diff.added); + t.deepEqual( + detectNewTokens( + renamed, + detectDeprecatedTokens(renamed, diff), + diff.added, + original, + ), + expectedOneToken, + ); +}); + +test("several tokens in each schema test to see if new token was added", (t) => { + const diff = detailedDiff(originalSeveral, updatedSeveral); + const renamed = detectRenamedTokens(originalSeveral, diff.added); + t.deepEqual( + detectNewTokens( + renamed, + detectDeprecatedTokens(renamed, diff), + diff.added, + originalSeveral, + ), + expectedSeveral, + ); +}); + +test("adding several new and renamed tokens test", (t) => { + const diff = detailedDiff(originalEntireSchema, addedRenamedTokens); + const renamed = detectRenamedTokens(originalEntireSchema, diff.added); + t.deepEqual( + detectNewTokens( + renamed, + detectDeprecatedTokens(renamed, diff), + diff.added, + originalEntireSchema, + ), + expectedNotRenamed, + ); +}); + +test("adding a set token test", (t) => { + const diff = detailedDiff(basicSetToken, addedSetToken); + const renamed = detectRenamedTokens(basicSetToken, diff.added); + t.deepEqual( + detectNewTokens( + renamed, + detectDeprecatedTokens(renamed, diff), + diff.added, + basicSetToken, + ), + expectedAddedSetToken, + ); +}); + +test("adding several set tokens out of order", (t) => { + const diff = detailedDiff(basicSetToken, addedSeveralSetTokens); + const renamed = detectRenamedTokens(basicSetToken, diff.added); + t.deepEqual( + detectNewTokens( + renamed, + detectDeprecatedTokens(renamed, diff), + diff.added, + basicSetToken, + ), + expectedSeveralAddedSetTokens, + ); +}); diff --git a/tools/diff-generator/test/cli.test.js b/tools/diff-generator/test/cli.test.js new file mode 100644 index 00000000..0113443a --- /dev/null +++ b/tools/diff-generator/test/cli.test.js @@ -0,0 +1,254 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import nixt from "nixt"; +import fs from "fs"; +import { access, readFile } from "fs/promises"; +import packageJSON from "../package.json" with { type: "json" }; + +const path = fs.realpathSync("./") + "/test/"; +const schemaPath = "test-schemas/"; +const outputPath = "test-cli-outputs/"; + +test.skip("cli should return correct version number", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect((result) => { + console.log(packageJSON.version); + t.is(result.stdout, packageJSON.version); + }) + .run("pnpm tdiff --version") + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for simple diff", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-all-tokens.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -y -t ${path}${schemaPath}entire-schema.json ${path}${schemaPath}renamed-added-deleted-deprecated-updated-reverted-tokens.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for updated (added) property", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-added-property.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -t ${path}${schemaPath}basic-set-token-property.json ${path}${schemaPath}added-property-set-token.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for updated (deleted) property", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-deleted-property.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -t ${path}${schemaPath}added-property-set-token.json ${path}${schemaPath}basic-set-token-property.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for renamed, added, and deleted tokens", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-renamed-added-deleted.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -t ${path}${schemaPath}several-set-tokens.json ${path}${schemaPath}renamed-added-deleted-set-tokens.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for renamed, added, deleted, and deprecated tokens", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-renamed-added-deleted-deprecated.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -t ${path}${schemaPath}entire-schema.json ${path}${schemaPath}renamed-added-deleted-deprecated-tokens.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for added non-schema property", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-non-schema-property.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -t ${path}${schemaPath}basic-set-token.json ${path}${schemaPath}added-non-schema-property-token.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for deleted non-schema property", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-deleted-property-token.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -t ${path}${schemaPath}added-non-schema-property-token.json ${path}${schemaPath}basic-set-token.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("check cli output for renamed property", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-renamed-property-token.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + `pnpm tdiff report -t ${path}${schemaPath}basic-set-token-property.json ${path}${schemaPath}renamed-added-deleted-property-set-token.json`, + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); diff --git a/tools/diff-generator/test/deletedToken.test.js b/tools/diff-generator/test/deletedToken.test.js new file mode 100644 index 00000000..42b711b1 --- /dev/null +++ b/tools/diff-generator/test/deletedToken.test.js @@ -0,0 +1,87 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import detectDeletedTokens from "../src/lib/deleted-token-detection.js"; +import updated from "./test-schemas/basic-original-token.json" with { type: "json" }; +import original from "./test-schemas/new-token.json" with { type: "json" }; +import renamedBasic from "./test-schemas/basic-renamed-token.json" with { type: "json" }; +import { detailedDiff } from "deep-object-diff"; +import detectRenamedTokens from "../src/lib/renamed-token-detection.js"; +import severalSetTokens from "./test-schemas/several-set-tokens.json" with { type: "json" }; +import deletedSetTokens from "./test-schemas/deleted-set-token.json" with { type: "json" }; +import deletedSeveralSetTokens from "./test-schemas/deleted-set-tokens.json" with { type: "json" }; + +const expectedOneDeleted = { + "swatch-border-opacity": undefined, +}; + +const expectedRenamedNotDeleted = {}; + +const expectedDeletedSetToken = { + "status-light-dot-size-extra-large": undefined, +}; + +const expectedTwoDeletedSetTokens = { + "help-text-top-to-workflow-icon-medium": undefined, + "status-light-dot-size-extra-large": undefined, +}; + +test("basic test to see if token was deleted", (t) => { + t.deepEqual( + detectDeletedTokens( + detectRenamedTokens(original, updated), + detailedDiff(original, updated).deleted, + ), + expectedOneDeleted, + ); +}); + +test("checking if renamed tokens are mistakenly marked as deleted", (t) => { + t.deepEqual( + detectDeletedTokens( + detectRenamedTokens(renamedBasic, updated), + detailedDiff(renamedBasic, updated).deleted, + ), + expectedRenamedNotDeleted, + ); +}); + +test("checking if renamed tokens are mistakenly marked as deleted (same as above but swapped schema)", (t) => { + t.deepEqual( + detectDeletedTokens( + detectRenamedTokens(updated, renamedBasic), + detailedDiff(updated, renamedBasic).deleted, + ), + expectedRenamedNotDeleted, + ); +}); + +test("checking if set token is deleted", (t) => { + t.deepEqual( + detectDeletedTokens( + detectRenamedTokens(severalSetTokens, deletedSetTokens), + detailedDiff(severalSetTokens, deletedSetTokens).deleted, + ), + expectedDeletedSetToken, + ); +}); + +test("checking if multiple set tokens are deleted", (t) => { + t.deepEqual( + detectDeletedTokens( + detectRenamedTokens(severalSetTokens, deletedSeveralSetTokens), + detailedDiff(severalSetTokens, deletedSeveralSetTokens).deleted, + ), + expectedTwoDeletedSetTokens, + ); +}); diff --git a/tools/diff-generator/test/deprecatedToken.test.js b/tools/diff-generator/test/deprecatedToken.test.js new file mode 100644 index 00000000..47930468 --- /dev/null +++ b/tools/diff-generator/test/deprecatedToken.test.js @@ -0,0 +1,143 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import detectDeprecatedTokens from "../src/lib/deprecated-token-detection.js"; +import detectRenamedTokens from "../src/lib/renamed-token-detection.js"; +import { detailedDiff } from "deep-object-diff"; +import original from "./test-schemas/basic-original-token.json" with { type: "json" }; +import deprecatedToken from "./test-schemas/deprecated-token.json" with { type: "json" }; +import severalOriginalTokens from "./test-schemas/several-original-tokens.json" with { type: "json" }; +import severalDeprecatedTokens from "./test-schemas/several-deprecated-tokens.json" with { type: "json" }; +import severalRenamedDeprecatedTokens from "./test-schemas/several-renamed-deprecated-tokens.json" with { type: "json" }; +import severalAddedDeprecatedTokens from "./test-schemas/added-deprecated-token.json" with { type: "json" }; + +const expected = { + deprecated: { + "swatch-border-color": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + }, + reverted: {}, +}; + +const expectedSeveralDeprecated = { + deprecated: { + "swatch-border-opacity": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + "focus-indicator-color": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{blue-800}", + uuid: "fe914904-a368-414b-a4ac-21c0b0340d05", + }, + }, + reverted: {}, +}; + +const expectedRenamedDeprecated = { + deprecated: {}, + reverted: {}, +}; // no new deprecated tokens + +const expectedAddedDeprecated = { + deprecated: { + "i-like-mochi": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{blue-800}", + uuid: "4567", + }, + "i-like-burgers": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + value: "{blue-800}", + uuid: "1234", + }, + }, + reverted: {}, +}; + +const expectedReverted = { + deprecated: {}, + reverted: { + "swatch-border-color": { + deprecated: undefined, + deprecated_comment: undefined, + }, + }, +}; + +test("basic test to see deprecated token", (t) => { + t.deepEqual( + detectDeprecatedTokens( + detectRenamedTokens(original, deprecatedToken), + detailedDiff(original, deprecatedToken), + ), + expected, + ); +}); + +test("several tokens to see if deprecated token is found", (t) => { + t.deepEqual( + detectDeprecatedTokens( + detectRenamedTokens(severalOriginalTokens, severalDeprecatedTokens), + detailedDiff(severalOriginalTokens, severalDeprecatedTokens), + ), + expectedSeveralDeprecated, + ); +}); + +test("several tokens with some renamed to see if new deprecated tokens are found", (t) => { + t.deepEqual( + detectDeprecatedTokens( + detectRenamedTokens( + severalDeprecatedTokens, + severalRenamedDeprecatedTokens, + ), + detailedDiff(severalDeprecatedTokens, severalRenamedDeprecatedTokens), + ), + expectedRenamedDeprecated, + ); +}); + +test("added a token to see if new deprecated tokens are found", (t) => { + t.deepEqual( + detectDeprecatedTokens( + detectRenamedTokens( + severalDeprecatedTokens, + severalAddedDeprecatedTokens, + ), + detailedDiff(severalDeprecatedTokens, severalAddedDeprecatedTokens), + ), + expectedAddedDeprecated, + ); +}); + +test("reverted a token to not deprecated", (t) => { + t.deepEqual( + detectDeprecatedTokens( + detectRenamedTokens(deprecatedToken, original), + detailedDiff(deprecatedToken, original), + ), + expectedReverted, + ); +}); diff --git a/tools/diff-generator/test/fileImport.test.js b/tools/diff-generator/test/fileImport.test.js new file mode 100644 index 00000000..50dc1302 --- /dev/null +++ b/tools/diff-generator/test/fileImport.test.js @@ -0,0 +1,180 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import nixt from "nixt"; +import fs from "fs"; +import { access, readFile } from "fs/promises"; + +const path = fs.realpathSync("./") + "/test/"; +const schemaPath = "test-schemas/"; +const outputPath = "test-cli-outputs/"; + +test("checking file import for two branches (both main)", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-main-branch.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run("pnpm tdiff report -otb main -ntb main") + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("checking cli output for two branches (shirlsli/diff-generator-cli and shirlsli/file-import-tests) for added color-component tokens", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-branches-added.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + "pnpm tdiff report -otb shirlsli/diff-generator-cli -ntb shirlsli/file-import-tests -tn src/color-component.json", + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("checking cli output for two branches (shirlsli/diff-generator-cli and shirlsli/file-import-tests) for deleted layout tokens", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-branches-deleted.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + "pnpm tdiff report -otb shirlsli/diff-generator-cli -ntb shirlsli/file-import-tests -tn src/layout.json", + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("checking cli output for two branches (shirlsli/diff-generator-cli and shirlsli/file-import-tests) for renamed, deprecated, added, deleted, and updated tokens", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-branches-changes.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + "pnpm tdiff report -otb shirlsli/diff-generator-cli -ntb shirlsli/file-import-tests", + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("checking cli output between a release and a branch (@adobe/spectrum-tokens@12.26.0 and shirlsli/file-import-tests) for renamed, deprecated, added, deleted, and updated tokens", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-release-branch-compare.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + "pnpm tdiff report -otv @adobe/spectrum-tokens@12.26.0 -ntb shirlsli/file-import-tests", + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); + +test("checking cli output between a branch and a release (shirlsli/file-import-tests and @adobe/spectrum-tokens@12.26.0) for renamed, deprecated, added, deleted, and updated tokens", async (t) => { + t.plan(1); + return new Promise((resolve, reject) => { + try { + nixt() + .expect(async () => { + try { + const expectedFileName = `${path}${outputPath}expected-branch-release-compare.txt`; + await access(expectedFileName); + const expected = await readFile(expectedFileName, { + encoding: "utf8", + }); + t.snapshot(expected.trim()); + } catch (error) { + reject(error); + } + }) + .run( + "pnpm tdiff report -y -otb shirlsli/file-import-tests -ntv @adobe/spectrum-tokens@12.26.0", + ) + .end(resolve); + } catch (error) { + reject(error); + } + }); +}); diff --git a/tools/diff-generator/test/renamedToken.test.js b/tools/diff-generator/test/renamedToken.test.js new file mode 100644 index 00000000..b0ab6010 --- /dev/null +++ b/tools/diff-generator/test/renamedToken.test.js @@ -0,0 +1,123 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import detectRenamedTokens from "../src/lib/renamed-token-detection.js"; +import { detailedDiff } from "deep-object-diff"; +import original from "./test-schemas/basic-original-token.json" with { type: "json" }; +import updated from "./test-schemas/basic-renamed-token.json" with { type: "json" }; +import originalTwoOrMore from "./test-schemas/several-original-tokens.json" with { type: "json" }; +import updatedTwoOrMore from "./test-schemas/several-renamed-tokens.json" with { type: "json" }; +import originalEntireSchema from "./test-schemas/entire-schema.json" with { type: "json" }; +import updatedEntireSchema from "./test-schemas/entire-schema-renamed.json" with { type: "json" }; +import basicSetToken from "./test-schemas/basic-set-token.json" with { type: "json" }; +import renamedSetToken from "./test-schemas/basic-renamed-set-token.json" with { type: "json" }; +import severalSetTokens from "./test-schemas/several-set-tokens.json" with { type: "json" }; +import severalRenamedSetTokens from "./test-schemas/several-renamed-set-tokens.json" with { type: "json" }; + +const expectedSingleRenamed = { + "hello-world": { + "old-name": "swatch-border-color", + }, +}; + +const expectedTwoRenamed = { + "swatch-color": { + "old-name": "swatch-border-color", + }, + "swatch-opacity": { + "old-name": "swatch-border-opacity", + }, +}; + +const expectedSeveralRenamed = { + "swatch-opacity": { + "old-name": "swatch-border-opacity", + }, + "swatch-disabled-border-color": { + "old-name": "swatch-disabled-icon-border-color", + }, + "table-col-hover-color": { + "old-name": "table-row-hover-color", + }, + "table-col-hover-opacity": { + "old-name": "table-row-hover-opacity", + }, + "table-selected-row-background-opacity-definitely-emphasized": { + "old-name": "table-selected-row-background-opacity-non-emphasized", + }, + "table-selected-row-background-opacity-ultra-emphasized-hover": { + "old-name": "table-selected-row-background-opacity-non-emphasized-hover", + }, +}; + +const expectedSetTokenRenamed = { + "i-like-lavendar-latte": { + "old-name": "overlay-opacity", + }, +}; + +const expectedSeveralSetTokensRenamed = { + "i-like-fish-tacos": { + "old-name": "status-light-dot-size-extra-large", + }, + "i-like-scrambled-eggs": { + "old-name": "status-light-top-to-dot-large", + }, +}; + +test("basic test to see if diff catches rename", (t) => { + t.deepEqual( + detectRenamedTokens(original, detailedDiff(original, updated).added), + expectedSingleRenamed, + ); +}); + +test("several tokens in each schema test to see if diff catches rename", (t) => { + t.deepEqual( + detectRenamedTokens( + originalTwoOrMore, + detailedDiff(originalTwoOrMore, updatedTwoOrMore).added, + ), + expectedTwoRenamed, + ); +}); + +test("existing test to see if diff catches rename", (t) => { + t.deepEqual( + detectRenamedTokens( + originalEntireSchema, + detailedDiff(originalEntireSchema, updatedEntireSchema).added, + ), + expectedSeveralRenamed, + ); +}); + +test("renamed set token", (t) => { + t.deepEqual( + detectRenamedTokens( + basicSetToken, + detailedDiff(basicSetToken, renamedSetToken).added, + ), + expectedSetTokenRenamed, + ); +}); + +test("renamed several set tokens", (t) => { + t.deepEqual( + detectRenamedTokens( + severalSetTokens, + detailedDiff(severalSetTokens, severalRenamedSetTokens).added, + ), + expectedSeveralSetTokensRenamed, + ); +}); diff --git a/tools/diff-generator/test/snapshots/cli.test.js.md b/tools/diff-generator/test/snapshots/cli.test.js.md new file mode 100644 index 00000000..6f4ae446 --- /dev/null +++ b/tools/diff-generator/test/snapshots/cli.test.js.md @@ -0,0 +1,341 @@ +# Snapshot report for `test/cli.test.js` + +The actual snapshot is saved in `cli.test.js.snap`. + +Generated by [AVA](https://avajs.dev). + +## check cli output for simple diff + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (16)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 📝 Renamed (2)␊ + ␊ + "color-area-border-color" -> "i-like-ice-cream"␊ + ␊ + "color-handle-inner-border-color" -> "i-like-char-siu"␊ + ␊ + ␊ + 🕒 Newly Deprecated (2)␊ + ␊ + "color-slider-border-color": "insert random deprecated comment"␊ + ␊ + "color-loupe-outer-border": "insert random deprecated comment"␊ + ␊ + ␊ + ⏰ Newly "Un-deprecated" (1)␊ + ␊ + "color-handle-drop-shadow-color"␊ + ␊ + ␊ + 🔼 Added (2)␊ + ␊ + "i-like-pizza"␊ + ␊ + "hi-how-are-you"␊ + ␊ + ␊ + 🔽 Deleted (4)␊ + ␊ + "floating-action-button-drop-shadow-color"␊ + ␊ + "floating-action-button-shadow-color"␊ + ␊ + "table-selected-row-background-opacity-non-emphasized"␊ + ␊ + "table-selected-row-background-opacity-non-emphasized-hover"␊ + ␊ + ␊ + 🆕 Updated (5)␊ + ␊ + 🆕 Updated Properties (5)␊ + ␊ + "thumbnail-border-color"␊ + ␊ + $schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" -> ␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/not-a-thumbnail.json"␊ + ␊ + "opacity-checkerboard-square-dark"␊ + ␊ + sets.light.value␊ + ␊ + gray-200 -> gray-500␊ + ␊ + sets.darkest.value␊ + ␊ + gray-800 -> gray-900␊ + ␊ + "color-slider-border-opacity"␊ + ␊ + component␊ + ␊ + color-slider -> not-a-color-slider␊ + ␊ + "color-loupe-inner-border"␊ + ␊ + uuid␊ + ␊ + d2c4cb48-8a90-461d-95bc-d882ba01472b -> if a uuid ever change lol␊ + ␊ + "drop-zone-background-color"␊ + ␊ + component␊ + ␊ + drop-zone -> woohoo!␊ + ␊ + value␊ + ␊ + accent-visual-color -> fushcia pink` + +## check cli output for updated (added) property + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (1)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🆕 Updated (1)␊ + ␊ + 🆕 Added Properties (1)␊ + ␊ + "celery-background-color-default"␊ + ␊ + sets.random-property.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.random-property.value␊ + ␊ + spinach-100␊ + ␊ + sets.random-property.uuid␊ + ␊ + 1234` + +## check cli output for updated (deleted) property + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (1)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🆕 Updated (1)␊ + ␊ + 🆕 Deleted Properties (1)␊ + ␊ + "celery-background-color-default"␊ + ␊ + sets.random-property.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.random-property.value␊ + ␊ + spinach-100␊ + ␊ + sets.random-property.uuid␊ + ␊ + 1234` + +## check cli output for renamed, added, and deleted tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (3)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 📝 Renamed (1)␊ + ␊ + "help-text-top-to-workflow-icon-medium" -> "i-like-lemon-coconut-muffins"␊ + ␊ + ␊ + ␊ + 🔼 Added (1)␊ + ␊ + "gray-100"␊ + ␊ + ␊ + ␊ + 🔽 Deleted (1)␊ + ␊ + "status-light-dot-size-extra-large"` + +## check cli output for renamed, added, deleted, and deprecated tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (10)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 📝 Renamed (2)␊ + ␊ + "color-area-border-color" -> "i-like-ice-cream"␊ + ␊ + "color-handle-inner-border-color" -> "i-like-char-siu"␊ + ␊ + ␊ + ␊ + 🕒 Newly Deprecated (2)␊ + ␊ + "color-slider-border-color": "insert random deprecated comment"␊ + ␊ + "color-loupe-outer-border": "insert random deprecated comment"␊ + ␊ + ␊ + ␊ + 🔼 Added (2)␊ + ␊ + "i-like-pizza"␊ + ␊ + "hi-how-are-you"␊ + ␊ + ␊ + ␊ + 🔽 Deleted (4)␊ + ␊ + "floating-action-button-drop-shadow-color"␊ + ␊ + "floating-action-button-shadow-color"␊ + ␊ + "table-selected-row-background-opacity-non-emphasized"␊ + ␊ + "table-selected-row-background-opacity-non-emphasized-hover"` + +## check cli output for added non-schema property + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + ␊ + **Tokens Changed (1)**␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🆕 Updated (1)␊ + ␊ + 🆕 Added Properties (1)␊ + ␊ + "overlay-opacity"␊ + ␊ + sets.some-new-property.value␊ + ␊ + 0.8` + +## check cli output for deleted non-schema property + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + ␊ + **Tokens Changed (1)**␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🆕 Updated (1)␊ + ␊ + 🆕 Deleted Properties (1)␊ + ␊ + "overlay-opacity"␊ + ␊ + sets.some-new-property.value␊ + ␊ + 0.8` + +## check cli output for renamed property + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + ␊ + **Tokens Changed (3)**␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🆕 Updated (3)␊ + ␊ + 🆕 Renamed Properties (1)␊ + ␊ + "wireframe" -> "i-like-waffle-fries"␊ + ␊ + ␊ + ␊ + 🆕 Added Properties (1)␊ + ␊ + "celery-background-color-default"␊ + ␊ + sets.added-property.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/some-property-type.json"␊ + ␊ + sets.added-property.value␊ + ␊ + celery-1100␊ + ␊ + sets.added-property.uuid␊ + ␊ + 1234␊ + ␊ + ␊ + ␊ + 🆕 Deleted Properties (1)␊ + ␊ + "celery-background-color-default"␊ + ␊ + sets.darkest.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.darkest.value␊ + ␊ + celery-800␊ + ␊ + sets.darkest.uuid␊ + ␊ + a9ab7a59-9cab-47fb-876d-6f0af93dc5df` diff --git a/tools/diff-generator/test/snapshots/cli.test.js.snap b/tools/diff-generator/test/snapshots/cli.test.js.snap new file mode 100644 index 0000000000000000000000000000000000000000..87b530c6b18a8ee0f6ba80cd96d147c0772887cc GIT binary patch literal 1387 zcmV-x1(fF00000000B+Sj~$ZMHEl6$imz_daDcy*(Gnjc6N6r2T4dkyaWk`;PG|U z>+N!?tJEORnW6fq&gP&$o?i;Q=lKNSK!ezbXI zE_hGjUAL zO&pWL1&(Bt3OEmD;GWjH4dl|e7{0U-C%Xb4j8jcydZ=6b_T zkAWg^q=*$cN0;>f48u+ zcKCrc30W`6E#Bv1qcjdQN>#^4`JOTMw&M}SSUJgE?S0~|b-N}Z?M!Mpb@Ht5a1)=* z{BFU)b@RXAX9>A3Dv7T1u`@bH_lst)jR%BhFzEF%8}jGfUhgDv#*y4=@==9+d`#Y$zH`m13UU)CMw9k+ z)>Z0^ec_Sn=?Otaj#sNsRZ5ylQ5PTve8_|02u3*W!EmoHV7wb}5Tnr`z+Qj2KL|3x zGGv&OGdd*8cwY0FGHM||PrM_esS5ceAg-`;L7d5&8WS0FxpJey>Bu>04~NpFs0uk5 zZJ4@bV>~!37*>I~>u3xEgMQ^Cq zxc+gC7 zi)RMzJLeMa)g`K22_jMnc)IVwn*_Xpsj-t#nJGwaG{hui8rRk$MX}Mq4L3UV5T{`% zwaZ51+VW8H&u6WEuUB5EED7Zm=h3GQ^2rZ`@sN$&K=-{xP-qXRT|(>TGeK((s}f_2 zU1=4}HXhYr_Ql4Tfmy$I?s4`imi6 Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases made before every token got their own uuid!␊ + ␊ + ␊ + **Tokens Changed (0)**␊ + -------------------------------------------------------------------------------------------` + +## checking cli output for two branches (shirlsli/diff-generator-cli-tests and shirlsli/file-import-tests) for added color-component tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases made before every token got their own uuid!␊ + ␊ + ␊ + **Tokens Changed (4)**␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🔼 Added (4)␊ + ␊ + "i-like-dosas"␊ + ␊ + "i-like-panang-curry"␊ + ␊ + "i-like-fried-chicken"␊ + ␊ + "i-like-frozen-yogurt"` + +## checking cli output for two branches (shirlsli/diff-generator-cli-tests and shirlsli/file-import-tests) for deleted layout tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases made before every token got their own uuid!␊ + ␊ + ␊ + **Tokens Changed (2)**␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🔽 Deleted (2)␊ + ␊ + "spacing-1000"␊ + ␊ + "text-to-visual-100"` diff --git a/tools/diff-generator/test/snapshots/file-import.test.js.snap b/tools/diff-generator/test/snapshots/file-import.test.js.snap new file mode 100644 index 0000000000000000000000000000000000000000..967102c7c8e5f463e3d937df99535bb983a63714 GIT binary patch literal 492 zcmV_rZvcCcO&`P%fh$*0-n9N? zbjfu6x*v-O00000000BclEG>eK@f&_6%pp<8N3LiE_vT{B%w zZ`V*=oy~d+UVH%W5}!k#NuNMub~k}l@s^M}_Fvr%|My)sb!6A&k6%$qBc30)fUcv| zLPHUOmOYC?!veZusKq81FvGNF4Y0J7W|Widb70LEm)={o?|$7MJsb@)elU7;@5ku$ z_|3`dlUL8+lwt%V4Jc3}P_oVyv5LR~t0B}NyaJm5MOc6uC>j0cf5C`0V}_;m2sJh= z2zZ9F2IUSDw5*^3Nq|=gN+JKas;c???T}`85o~JF!*ns5&nt6tb5-T1>ndF&;G%u` zSCcuA#2o3Vr=~G2CKRhI#ziuUSu@z=;d*PpVzyYe@oe*^^&UMqj>An}_M9;3wwU}E zq4#6iL*&MH4AIdIBdV(E=aTR;AHLi%P_mf5l zy>WqDhw0CVKVULzZj0#TN{frz)WTy#MGw)gx%|h6=X*XpxobWg-ii<3;pMKb>EX_Z i+*?PfH3y5uVh308T#d3hqg-qplF4te_h`RH1pol?Rq%2E literal 0 HcmV?d00001 diff --git a/tools/diff-generator/test/snapshots/fileImport.test.js.md b/tools/diff-generator/test/snapshots/fileImport.test.js.md new file mode 100644 index 00000000..b9e8c502 --- /dev/null +++ b/tools/diff-generator/test/snapshots/fileImport.test.js.md @@ -0,0 +1,438 @@ +# Snapshot report for `test/fileImport.test.js` + +The actual snapshot is saved in `fileImport.test.js.snap`. + +Generated by [AVA](https://avajs.dev). + +## checking file import for two branches (both main) + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (0)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------` + +## checking cli output for two branches (shirlsli/diff-generator-cli and shirlsli/file-import-tests) for added color-component tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (4)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🔼 Added (4)␊ + ␊ + "i-like-dosas"␊ + ␊ + "i-like-panang-curry"␊ + ␊ + "i-like-fried-chicken"␊ + ␊ + "i-like-frozen-yogurt"` + +## checking cli output for two branches (shirlsli/diff-generator-cli and shirlsli/file-import-tests) for deleted layout tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (2)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 🔽 Deleted (2)␊ + ␊ + "spacing-1000"␊ + ␊ + "text-to-visual-100"` + +## checking cli output for two branches (shirlsli/diff-generator-cli and shirlsli/file-import-tests) for renamed, deprecated, added, deleted, and updated tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + ␊ + **Tokens Changed (17)**␊ + ␊ + shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests␊ + ␊ + latest | latest␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 📝 Renamed (3)␊ + ␊ + "blue-600" -> "i-like-dim-sum"␊ + ␊ + "red-400" -> "i-like-passion-fruit-green-tea"␊ + ␊ + "table-selected-row-background-opacity-non-emphasized" -> "i-like-sushi"␊ + ␊ + ␊ + ␊ + 🕒 Newly Deprecated (3)␊ + ␊ + "black-font-weight": "here is an another totally informative comment"␊ + ␊ + "font-size-800": "this is totally not not deprecated"␊ + ␊ + "informative-color-100": "here is a totally informative comment"␊ + ␊ + ␊ + ␊ + 🔼 Added (4)␊ + ␊ + "i-like-dosas"␊ + ␊ + "i-like-panang-curry"␊ + ␊ + "i-like-fried-chicken"␊ + ␊ + "i-like-frozen-yogurt"␊ + ␊ + ␊ + ␊ + 🔽 Deleted (2)␊ + ␊ + "spacing-1000"␊ + ␊ + "text-to-visual-100"␊ + ␊ + ␊ + ␊ + 🆕 Updated (5)␊ + ␊ + 🆕 Added Properties (1)␊ + ␊ + "accent-background-color-down"␊ + ␊ + sets.definite-a-real-property.$schema␊ + ␊ + "adobe link"␊ + ␊ + sets.definite-a-real-property.value␊ + ␊ + woohoo!␊ + ␊ + sets.definite-a-real-property.uuid␊ + ␊ + 7890␊ + ␊ + ␊ + ␊ + 🆕 Deleted Properties (2)␊ + ␊ + "neutral-subdued-background-color-hover"␊ + ␊ + sets.darkest.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.darkest.value␊ + ␊ + gray-300␊ + ␊ + sets.darkest.uuid␊ + ␊ + 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5␊ + ␊ + "accent-background-color-hover"␊ + ␊ + sets.darkest.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.darkest.value␊ + ␊ + accent-color-500␊ + ␊ + sets.darkest.uuid␊ + ␊ + 9e140a94-c11f-470b-b7af-49880e58d4ce␊ + ␊ + ␊ + ␊ + 🆕 Updated Properties (2)␊ + ␊ + "neutral-background-color-selected-down"␊ + ␊ + sets.express.value␊ + ␊ + gray-900 -> updated␊ + ␊ + "informative-background-color-hover"␊ + ␊ + $schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" -> ␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/i-like-koalas.json"␊ + ␊ + sets.light.value␊ + ␊ + informative-color-1000 -> some-value-was-changed` + +## checking cli output between a release and a branch (@adobe/spectrum-tokens@12.26.0 and shirlsli/file-import-tests) for renamed, deprecated, added, deleted, and updated tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + ␊ + **Tokens Changed (17)**␊ + ␊ + @adobe/spectrum-tokens@12.26.0 | shirlsli/file-import-tests␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 📝 Renamed (3)␊ + ␊ + "blue-600" -> "i-like-dim-sum"␊ + ␊ + "red-400" -> "i-like-passion-fruit-green-tea"␊ + ␊ + "table-selected-row-background-opacity-non-emphasized" -> "i-like-sushi"␊ + ␊ + ␊ + ␊ + 🕒 Newly Deprecated (3)␊ + ␊ + "black-font-weight": "here is an another totally informative comment"␊ + ␊ + "font-size-800": "this is totally not not deprecated"␊ + ␊ + "informative-color-100": "here is a totally informative comment"␊ + ␊ + ␊ + ␊ + 🔼 Added (4)␊ + ␊ + "i-like-dosas"␊ + ␊ + "i-like-panang-curry"␊ + ␊ + "i-like-fried-chicken"␊ + ␊ + "i-like-frozen-yogurt"␊ + ␊ + ␊ + ␊ + 🔽 Deleted (2)␊ + ␊ + "spacing-1000"␊ + ␊ + "text-to-visual-100"␊ + ␊ + ␊ + ␊ + 🆕 Updated (5)␊ + ␊ + 🆕 Added Properties (1)␊ + ␊ + "accent-background-color-down"␊ + ␊ + sets.definite-a-real-property.$schema␊ + ␊ + "adobe link"␊ + ␊ + sets.definite-a-real-property.value␊ + ␊ + woohoo!␊ + ␊ + sets.definite-a-real-property.uuid␊ + ␊ + 7890␊ + ␊ + ␊ + ␊ + 🆕 Deleted Properties (2)␊ + ␊ + "neutral-subdued-background-color-hover"␊ + ␊ + sets.darkest.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.darkest.value␊ + ␊ + gray-300␊ + ␊ + sets.darkest.uuid␊ + ␊ + 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5␊ + ␊ + "accent-background-color-hover"␊ + ␊ + sets.darkest.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.darkest.value␊ + ␊ + accent-color-500␊ + ␊ + sets.darkest.uuid␊ + ␊ + 9e140a94-c11f-470b-b7af-49880e58d4ce␊ + ␊ + ␊ + ␊ + 🆕 Updated Properties (2)␊ + ␊ + "neutral-background-color-selected-down"␊ + ␊ + sets.express.value␊ + ␊ + gray-900 -> updated␊ + ␊ + "informative-background-color-hover"␊ + ␊ + $schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" -> ␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/i-like-koalas.json"␊ + ␊ + sets.light.value␊ + ␊ + informative-color-1000 -> some-value-was-changed` + +## checking cli output between a branch and a release (shirlsli/file-import-tests and @adobe/spectrum-tokens@12.26.0) for renamed, deprecated, added, deleted, and updated tokens + +> Snapshot 1 + + `WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0!␊ + ␊ + **Tokens Changed (17)**␊ + ␊ + shirlsli/file-import-tests | @adobe/spectrum-tokens@12.26.0␊ + -------------------------------------------------------------------------------------------␊ + ␊ + ␊ + 📝 Renamed (3)␊ + ␊ + "i-like-dim-sum" -> "blue-600"␊ + ␊ + "i-like-passion-fruit-green-tea" -> "red-400"␊ + ␊ + "i-like-sushi" -> "table-selected-row-background-opacity-non-emphasized"␊ + ␊ + ␊ + ␊ + ⏰ Newly "Un-deprecated" (3)␊ + ␊ + "black-font-weight"␊ + ␊ + "font-size-800"␊ + ␊ + "informative-color-100"␊ + ␊ + ␊ + ␊ + 🔼 Added (2)␊ + ␊ + "spacing-1000"␊ + ␊ + "text-to-visual-100"␊ + ␊ + ␊ + ␊ + 🔽 Deleted (4)␊ + ␊ + "i-like-dosas"␊ + ␊ + "i-like-panang-curry"␊ + ␊ + "i-like-fried-chicken"␊ + ␊ + "i-like-frozen-yogurt"␊ + ␊ + ␊ + ␊ + 🆕 Updated (5)␊ + ␊ + 🆕 Added Properties (2)␊ + ␊ + "neutral-subdued-background-color-hover"␊ + ␊ + sets.darkest.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.darkest.value␊ + ␊ + gray-300␊ + ␊ + sets.darkest.uuid␊ + ␊ + 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5␊ + ␊ + "accent-background-color-hover"␊ + ␊ + sets.darkest.$schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json"␊ + ␊ + sets.darkest.value␊ + ␊ + accent-color-500␊ + ␊ + sets.darkest.uuid␊ + ␊ + 9e140a94-c11f-470b-b7af-49880e58d4ce␊ + ␊ + ␊ + ␊ + 🆕 Deleted Properties (1)␊ + ␊ + "accent-background-color-down"␊ + ␊ + sets.definite-a-real-property.$schema␊ + ␊ + "adobe link"␊ + ␊ + sets.definite-a-real-property.value␊ + ␊ + woohoo!␊ + ␊ + sets.definite-a-real-property.uuid␊ + ␊ + 7890␊ + ␊ + ␊ + ␊ + 🆕 Updated Properties (2)␊ + ␊ + "neutral-background-color-selected-down"␊ + ␊ + sets.express.value␊ + ␊ + updated -> gray-900␊ + ␊ + "informative-background-color-hover"␊ + ␊ + $schema␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/i-like-koalas.json" -> ␊ + ␊ + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json"␊ + ␊ + sets.light.value␊ + ␊ + some-value-was-changed -> informative-color-1000` diff --git a/tools/diff-generator/test/snapshots/fileImport.test.js.snap b/tools/diff-generator/test/snapshots/fileImport.test.js.snap new file mode 100644 index 0000000000000000000000000000000000000000..120e2ab8162c8344f1903e6f2c45af0aee2923a3 GIT binary patch literal 1343 zcmV-F1;F}2RzV{IB(vypxF2Rh*-9(GuSY$Vi>ghC<_aiWbQp*F;gH3Di z3KAP>XMcFfIXL)s{lSN8AFpM{`bTS@ez3Rx_};_)2m4>`k;g(xg2F{;NPt8rU@SG@ zkZ423*`SMz9urUmjnRgPkfauQo`6A#V9}BQLv4`U1+D{Z+XR_2X-u6Sp|W>7-B$N@ z%fID$o15R{m&lh9s3CIF^fxv)J>uVk?B2|478A; z81y^|*$Fu!#fe8R?x@Q0bXpcB1<|QX(z>cFSs4Mvm#k_dj|QA0Crrz1j*b(pP&rZv zTT|!Pb9H`ob?V%^ZguuN@1Ng)`-|Mm3()Lscpf37A*d81q+DCDjk!w+C{RPnQe!6b zBcTzRwM%y(afd z<(u8oRyF}9)R1<3-!C2F@X%4G>4C5*$ZTZlj~AEY4}%I~UrJS?h1n%kv^0+}Mc?fVTv?;JNO5mTGS zrKb#X+FQ6I0c(X;G&HGjbZ8J2bqJLUA&^KdN@NZ>HF`_~V56bYsp3>;wsjM#w4xX% z5m@mA`CNFL+DJ6KJnQGbkbNA>3AsNt)NJ~|Ml{sQ(J_i)nfdMG>Zm|p>nf^C`99WT&7$c z7M*Qz422R7DNutTX;Q?Tw7#$`!Wd@m&tqrrGLb@!&L8OjWQy}~##%>O-#T}QG!=Y4 zLVtJQXBt(CR5H(M(mmEhVd@M>YSVzH$WMwB=>s$;*92yS)}10o7*38Qde)_c8K6!TeE~sMF`dm@9 zEYElSh_d01G|1D;A+xQjPQTi{Bv;ew7->F(j=@q^ut)`Wuj=3~KsQEI1S;ssxeH3z zBhBULbIG*#$sFyiT|L@6L#?H#w<5b0*{#TKev?~~-F4%Z71^!GZbf!ii|k64E5NS8 zyyodBlHa);W!^E_-S~Nq?4I7ZGGBrhKjWPg>*$QI?*;4@P%fvdDeNuaL_N#pQ!4nI zn^E9dKK@pym$j(BfBLiJy2c|#XP{~s+|{AlG6-8_tG9uiSxCA>HakCCtvI4QRvd9& zrQVby>hSgdj`Ww#R@D|t?@Tf4YOz%f_*?{EEg;;v*{YtPvJC5~>t8Qn=^ig5002|X Bh "i-like-ice-cream" + + "color-handle-inner-border-color" -> "i-like-char-siu" + + +🕒 Newly Deprecated (2) + + "color-slider-border-color": "insert random deprecated comment" + + "color-loupe-outer-border": "insert random deprecated comment" + + +⏰ Newly "Un-deprecated" (1) + + "color-handle-drop-shadow-color" + + +🔼 Added (2) + + "i-like-pizza" + + "hi-how-are-you" + + +🔽 Deleted (4) + + "floating-action-button-drop-shadow-color" + + "floating-action-button-shadow-color" + + "table-selected-row-background-opacity-non-emphasized" + + "table-selected-row-background-opacity-non-emphasized-hover" + + +🆕 Updated (5) + + 🆕 Updated Properties (5) + + "thumbnail-border-color" + + $schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" -> + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/not-a-thumbnail.json" + + "opacity-checkerboard-square-dark" + + sets.light.value + + gray-200 -> gray-500 + + sets.darkest.value + + gray-800 -> gray-900 + + "color-slider-border-opacity" + + component + + color-slider -> not-a-color-slider + + "color-loupe-inner-border" + + uuid + + d2c4cb48-8a90-461d-95bc-d882ba01472b -> if a uuid ever change lol + + "drop-zone-background-color" + + component + + drop-zone -> woohoo! + + value + + accent-visual-color -> fushcia pink \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-branch-release-compare.txt b/tools/diff-generator/test/test-cli-outputs/expected-branch-release-compare.txt new file mode 100644 index 00000000..32a9f58d --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-branch-release-compare.txt @@ -0,0 +1,119 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + +**Tokens Changed (17)** + +shirlsli/file-import-tests | @adobe/spectrum-tokens@12.26.0 +------------------------------------------------------------------------------------------- + + +📝 Renamed (3) + + "i-like-dim-sum" -> "blue-600" + + "i-like-passion-fruit-green-tea" -> "red-400" + + "i-like-sushi" -> "table-selected-row-background-opacity-non-emphasized" + + + +⏰ Newly "Un-deprecated" (3) + + "black-font-weight" + + "font-size-800" + + "informative-color-100" + + + +🔼 Added (2) + + "spacing-1000" + + "text-to-visual-100" + + + +🔽 Deleted (4) + + "i-like-dosas" + + "i-like-panang-curry" + + "i-like-fried-chicken" + + "i-like-frozen-yogurt" + + + +🆕 Updated (5) + + 🆕 Added Properties (2) + + "neutral-subdued-background-color-hover" + + sets.darkest.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.darkest.value + + gray-300 + + sets.darkest.uuid + + 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5 + + "accent-background-color-hover" + + sets.darkest.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.darkest.value + + accent-color-500 + + sets.darkest.uuid + + 9e140a94-c11f-470b-b7af-49880e58d4ce + + + + 🆕 Deleted Properties (1) + + "accent-background-color-down" + + sets.definite-a-real-property.$schema + + "adobe link" + + sets.definite-a-real-property.value + + woohoo! + + sets.definite-a-real-property.uuid + + 7890 + + + + 🆕 Updated Properties (2) + + "neutral-background-color-selected-down" + + sets.express.value + + updated -> gray-900 + + "informative-background-color-hover" + + $schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/i-like-koalas.json" -> + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" + + sets.light.value + + some-value-was-changed -> informative-color-1000 \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-branches-added.txt b/tools/diff-generator/test/test-cli-outputs/expected-branches-added.txt new file mode 100644 index 00000000..fd79a227 --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-branches-added.txt @@ -0,0 +1,19 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + +**Tokens Changed (4)** + +shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests + +latest | latest +------------------------------------------------------------------------------------------- + + +🔼 Added (4) + + "i-like-dosas" + + "i-like-panang-curry" + + "i-like-fried-chicken" + + "i-like-frozen-yogurt" \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-branches-changes.txt b/tools/diff-generator/test/test-cli-outputs/expected-branches-changes.txt new file mode 100644 index 00000000..13efd909 --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-branches-changes.txt @@ -0,0 +1,122 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + + +**Tokens Changed (17)** + +shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests + +latest | latest +------------------------------------------------------------------------------------------- + + +📝 Renamed (3) + + "blue-600" -> "i-like-dim-sum" + + "red-400" -> "i-like-passion-fruit-green-tea" + + "table-selected-row-background-opacity-non-emphasized" -> "i-like-sushi" + + + +🕒 Newly Deprecated (3) + + "black-font-weight": "here is an another totally informative comment" + + "font-size-800": "this is totally not not deprecated" + + "informative-color-100": "here is a totally informative comment" + + + +🔼 Added (4) + + "i-like-dosas" + + "i-like-panang-curry" + + "i-like-fried-chicken" + + "i-like-frozen-yogurt" + + + +🔽 Deleted (2) + + "spacing-1000" + + "text-to-visual-100" + + + +🆕 Updated (5) + + 🆕 Added Properties (1) + + "accent-background-color-down" + + sets.definite-a-real-property.$schema + + "adobe link" + + sets.definite-a-real-property.value + + woohoo! + + sets.definite-a-real-property.uuid + + 7890 + + + + 🆕 Deleted Properties (2) + + "neutral-subdued-background-color-hover" + + sets.darkest.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.darkest.value + + gray-300 + + sets.darkest.uuid + + 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5 + + "accent-background-color-hover" + + sets.darkest.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.darkest.value + + accent-color-500 + + sets.darkest.uuid + + 9e140a94-c11f-470b-b7af-49880e58d4ce + + + + 🆕 Updated Properties (2) + + "neutral-background-color-selected-down" + + sets.express.value + + gray-900 -> updated + + "informative-background-color-hover" + + $schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" -> + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/i-like-koalas.json" + + sets.light.value + + informative-color-1000 -> some-value-was-changed \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-branches-deleted.txt b/tools/diff-generator/test/test-cli-outputs/expected-branches-deleted.txt new file mode 100644 index 00000000..3ee0c2b7 --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-branches-deleted.txt @@ -0,0 +1,15 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + +**Tokens Changed (2)** + +shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests + +latest | latest +------------------------------------------------------------------------------------------- + + +🔽 Deleted (2) + + "spacing-1000" + + "text-to-visual-100" \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-deleted-property-token.txt b/tools/diff-generator/test/test-cli-outputs/expected-deleted-property-token.txt new file mode 100644 index 00000000..3dcf0cd7 --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-deleted-property-token.txt @@ -0,0 +1,18 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + + +**Tokens Changed (1)** + +latest | latest +------------------------------------------------------------------------------------------- + + +🆕 Updated (1) + + 🆕 Deleted Properties (1) + + "overlay-opacity" + + sets.some-new-property.value + + 0.8 \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-deleted-property.txt b/tools/diff-generator/test/test-cli-outputs/expected-deleted-property.txt new file mode 100644 index 00000000..f2f576a1 --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-deleted-property.txt @@ -0,0 +1,27 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + +**Tokens Changed (1)** + +shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests + +latest | latest +------------------------------------------------------------------------------------------- + + +🆕 Updated (1) + + 🆕 Deleted Properties (1) + + "celery-background-color-default" + + sets.random-property.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.random-property.value + + spinach-100 + + sets.random-property.uuid + + 1234 \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-main-branch.txt b/tools/diff-generator/test/test-cli-outputs/expected-main-branch.txt new file mode 100644 index 00000000..09e8864b --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-main-branch.txt @@ -0,0 +1,8 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + +**Tokens Changed (0)** + +shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests + +latest | latest +------------------------------------------------------------------------------------------- \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-non-schema-property.txt b/tools/diff-generator/test/test-cli-outputs/expected-non-schema-property.txt new file mode 100644 index 00000000..1ec7ea2d --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-non-schema-property.txt @@ -0,0 +1,18 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + + +**Tokens Changed (1)** + +latest | latest +------------------------------------------------------------------------------------------- + + +🆕 Updated (1) + + 🆕 Added Properties (1) + + "overlay-opacity" + + sets.some-new-property.value + + 0.8 \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-release-branch-compare.txt b/tools/diff-generator/test/test-cli-outputs/expected-release-branch-compare.txt new file mode 100644 index 00000000..d1c5dc1e --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-release-branch-compare.txt @@ -0,0 +1,120 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + + +**Tokens Changed (17)** + +@adobe/spectrum-tokens@12.26.0 | shirlsli/file-import-tests +------------------------------------------------------------------------------------------- + + +📝 Renamed (3) + + "blue-600" -> "i-like-dim-sum" + + "red-400" -> "i-like-passion-fruit-green-tea" + + "table-selected-row-background-opacity-non-emphasized" -> "i-like-sushi" + + + +🕒 Newly Deprecated (3) + + "black-font-weight": "here is an another totally informative comment" + + "font-size-800": "this is totally not not deprecated" + + "informative-color-100": "here is a totally informative comment" + + + +🔼 Added (4) + + "i-like-dosas" + + "i-like-panang-curry" + + "i-like-fried-chicken" + + "i-like-frozen-yogurt" + + + +🔽 Deleted (2) + + "spacing-1000" + + "text-to-visual-100" + + + +🆕 Updated (5) + + 🆕 Added Properties (1) + + "accent-background-color-down" + + sets.definite-a-real-property.$schema + + "adobe link" + + sets.definite-a-real-property.value + + woohoo! + + sets.definite-a-real-property.uuid + + 7890 + + + + 🆕 Deleted Properties (2) + + "neutral-subdued-background-color-hover" + + sets.darkest.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.darkest.value + + gray-300 + + sets.darkest.uuid + + 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5 + + "accent-background-color-hover" + + sets.darkest.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.darkest.value + + accent-color-500 + + sets.darkest.uuid + + 9e140a94-c11f-470b-b7af-49880e58d4ce + + + + 🆕 Updated Properties (2) + + "neutral-background-color-selected-down" + + sets.express.value + + gray-900 -> updated + + "informative-background-color-hover" + + $schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json" -> + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/i-like-koalas.json" + + sets.light.value + + informative-color-1000 -> some-value-was-changed \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted-deprecated.txt b/tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted-deprecated.txt new file mode 100644 index 00000000..c84ad5af --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted-deprecated.txt @@ -0,0 +1,43 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + +**Tokens Changed (10)** + +shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests + +latest | latest +------------------------------------------------------------------------------------------- + + +📝 Renamed (2) + + "color-area-border-color" -> "i-like-ice-cream" + + "color-handle-inner-border-color" -> "i-like-char-siu" + + + +🕒 Newly Deprecated (2) + + "color-slider-border-color": "insert random deprecated comment" + + "color-loupe-outer-border": "insert random deprecated comment" + + + +🔼 Added (2) + + "i-like-pizza" + + "hi-how-are-you" + + + +🔽 Deleted (4) + + "floating-action-button-drop-shadow-color" + + "floating-action-button-shadow-color" + + "table-selected-row-background-opacity-non-emphasized" + + "table-selected-row-background-opacity-non-emphasized-hover" \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted.txt b/tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted.txt new file mode 100644 index 00000000..3e0bde2a --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-renamed-added-deleted.txt @@ -0,0 +1,25 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + +**Tokens Changed (3)** + +shirlsli/diff-generator-cli-tests | shirlsli/file-import-tests + +latest | latest +------------------------------------------------------------------------------------------- + + +📝 Renamed (1) + + "help-text-top-to-workflow-icon-medium" -> "i-like-lemon-coconut-muffins" + + + +🔼 Added (1) + + "gray-100" + + + +🔽 Deleted (1) + + "status-light-dot-size-extra-large" \ No newline at end of file diff --git a/tools/diff-generator/test/test-cli-outputs/expected-renamed-property-token.txt b/tools/diff-generator/test/test-cli-outputs/expected-renamed-property-token.txt new file mode 100644 index 00000000..16654176 --- /dev/null +++ b/tools/diff-generator/test/test-cli-outputs/expected-renamed-property-token.txt @@ -0,0 +1,48 @@ +WARNING: Will either be inaccurate or will throw an error if used for releases before @adobe/spectrum-tokens@12.26.0! + + +**Tokens Changed (3)** +------------------------------------------------------------------------------------------- + + +🆕 Updated (3) + + 🆕 Renamed Properties (1) + + "wireframe" -> "i-like-waffle-fries" + + + + 🆕 Added Properties (1) + + "celery-background-color-default" + + sets.added-property.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/some-property-type.json" + + sets.added-property.value + + celery-1100 + + sets.added-property.uuid + + 1234 + + + + 🆕 Deleted Properties (1) + + "celery-background-color-default" + + sets.darkest.$schema + + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json" + + sets.darkest.value + + celery-800 + + sets.darkest.uuid + + a9ab7a59-9cab-47fb-876d-6f0af93dc5df \ No newline at end of file diff --git a/tools/diff-generator/test/test-schemas/added-deleted-set-token-property.json b/tools/diff-generator/test/test-schemas/added-deleted-set-token-property.json new file mode 100644 index 00000000..9c6e01ba --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-deleted-set-token-property.json @@ -0,0 +1,28 @@ +{ + "celery-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-600}", + "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "uuid": "87f5b73a-19b1-40f7-991b-0d4b6bfc4a99" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-1100}", + "uuid": "3e44abd8-ea12-4c0a-9007-4a6edaa3b962" + }, + "fun-times": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fun}", + "uuid": "2345" + } + }, + "uuid": "2c159320-bf17-48b6-9d09-b2d037f937d1" + } +} diff --git a/tools/diff-generator/test/test-schemas/added-deprecated-token.json b/tools/diff-generator/test/test-schemas/added-deprecated-token.json new file mode 100644 index 00000000..6107c283 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-deprecated-token.json @@ -0,0 +1,43 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "i-like-mochi": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-800}", + "uuid": "4567" + }, + "focus-indicator-color": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-800}", + "uuid": "fe914904-a368-414b-a4ac-21c0b0340d05" + }, + "i-like-burgers": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-800}", + "uuid": "1234" + } +} diff --git a/tools/diff-generator/test/test-schemas/added-inner-value-token.json b/tools/diff-generator/test/test-schemas/added-inner-value-token.json new file mode 100644 index 00000000..74a8639e --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-inner-value-token.json @@ -0,0 +1,24 @@ +{ + "celery-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-600}", + "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "new-property": "this is a new property", + "uuid": "87f5b73a-19b1-40f7-991b-0d4b6bfc4a99" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-1100}", + "uuid": "3e44abd8-ea12-4c0a-9007-4a6edaa3b962" + } + }, + "uuid": "2c159320-bf17-48b6-9d09-b2d037f937d1" + } +} diff --git a/tools/diff-generator/test/test-schemas/added-non-schema-property-token.json b/tools/diff-generator/test/test-schemas/added-non-schema-property-token.json new file mode 100644 index 00000000..95cb4f38 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-non-schema-property-token.json @@ -0,0 +1,31 @@ +{ + "overlay-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.5", + "uuid": "df41eb51-872f-458d-9439-910064f74b7b" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.6", + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "93b904da-5d1f-4fd9-aa26-5aabe19df108" + }, + "some-new-property": { + "value": "0.8" + } + }, + "uuid": "bc377afe-9055-45f9-8906-9f83ee07dada" + } +} diff --git a/tools/diff-generator/test/test-schemas/added-property-set-token.json b/tools/diff-generator/test/test-schemas/added-property-set-token.json new file mode 100644 index 00000000..4aa87e10 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-property-set-token.json @@ -0,0 +1,33 @@ +{ + "celery-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-600}", + "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "uuid": "87f5b73a-19b1-40f7-991b-0d4b6bfc4a99" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-1100}", + "uuid": "3e44abd8-ea12-4c0a-9007-4a6edaa3b962" + }, + "random-property": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spinach-100}", + "uuid": "1234" + } + }, + "uuid": "2c159320-bf17-48b6-9d09-b2d037f937d1" + } +} diff --git a/tools/diff-generator/test/test-schemas/added-renamed-tokens.json b/tools/diff-generator/test/test-schemas/added-renamed-tokens.json new file mode 100644 index 00000000..d4e989d6 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-renamed-tokens.json @@ -0,0 +1,273 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "swatch-disabled-icon-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" + }, + "thumbnail-border-color": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" + }, + "thumbnail-border-opacity": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" + }, + "thumbnail-opacity-disabled": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" + }, + "opacity-checkerboard-square-light": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" + }, + "opacity-checkerboard-square-dark": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "f783b8cb-d31f-46c2-b550-990639752510" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" + } + }, + "uuid": "0b807f40-d63e-4482-8d53-18fadc9663d5" + }, + "avatar-opacity-disabled": { + "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" + }, + "i-like-ice-cream": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" + }, + "color-area-border-opacity": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" + }, + "color-slider-border-color": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" + }, + "color-slider-border-opacity": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" + }, + "color-loupe-drop-shadow-color": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + }, + "color-loupe-inner-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-200}", + "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" + }, + "color-loupe-outer-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" + }, + "card-selection-background-color": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" + }, + "card-selection-background-color-opacity": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.95", + "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" + }, + "drop-zone-background-color": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{accent-visual-color}", + "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" + }, + "drop-zone-background-color-opacity": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" + }, + "drop-zone-background-color-opacity-filled": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.3", + "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" + }, + "coach-mark-pagination-color": { + "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-600}", + "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" + }, + "color-handle-inner-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" + }, + "color-handle-inner-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" + }, + "color-handle-outer-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" + }, + "color-handle-outer-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{color-handle-inner-border-opacity}", + "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" + }, + "color-handle-drop-shadow-color": { + "component": "color-handle", + "deprecated": true, + "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" + }, + "floating-action-button-drop-shadow-color": { + "component": "floating-action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "d66d3a56-1ba0-4ce7-a263-eb46a4d17af0" + }, + "floating-action-button-shadow-color": { + "component": "floating-action-button", + "deprecated": true, + "deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{floating-action-button-drop-shadow-color}", + "uuid": "f843b1b7-4b2f-496e-a679-b0372e49d575" + }, + "table-row-hover-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" + }, + "table-row-hover-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" + }, + "table-selected-row-background-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" + }, + "table-selected-row-background-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" + }, + "table-selected-row-background-color-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-background-color-selected-default}", + "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" + }, + "table-selected-row-background-opacity-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "1ef41e27-3dea-4589-ad7a-140a03a77384" + }, + "table-row-down-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "75ae742c-e96e-494f-9880-746bb2849575" + }, + "table-selected-row-background-opacity-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" + }, + "table-selected-row-background-opacity-non-emphasized-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" + }, + "i-like-pizza": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "1234" + }, + "hi-how-are-you": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "234" + } +} diff --git a/tools/diff-generator/test/test-schemas/added-set-token.json b/tools/diff-generator/test/test-schemas/added-set-token.json new file mode 100644 index 00000000..eadd4996 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-set-token.json @@ -0,0 +1,45 @@ +{ + "overlay-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.5", + "uuid": "df41eb51-872f-458d-9439-910064f74b7b" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.6", + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "93b904da-5d1f-4fd9-aa26-5aabe19df108" + } + }, + "uuid": "bc377afe-9055-45f9-8906-9f83ee07dada" + }, + "help-text-top-to-workflow-icon-medium": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/changing-two-schemas.json", + "value": "3px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + } +} diff --git a/tools/diff-generator/test/test-schemas/added-set-tokens-out-of-order.json b/tools/diff-generator/test/test-schemas/added-set-tokens-out-of-order.json new file mode 100644 index 00000000..01e07447 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/added-set-tokens-out-of-order.json @@ -0,0 +1,87 @@ +{ + "background-layer-2-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-50}", + "uuid": "b7b2bf98-b96a-40ca-b51e-5876d3418085" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "dd462fc7-bd79-4b52-9411-adf317832989" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-50}", + "uuid": "6556a64d-5944-4d65-a6cc-9c6121044ac7" + } + } + }, + "overlay-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.5", + "uuid": "df41eb51-872f-458d-9439-910064f74b7b" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.6", + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "93b904da-5d1f-4fd9-aa26-5aabe19df108" + } + }, + "uuid": "bc377afe-9055-45f9-8906-9f83ee07dada" + }, + "help-text-top-to-workflow-icon-medium": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/changing-two-schemas.json", + "value": "3px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + }, + "neutral-background-color-selected-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/system-set.json", + "sets": { + "spectrum": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-700}", + "uuid": "fd1c9f2b-8358-4bd3-a5cc-d211673428bc" + }, + "express": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "deprecated": true, + "deprecated_comment": "Express will merge with Spectrum with the release of Spectrum 2.", + "uuid": "60caae29-d389-421e-a574-b26bcaeed3bf" + } + } + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-multiple-updated-token.json b/tools/diff-generator/test/test-schemas/basic-multiple-updated-token.json new file mode 100644 index 00000000..035231b2 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-multiple-updated-token.json @@ -0,0 +1,8 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "{blue-200}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-original-token.json b/tools/diff-generator/test/test-schemas/basic-original-token.json new file mode 100644 index 00000000..a8c3ad3e --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-original-token.json @@ -0,0 +1,8 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-renamed-set-token.json b/tools/diff-generator/test/test-schemas/basic-renamed-set-token.json new file mode 100644 index 00000000..718cf9ef --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-renamed-set-token.json @@ -0,0 +1,28 @@ +{ + "i-like-lavendar-latte": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.5", + "uuid": "df41eb51-872f-458d-9439-910064f74b7b" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.6", + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "93b904da-5d1f-4fd9-aa26-5aabe19df108" + } + }, + "uuid": "bc377afe-9055-45f9-8906-9f83ee07dada" + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-renamed-token.json b/tools/diff-generator/test/test-schemas/basic-renamed-token.json new file mode 100644 index 00000000..e56e6bae --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-renamed-token.json @@ -0,0 +1,8 @@ +{ + "hello-world": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-set-token-property.json b/tools/diff-generator/test/test-schemas/basic-set-token-property.json new file mode 100644 index 00000000..877b64ee --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-set-token-property.json @@ -0,0 +1,28 @@ +{ + "celery-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-600}", + "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "uuid": "87f5b73a-19b1-40f7-991b-0d4b6bfc4a99" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-1100}", + "uuid": "3e44abd8-ea12-4c0a-9007-4a6edaa3b962" + } + }, + "uuid": "2c159320-bf17-48b6-9d09-b2d037f937d1" + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-set-token.json b/tools/diff-generator/test/test-schemas/basic-set-token.json new file mode 100644 index 00000000..e185af35 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-set-token.json @@ -0,0 +1,28 @@ +{ + "overlay-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.5", + "uuid": "df41eb51-872f-458d-9439-910064f74b7b" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.6", + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.4", + "uuid": "93b904da-5d1f-4fd9-aa26-5aabe19df108" + } + }, + "uuid": "bc377afe-9055-45f9-8906-9f83ee07dada" + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-updated-set-token.json b/tools/diff-generator/test/test-schemas/basic-updated-set-token.json new file mode 100644 index 00000000..e6f23de5 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-updated-set-token.json @@ -0,0 +1,28 @@ +{ + "overlay-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "0.4", + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.5", + "uuid": "df41eb51-872f-458d-9439-910064f74b7b" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.8", + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/wireframe.json", + "value": "0", + "uuid": "93b904da-5d1f-4fd9-aa26-5aabe19df108" + } + }, + "uuid": "bc377afe-9055-45f9-8906-9f83ee07dada" + } +} diff --git a/tools/diff-generator/test/test-schemas/basic-updated-token.json b/tools/diff-generator/test/test-schemas/basic-updated-token.json new file mode 100644 index 00000000..41fb7972 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/basic-updated-token.json @@ -0,0 +1,8 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-200}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + } +} diff --git a/tools/diff-generator/test/test-schemas/deleted-set-token.json b/tools/diff-generator/test/test-schemas/deleted-set-token.json new file mode 100644 index 00000000..e7b3d1ad --- /dev/null +++ b/tools/diff-generator/test/test-schemas/deleted-set-token.json @@ -0,0 +1,36 @@ +{ + "help-text-top-to-workflow-icon-medium": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + }, + "status-light-top-to-dot-large": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" + } + }, + "uuid": "abebffcd-877a-40ed-b538-10928353d74e" + } +} diff --git a/tools/diff-generator/test/test-schemas/deleted-set-tokens.json b/tools/diff-generator/test/test-schemas/deleted-set-tokens.json new file mode 100644 index 00000000..84a7ce22 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/deleted-set-tokens.json @@ -0,0 +1,19 @@ +{ + "status-light-top-to-dot-large": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" + } + }, + "uuid": "abebffcd-877a-40ed-b538-10928353d74e" + } +} diff --git a/tools/diff-generator/test/test-schemas/deprecated-token.json b/tools/diff-generator/test/test-schemas/deprecated-token.json new file mode 100644 index 00000000..c861002f --- /dev/null +++ b/tools/diff-generator/test/test-schemas/deprecated-token.json @@ -0,0 +1,10 @@ +{ + "swatch-border-color": { + "component": "swatch", + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + } +} diff --git a/tools/diff-generator/test/test-schemas/entire-schema-renamed.json b/tools/diff-generator/test/test-schemas/entire-schema-renamed.json new file mode 100644 index 00000000..c3443984 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/entire-schema-renamed.json @@ -0,0 +1,261 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "swatch-disabled-icon-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" + }, + "thumbnail-border-color": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" + }, + "thumbnail-border-opacity": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" + }, + "thumbnail-opacity-disabled": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" + }, + "opacity-checkerboard-square-light": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" + }, + "opacity-checkerboard-square-dark": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "f783b8cb-d31f-46c2-b550-990639752510" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" + } + }, + "uuid": "0b807f40-d63e-4482-8d53-18fadc9663d5" + }, + "avatar-opacity-disabled": { + "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" + }, + "color-area-border-color": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" + }, + "color-area-border-opacity": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" + }, + "color-slider-border-color": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" + }, + "color-slider-border-opacity": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" + }, + "color-loupe-drop-shadow-color": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + }, + "color-loupe-inner-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-200}", + "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" + }, + "color-loupe-outer-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" + }, + "card-selection-background-color": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" + }, + "card-selection-background-color-opacity": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.95", + "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" + }, + "drop-zone-background-color": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{accent-visual-color}", + "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" + }, + "drop-zone-background-color-opacity": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" + }, + "drop-zone-background-color-opacity-filled": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.3", + "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" + }, + "coach-mark-pagination-color": { + "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-600}", + "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" + }, + "color-handle-inner-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" + }, + "color-handle-inner-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" + }, + "color-handle-outer-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" + }, + "color-handle-outer-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{color-handle-inner-border-opacity}", + "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" + }, + "color-handle-drop-shadow-color": { + "component": "color-handle", + "deprecated": true, + "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" + }, + "floating-action-button-drop-shadow-color": { + "component": "floating-action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "d66d3a56-1ba0-4ce7-a263-eb46a4d17af0" + }, + "floating-action-button-shadow-color": { + "component": "floating-action-button", + "deprecated": true, + "deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{floating-action-button-drop-shadow-color}", + "uuid": "f843b1b7-4b2f-496e-a679-b0372e49d575" + }, + "table-col-hover-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" + }, + "table-col-hover-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" + }, + "table-selected-row-background-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" + }, + "table-selected-row-background-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" + }, + "table-selected-row-background-color-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-background-color-selected-default}", + "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" + }, + "table-selected-row-background-opacity-definitely-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "1ef41e27-3dea-4589-ad7a-140a03a77384" + }, + "table-row-down-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "75ae742c-e96e-494f-9880-746bb2849575" + }, + "table-selected-row-background-opacity-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" + }, + "table-selected-row-background-opacity-ultra-emphasized-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" + } +} diff --git a/tools/diff-generator/test/test-schemas/entire-schema.json b/tools/diff-generator/test/test-schemas/entire-schema.json new file mode 100644 index 00000000..900db638 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/entire-schema.json @@ -0,0 +1,261 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "swatch-disabled-icon-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" + }, + "thumbnail-border-color": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" + }, + "thumbnail-border-opacity": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" + }, + "thumbnail-opacity-disabled": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" + }, + "opacity-checkerboard-square-light": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" + }, + "opacity-checkerboard-square-dark": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "f783b8cb-d31f-46c2-b550-990639752510" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" + } + }, + "uuid": "0b807f40-d63e-4482-8d53-18fadc9663d5" + }, + "avatar-opacity-disabled": { + "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" + }, + "color-area-border-color": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" + }, + "color-area-border-opacity": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" + }, + "color-slider-border-color": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" + }, + "color-slider-border-opacity": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" + }, + "color-loupe-drop-shadow-color": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + }, + "color-loupe-inner-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-200}", + "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" + }, + "color-loupe-outer-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" + }, + "card-selection-background-color": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" + }, + "card-selection-background-color-opacity": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.95", + "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" + }, + "drop-zone-background-color": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{accent-visual-color}", + "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" + }, + "drop-zone-background-color-opacity": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" + }, + "drop-zone-background-color-opacity-filled": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.3", + "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" + }, + "coach-mark-pagination-color": { + "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-600}", + "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" + }, + "color-handle-inner-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" + }, + "color-handle-inner-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" + }, + "color-handle-outer-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" + }, + "color-handle-outer-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{color-handle-inner-border-opacity}", + "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" + }, + "color-handle-drop-shadow-color": { + "component": "color-handle", + "deprecated": true, + "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" + }, + "floating-action-button-drop-shadow-color": { + "component": "floating-action-button", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "d66d3a56-1ba0-4ce7-a263-eb46a4d17af0" + }, + "floating-action-button-shadow-color": { + "component": "floating-action-button", + "deprecated": true, + "deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{floating-action-button-drop-shadow-color}", + "uuid": "f843b1b7-4b2f-496e-a679-b0372e49d575" + }, + "table-row-hover-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" + }, + "table-row-hover-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" + }, + "table-selected-row-background-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" + }, + "table-selected-row-background-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" + }, + "table-selected-row-background-color-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-background-color-selected-default}", + "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" + }, + "table-selected-row-background-opacity-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "1ef41e27-3dea-4589-ad7a-140a03a77384" + }, + "table-row-down-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "75ae742c-e96e-494f-9880-746bb2849575" + }, + "table-selected-row-background-opacity-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" + }, + "table-selected-row-background-opacity-non-emphasized-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" + } +} diff --git a/tools/diff-generator/test/test-schemas/inner-key-added-token.json b/tools/diff-generator/test/test-schemas/inner-key-added-token.json new file mode 100644 index 00000000..2dc7ebf5 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/inner-key-added-token.json @@ -0,0 +1,23 @@ +{ + "workflow-icon-size-50": { + "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "1423caf1-75ca-4ca8-aa6a-22dcf3655b0e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "4c4cb541-7d42-4bb4-9c86-7197c4600896" + }, + "pink": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "1234" + } + } + } +} diff --git a/tools/diff-generator/test/test-schemas/inner-key-tokens.json b/tools/diff-generator/test/test-schemas/inner-key-tokens.json new file mode 100644 index 00000000..9b660cff --- /dev/null +++ b/tools/diff-generator/test/test-schemas/inner-key-tokens.json @@ -0,0 +1,18 @@ +{ + "workflow-icon-size-50": { + "component": "icon", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "14px", + "uuid": "1423caf1-75ca-4ca8-aa6a-22dcf3655b0e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "4c4cb541-7d42-4bb4-9c86-7197c4600896" + } + } + } +} diff --git a/tools/diff-generator/test/test-schemas/new-token.json b/tools/diff-generator/test/test-schemas/new-token.json new file mode 100644 index 00000000..f2370348 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/new-token.json @@ -0,0 +1,14 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + } +} diff --git a/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-tokens.json b/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-tokens.json new file mode 100644 index 00000000..f9adfbf7 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-tokens.json @@ -0,0 +1,251 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "swatch-disabled-icon-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" + }, + "thumbnail-border-color": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" + }, + "thumbnail-border-opacity": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" + }, + "thumbnail-opacity-disabled": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" + }, + "opacity-checkerboard-square-light": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" + }, + "opacity-checkerboard-square-dark": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "f783b8cb-d31f-46c2-b550-990639752510" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" + } + }, + "uuid": "0b807f40-d63e-4482-8d53-18fadc9663d5" + }, + "avatar-opacity-disabled": { + "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" + }, + "i-like-ice-cream": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" + }, + "color-area-border-opacity": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" + }, + "color-slider-border-color": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" + }, + "color-slider-border-opacity": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" + }, + "color-loupe-drop-shadow-color": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + }, + "color-loupe-inner-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-200}", + "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" + }, + "color-loupe-outer-border": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" + }, + "card-selection-background-color": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" + }, + "card-selection-background-color-opacity": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.95", + "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" + }, + "drop-zone-background-color": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{accent-visual-color}", + "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" + }, + "drop-zone-background-color-opacity": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" + }, + "drop-zone-background-color-opacity-filled": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.3", + "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" + }, + "coach-mark-pagination-color": { + "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-600}", + "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" + }, + "i-like-char-siu": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" + }, + "color-handle-inner-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" + }, + "color-handle-outer-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" + }, + "color-handle-outer-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{color-handle-inner-border-opacity}", + "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" + }, + "color-handle-drop-shadow-color": { + "component": "color-handle", + "deprecated": true, + "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" + }, + "table-row-hover-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" + }, + "table-row-hover-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" + }, + "table-selected-row-background-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" + }, + "table-selected-row-background-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" + }, + "table-selected-row-background-color-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-background-color-selected-default}", + "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" + }, + "table-row-down-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "75ae742c-e96e-494f-9880-746bb2849575" + }, + "table-selected-row-background-opacity-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" + }, + "i-like-pizza": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "1234" + }, + "hi-how-are-you": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "234" + } +} diff --git a/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-reverted-tokens.json b/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-reverted-tokens.json new file mode 100644 index 00000000..e10f55bc --- /dev/null +++ b/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-reverted-tokens.json @@ -0,0 +1,249 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "swatch-disabled-icon-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" + }, + "thumbnail-border-color": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/not-a-thumbnail.json", + "value": "{gray-800}", + "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" + }, + "thumbnail-border-opacity": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" + }, + "thumbnail-opacity-disabled": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" + }, + "opacity-checkerboard-square-light": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" + }, + "opacity-checkerboard-square-dark": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-500}", + "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "f783b8cb-d31f-46c2-b550-990639752510" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" + } + }, + "uuid": "0b807f40-d63e-4482-8d53-18fadc9663d5" + }, + "avatar-opacity-disabled": { + "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" + }, + "i-like-ice-cream": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" + }, + "color-area-border-opacity": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" + }, + "color-slider-border-color": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" + }, + "color-slider-border-opacity": { + "component": "not-a-color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" + }, + "color-loupe-drop-shadow-color": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + }, + "color-loupe-inner-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-200}", + "uuid": "if a uuid ever change lol" + }, + "color-loupe-outer-border": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" + }, + "card-selection-background-color": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" + }, + "card-selection-background-color-opacity": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.95", + "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" + }, + "drop-zone-background-color": { + "component": "woohoo!", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fushcia pink}", + "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" + }, + "drop-zone-background-color-opacity": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" + }, + "drop-zone-background-color-opacity-filled": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.3", + "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" + }, + "coach-mark-pagination-color": { + "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-600}", + "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" + }, + "i-like-char-siu": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" + }, + "color-handle-inner-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" + }, + "color-handle-outer-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" + }, + "color-handle-outer-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{color-handle-inner-border-opacity}", + "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" + }, + "color-handle-drop-shadow-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" + }, + "table-row-hover-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" + }, + "table-row-hover-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" + }, + "table-selected-row-background-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" + }, + "table-selected-row-background-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" + }, + "table-selected-row-background-color-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-background-color-selected-default}", + "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" + }, + "table-row-down-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "75ae742c-e96e-494f-9880-746bb2849575" + }, + "table-selected-row-background-opacity-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" + }, + "i-like-pizza": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "1234" + }, + "hi-how-are-you": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "234" + } +} diff --git a/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-tokens.json b/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-tokens.json new file mode 100644 index 00000000..daeb917b --- /dev/null +++ b/tools/diff-generator/test/test-schemas/renamed-added-deleted-deprecated-updated-tokens.json @@ -0,0 +1,251 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "swatch-disabled-icon-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" + }, + "thumbnail-border-color": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/not-a-thumbnail.json", + "value": "{gray-800}", + "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" + }, + "thumbnail-border-opacity": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" + }, + "thumbnail-opacity-disabled": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" + }, + "opacity-checkerboard-square-light": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" + }, + "opacity-checkerboard-square-dark": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-500}", + "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "f783b8cb-d31f-46c2-b550-990639752510" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" + } + }, + "uuid": "0b807f40-d63e-4482-8d53-18fadc9663d5" + }, + "avatar-opacity-disabled": { + "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" + }, + "i-like-ice-cream": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" + }, + "color-area-border-opacity": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" + }, + "color-slider-border-color": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" + }, + "color-slider-border-opacity": { + "component": "not-a-color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" + }, + "color-loupe-drop-shadow-color": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + }, + "color-loupe-inner-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-200}", + "uuid": "if a uuid ever change lol" + }, + "color-loupe-outer-border": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" + }, + "card-selection-background-color": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" + }, + "card-selection-background-color-opacity": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.95", + "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" + }, + "drop-zone-background-color": { + "component": "woohoo!", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fushcia pink}", + "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" + }, + "drop-zone-background-color-opacity": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" + }, + "drop-zone-background-color-opacity-filled": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.3", + "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" + }, + "coach-mark-pagination-color": { + "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-600}", + "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" + }, + "i-like-char-siu": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" + }, + "color-handle-inner-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" + }, + "color-handle-outer-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" + }, + "color-handle-outer-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{color-handle-inner-border-opacity}", + "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" + }, + "color-handle-drop-shadow-color": { + "component": "color-handle", + "deprecated": true, + "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" + }, + "table-row-hover-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" + }, + "table-row-hover-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" + }, + "table-selected-row-background-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" + }, + "table-selected-row-background-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" + }, + "table-selected-row-background-color-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-background-color-selected-default}", + "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" + }, + "table-row-down-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "75ae742c-e96e-494f-9880-746bb2849575" + }, + "table-selected-row-background-opacity-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" + }, + "i-like-pizza": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "1234" + }, + "hi-how-are-you": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "234" + } +} diff --git a/tools/diff-generator/test/test-schemas/renamed-added-deleted-property-set-token.json b/tools/diff-generator/test/test-schemas/renamed-added-deleted-property-set-token.json new file mode 100644 index 00000000..2567ba9a --- /dev/null +++ b/tools/diff-generator/test/test-schemas/renamed-added-deleted-property-set-token.json @@ -0,0 +1,28 @@ +{ + "celery-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-600}", + "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-800}", + "uuid": "87f5b73a-19b1-40f7-991b-0d4b6bfc4a99" + }, + "i-like-waffle-fries": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-1100}", + "uuid": "3e44abd8-ea12-4c0a-9007-4a6edaa3b962" + }, + "added-property": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/some-property-type.json", + "value": "{celery-1100}", + "uuid": "1234" + } + }, + "uuid": "2c159320-bf17-48b6-9d09-b2d037f937d1" + } +} diff --git a/tools/diff-generator/test/test-schemas/renamed-added-deleted-set-tokens.json b/tools/diff-generator/test/test-schemas/renamed-added-deleted-set-tokens.json new file mode 100644 index 00000000..3e713625 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/renamed-added-deleted-set-tokens.json @@ -0,0 +1,63 @@ +{ + "i-like-lemon-coconut-muffins": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + }, + "gray-100": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(248, 248, 248)", + "uuid": "64e2dbc2-05fa-43d7-80ae-d4d11c55348f" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(50, 50, 50)", + "uuid": "4500355e-ce60-4046-b692-71301b6b1348" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(29, 29, 29)", + "uuid": "abd011c4-87a5-4b1f-82e2-e94d118f417f" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(244, 246, 252)", + "uuid": "3605974e-8f93-4907-81b3-fb6ab55d03f8" + } + }, + "private": true, + "uuid": "55a0effe-1758-4b2f-908c-d36e460880b8" + }, + "status-light-top-to-dot-large": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" + } + }, + "uuid": "abebffcd-877a-40ed-b538-10928353d74e" + } +} diff --git a/tools/diff-generator/test/test-schemas/renamed-added-deleted-tokens.json b/tools/diff-generator/test/test-schemas/renamed-added-deleted-tokens.json new file mode 100644 index 00000000..32a59496 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/renamed-added-deleted-tokens.json @@ -0,0 +1,247 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "swatch-disabled-icon-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" + }, + "thumbnail-border-color": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" + }, + "thumbnail-border-opacity": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" + }, + "thumbnail-opacity-disabled": { + "component": "thumbnail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" + }, + "opacity-checkerboard-square-light": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" + }, + "opacity-checkerboard-square-dark": { + "component": "opacity-checkerboard", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba" + }, + "darkest": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "f783b8cb-d31f-46c2-b550-990639752510" + }, + "wireframe": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "e7fe88a4-6ab3-4963-8f10-9908a5a83123" + } + }, + "uuid": "0b807f40-d63e-4482-8d53-18fadc9663d5" + }, + "avatar-opacity-disabled": { + "component": "avatar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{opacity-disabled}", + "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" + }, + "i-like-ice-cream": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" + }, + "color-area-border-opacity": { + "component": "color-area", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" + }, + "color-slider-border-color": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" + }, + "color-slider-border-opacity": { + "component": "color-slider", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" + }, + "color-loupe-drop-shadow-color": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-300}", + "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9" + }, + "color-loupe-inner-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-black-200}", + "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" + }, + "color-loupe-outer-border": { + "component": "color-loupe", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" + }, + "card-selection-background-color": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" + }, + "card-selection-background-color-opacity": { + "component": "cards", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.95", + "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" + }, + "drop-zone-background-color": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{accent-visual-color}", + "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" + }, + "drop-zone-background-color-opacity": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" + }, + "drop-zone-background-color-opacity-filled": { + "component": "drop-zone", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.3", + "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" + }, + "coach-mark-pagination-color": { + "component": "coach-mark", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-600}", + "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" + }, + "i-like-char-siu": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" + }, + "color-handle-inner-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" + }, + "color-handle-outer-border-color": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" + }, + "color-handle-outer-border-opacity": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{color-handle-inner-border-opacity}", + "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" + }, + "color-handle-drop-shadow-color": { + "component": "color-handle", + "deprecated": true, + "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{drop-shadow-color}", + "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" + }, + "table-row-hover-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" + }, + "table-row-hover-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" + }, + "table-selected-row-background-color": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" + }, + "table-selected-row-background-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" + }, + "table-selected-row-background-color-non-emphasized": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{neutral-background-color-selected-default}", + "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" + }, + "table-row-down-opacity": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "75ae742c-e96e-494f-9880-746bb2849575" + }, + "table-selected-row-background-opacity-hover": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" + }, + "i-like-pizza": { + "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.07", + "uuid": "1234" + }, + "hi-how-are-you": { + "component": "color-handle", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.42", + "uuid": "234" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-added-tokens.json b/tools/diff-generator/test/test-schemas/several-added-tokens.json new file mode 100644 index 00000000..072aefeb --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-added-tokens.json @@ -0,0 +1,40 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "focus-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-800}", + "uuid": "fe914904-a368-414b-a4ac-21c0b0340d05" + }, + "static-white-focus-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{white}", + "uuid": "1dd6dc5b-47a2-41eb-80fc-f06293ae8e13" + }, + "static-black-focus-indicator-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c6b8275b-f44e-43b4-b763-82dda94d963c" + }, + "overlay-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "af66daa6-9e52-4e68-a605-86d1de4ee971" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-deprecated-tokens.json b/tools/diff-generator/test/test-schemas/several-deprecated-tokens.json new file mode 100644 index 00000000..d165b3a7 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-deprecated-tokens.json @@ -0,0 +1,29 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "focus-indicator-color": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-800}", + "uuid": "fe914904-a368-414b-a4ac-21c0b0340d05" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-original-tokens.json b/tools/diff-generator/test/test-schemas/several-original-tokens.json new file mode 100644 index 00000000..984b037d --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-original-tokens.json @@ -0,0 +1,20 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-border-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-renamed-deprecated-tokens.json b/tools/diff-generator/test/test-schemas/several-renamed-deprecated-tokens.json new file mode 100644 index 00000000..04c08507 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-renamed-deprecated-tokens.json @@ -0,0 +1,29 @@ +{ + "swatch-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "i-like-matcha-lattes": { + "component": "swatch", + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "i-like-cookies": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + }, + "focus-indicator-color": { + "deprecated": true, + "deprecated_comment": "insert random deprecated comment", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-800}", + "uuid": "fe914904-a368-414b-a4ac-21c0b0340d05" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-renamed-set-tokens.json b/tools/diff-generator/test/test-schemas/several-renamed-set-tokens.json new file mode 100644 index 00000000..717c8f10 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-renamed-set-tokens.json @@ -0,0 +1,53 @@ +{ + "help-text-top-to-workflow-icon-medium": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + }, + "i-like-fish-tacos": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" + } + }, + "uuid": "c1561e03-afdd-4c60-ba43-9c850aefd20a" + }, + "i-like-scrambled-eggs": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" + } + }, + "uuid": "abebffcd-877a-40ed-b538-10928353d74e" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-renamed-tokens.json b/tools/diff-generator/test/test-schemas/several-renamed-tokens.json new file mode 100644 index 00000000..7b0a653c --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-renamed-tokens.json @@ -0,0 +1,20 @@ +{ + "swatch-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-900}", + "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" + }, + "swatch-opacity": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.51", + "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" + }, + "swatch-disabled-icon-border-color": { + "component": "swatch", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{black}", + "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-renamed-updated-set-tokens.json b/tools/diff-generator/test/test-schemas/several-renamed-updated-set-tokens.json new file mode 100644 index 00000000..4e7a45fb --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-renamed-updated-set-tokens.json @@ -0,0 +1,53 @@ +{ + "help-text-top-to-workflow-icon-medium": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + }, + "i-like-fish-tacos": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scaly-fish.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" + } + }, + "uuid": "c1561e03-afdd-4c60-ba43-9c850aefd20a" + }, + "i-like-scrambled-eggs": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" + } + }, + "uuid": "abebffcd-877a-40ed-b538-10928353d74e" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-set-tokens.json b/tools/diff-generator/test/test-schemas/several-set-tokens.json new file mode 100644 index 00000000..06d8b240 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-set-tokens.json @@ -0,0 +1,53 @@ +{ + "help-text-top-to-workflow-icon-medium": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + }, + "status-light-dot-size-extra-large": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" + } + }, + "uuid": "c1561e03-afdd-4c60-ba43-9c850aefd20a" + }, + "status-light-top-to-dot-large": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" + } + }, + "uuid": "abebffcd-877a-40ed-b538-10928353d74e" + } +} diff --git a/tools/diff-generator/test/test-schemas/several-updated-set-tokens.json b/tools/diff-generator/test/test-schemas/several-updated-set-tokens.json new file mode 100644 index 00000000..3f8a38d8 --- /dev/null +++ b/tools/diff-generator/test/test-schemas/several-updated-set-tokens.json @@ -0,0 +1,53 @@ +{ + "help-text-top-to-workflow-icon-medium": { + "component": "help-text", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/changing-two-schemas.json", + "value": "3px", + "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52" + } + }, + "uuid": "86ac0bd3-7ea6-4f80-9c73-c0c77616f246" + }, + "status-light-dot-size-extra-large": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" + } + }, + "uuid": "c1561e03-afdd-4c60-ba43-9c850aefd20a" + }, + "status-light-top-to-dot-large": { + "component": "status-light", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" + } + }, + "uuid": "abebffcd-877a-40ed-b538-10928353d74e" + } +} diff --git a/tools/diff-generator/test/tokenDiff.test.js b/tools/diff-generator/test/tokenDiff.test.js new file mode 100644 index 00000000..2b540984 --- /dev/null +++ b/tools/diff-generator/test/tokenDiff.test.js @@ -0,0 +1,564 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import tokenDiff from "../src/lib/index.js"; +import basicToken from "./test-schemas/basic-original-token.json" with { type: "json" }; +import basicRenamedToken from "./test-schemas/basic-renamed-token.json" with { type: "json" }; +import originalEntireSchema from "./test-schemas/entire-schema.json" with { type: "json" }; +import addedRenamedTokens from "./test-schemas/added-renamed-tokens.json" with { type: "json" }; +import renamedAddedDeletedTokens from "./test-schemas/renamed-added-deleted-tokens.json" with { type: "json" }; +import severalSetTokens from "./test-schemas/several-set-tokens.json" with { type: "json" }; +import renamedAddedDeletedSetTokens from "./test-schemas/renamed-added-deleted-set-tokens.json" with { type: "json" }; +import rADDepTokens from "./test-schemas/renamed-added-deleted-deprecated-tokens.json" with { type: "json" }; +import rADDepUTokens from "./test-schemas/renamed-added-deleted-deprecated-updated-tokens.json" with { type: "json" }; +import rADDepURevTokens from "./test-schemas/renamed-added-deleted-deprecated-updated-reverted-tokens.json" with { type: "json" }; +import basicSetTokenProperty from "./test-schemas/basic-set-token-property.json" with { type: "json" }; +import addedPropertySetToken from "./test-schemas/added-property-set-token.json" with { type: "json" }; + +const expectedRenamed = { + added: {}, + deleted: {}, + deprecated: {}, + reverted: {}, + renamed: { + "hello-world": { + "old-name": "swatch-border-color", + }, + }, + updated: { + added: {}, + deleted: {}, + renamed: {}, + updated: {}, + }, +}; + +const expectedManyAddedRenamed = { + added: { + "i-like-pizza": { + component: "table", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.07", + uuid: "1234", + }, + "hi-how-are-you": { + component: "color-handle", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.42", + uuid: "234", + }, + }, + deleted: {}, + deprecated: {}, + reverted: {}, + renamed: { + "i-like-ice-cream": { + "old-name": "color-area-border-color", + }, + }, + updated: { + added: {}, + deleted: {}, + renamed: {}, + updated: {}, + }, +}; + +const expectedRenamedAddedDeleted = { + added: { + "gray-100": { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + sets: { + light: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + value: "rgb(248, 248, 248)", + uuid: "64e2dbc2-05fa-43d7-80ae-d4d11c55348f", + }, + dark: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + value: "rgb(50, 50, 50)", + uuid: "4500355e-ce60-4046-b692-71301b6b1348", + }, + darkest: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + value: "rgb(29, 29, 29)", + uuid: "abd011c4-87a5-4b1f-82e2-e94d118f417f", + }, + wireframe: { + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + value: "rgb(244, 246, 252)", + uuid: "3605974e-8f93-4907-81b3-fb6ab55d03f8", + }, + }, + private: true, + uuid: "55a0effe-1758-4b2f-908c-d36e460880b8", + }, + }, + deleted: { + "status-light-dot-size-extra-large": undefined, + }, + deprecated: {}, + reverted: {}, + renamed: { + "i-like-lemon-coconut-muffins": { + "old-name": "help-text-top-to-workflow-icon-medium", + }, + }, + updated: { + added: {}, + deleted: {}, + renamed: {}, + updated: {}, + }, +}; + +const expectedSeveralRenamedAddedDeleted = { + added: { + "i-like-pizza": { + component: "table", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.07", + uuid: "1234", + }, + "hi-how-are-you": { + component: "color-handle", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.42", + uuid: "234", + }, + }, + deleted: { + "floating-action-button-drop-shadow-color": undefined, + "floating-action-button-shadow-color": undefined, + "table-selected-row-background-opacity-non-emphasized-hover": undefined, + "table-selected-row-background-opacity-non-emphasized": undefined, + }, + deprecated: {}, + reverted: {}, + renamed: { + "i-like-ice-cream": { + "old-name": "color-area-border-color", + }, + "i-like-char-siu": { + "old-name": "color-handle-inner-border-color", + }, + }, + updated: { + added: {}, + deleted: {}, + renamed: {}, + updated: {}, + }, +}; + +// The names are getting pretty long lol, so here's the abbreviations (open to change b/c tbh these kinda suck!) +// R = renamed, A = added, D = deleted, Dep = deprecated, Rev = reverted, U = updated +const expectedSeveralRADDep = { + added: { + "i-like-pizza": { + component: "table", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.07", + uuid: "1234", + }, + "hi-how-are-you": { + component: "color-handle", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.42", + uuid: "234", + }, + }, + deleted: { + "floating-action-button-drop-shadow-color": undefined, + "floating-action-button-shadow-color": undefined, + "table-selected-row-background-opacity-non-emphasized-hover": undefined, + "table-selected-row-background-opacity-non-emphasized": undefined, + }, + deprecated: { + "color-slider-border-color": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + "color-loupe-outer-border": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + }, + reverted: {}, + renamed: { + "i-like-ice-cream": { + "old-name": "color-area-border-color", + }, + "i-like-char-siu": { + "old-name": "color-handle-inner-border-color", + }, + }, + updated: { + added: {}, + deleted: {}, + renamed: {}, + updated: {}, + }, +}; + +const expectedSeveralRADDepU = { + added: { + "i-like-pizza": { + component: "table", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.07", + uuid: "1234", + }, + "hi-how-are-you": { + component: "color-handle", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.42", + uuid: "234", + }, + }, + deleted: { + "floating-action-button-drop-shadow-color": undefined, + "floating-action-button-shadow-color": undefined, + "table-selected-row-background-opacity-non-emphasized-hover": undefined, + "table-selected-row-background-opacity-non-emphasized": undefined, + }, + deprecated: { + "color-slider-border-color": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + "color-loupe-outer-border": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + }, + reverted: {}, + renamed: { + "i-like-ice-cream": { + "old-name": "color-area-border-color", + }, + "i-like-char-siu": { + "old-name": "color-handle-inner-border-color", + }, + }, + updated: { + added: {}, + deleted: {}, + renamed: {}, + updated: { + "thumbnail-border-color": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/not-a-thumbnail.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "$schema", + }, + }, + "opacity-checkerboard-square-dark": { + sets: { + light: { + value: { + "new-value": "{gray-500}", + "original-value": "{gray-200}", + path: "sets.light.value", + }, + }, + darkest: { + value: { + "new-value": "{gray-900}", + "original-value": "{gray-800}", + path: "sets.darkest.value", + }, + }, + }, + }, + "color-slider-border-opacity": { + component: { + "new-value": "not-a-color-slider", + "original-value": "color-slider", + path: "component", + }, + }, + "color-loupe-inner-border": { + uuid: { + "new-value": "if a uuid ever change lol", + "original-value": "d2c4cb48-8a90-461d-95bc-d882ba01472b", + path: "uuid", + }, + }, + "drop-zone-background-color": { + component: { + "new-value": "woohoo!", + "original-value": "drop-zone", + path: "component", + }, + value: { + "new-value": "{fushcia pink}", + "original-value": "{accent-visual-color}", + path: "value", + }, + }, + }, + }, +}; + +const expectedSeveralRADDepURev = { + added: { + "i-like-pizza": { + component: "table", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.07", + uuid: "1234", + }, + "hi-how-are-you": { + component: "color-handle", + $schema: + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + value: "0.42", + uuid: "234", + }, + }, + deleted: { + "floating-action-button-drop-shadow-color": undefined, + "floating-action-button-shadow-color": undefined, + "table-selected-row-background-opacity-non-emphasized-hover": undefined, + "table-selected-row-background-opacity-non-emphasized": undefined, + }, + deprecated: { + "color-slider-border-color": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + "color-loupe-outer-border": { + deprecated: true, + deprecated_comment: "insert random deprecated comment", + }, + }, + reverted: { + "color-handle-drop-shadow-color": { + deprecated: undefined, + deprecated_comment: undefined, + }, + }, + renamed: { + "i-like-ice-cream": { + "old-name": "color-area-border-color", + }, + "i-like-char-siu": { + "old-name": "color-handle-inner-border-color", + }, + }, + updated: { + added: {}, + deleted: {}, + renamed: {}, + updated: { + "thumbnail-border-color": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/not-a-thumbnail.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "$schema", + }, + }, + "opacity-checkerboard-square-dark": { + sets: { + light: { + value: { + "new-value": "{gray-500}", + "original-value": "{gray-200}", + path: "sets.light.value", + }, + }, + darkest: { + value: { + "new-value": "{gray-900}", + "original-value": "{gray-800}", + path: "sets.darkest.value", + }, + }, + }, + }, + "color-slider-border-opacity": { + component: { + "new-value": "not-a-color-slider", + "original-value": "color-slider", + path: "component", + }, + }, + "color-loupe-inner-border": { + uuid: { + "new-value": "if a uuid ever change lol", + "original-value": "d2c4cb48-8a90-461d-95bc-d882ba01472b", + path: "uuid", + }, + }, + "drop-zone-background-color": { + component: { + "new-value": "woohoo!", + "original-value": "drop-zone", + path: "component", + }, + value: { + "new-value": "{fushcia pink}", + "original-value": "{accent-visual-color}", + path: "value", + }, + }, + }, + }, +}; + +const expectedAddedProperty = { + renamed: {}, + deprecated: {}, + reverted: {}, + added: {}, + deleted: {}, + updated: { + added: { + "celery-background-color-default": { + sets: { + "random-property": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.random-property.$schema", + }, + value: { + "new-value": "{spinach-100}", + path: "sets.random-property.value", + }, + uuid: { + "new-value": "1234", + path: "sets.random-property.uuid", + }, + }, + }, + }, + }, + deleted: {}, + renamed: {}, + updated: {}, + }, +}; + +const expectedDeletedProperty = { + renamed: {}, + deprecated: {}, + reverted: {}, + added: {}, + deleted: {}, + updated: { + added: {}, + deleted: { + "celery-background-color-default": { + sets: { + "random-property": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.random-property.$schema", + }, + value: { + "new-value": "{spinach-100}", + path: "sets.random-property.value", + }, + uuid: { + "new-value": "1234", + path: "sets.random-property.uuid", + }, + }, + }, + }, + }, + renamed: {}, + updated: {}, + }, +}; + +test("basic test to see renamed token", (t) => { + t.deepEqual(tokenDiff(basicToken, basicRenamedToken), expectedRenamed); +}); + +test("test to see renamed token and added tokens (many))", (t) => { + t.deepEqual( + tokenDiff(originalEntireSchema, addedRenamedTokens), + expectedManyAddedRenamed, + ); +}); + +test("test to see renamed, added, and deleted set tokens (few)", (t) => { + t.deepEqual( + tokenDiff(severalSetTokens, renamedAddedDeletedSetTokens), + expectedRenamedAddedDeleted, + ); +}); + +test("test to see renamed, added, and deleted tokens (many)", (t) => { + t.deepEqual( + tokenDiff(originalEntireSchema, renamedAddedDeletedTokens), + expectedSeveralRenamedAddedDeleted, + ); +}); + +test("test to see renamed, added, deleted, and deprecated tokens (many)", (t) => { + t.deepEqual( + tokenDiff(originalEntireSchema, rADDepTokens), + expectedSeveralRADDep, + ); +}); + +test("test to see renamed, added, deleted, deprecated, and updated tokens (many)", (t) => { + t.deepEqual( + tokenDiff(originalEntireSchema, rADDepUTokens), + expectedSeveralRADDepU, + ); +}); + +test("test to see renamed, added, deleted, deprecated, updated, and if for some reason, 'un-deprecated' tokens (many)", (t) => { + t.deepEqual( + tokenDiff(originalEntireSchema, rADDepURevTokens), + expectedSeveralRADDepURev, + ); +}); + +test("test to see if added property from token looks right", (t) => { + t.deepEqual( + tokenDiff(basicSetTokenProperty, addedPropertySetToken), + expectedAddedProperty, + ); +}); + +test("test to see if deleted property from token looks right", (t) => { + t.deepEqual( + tokenDiff(addedPropertySetToken, basicSetTokenProperty), + expectedDeletedProperty, + ); +}); diff --git a/tools/diff-generator/test/updatedToken.test.js b/tools/diff-generator/test/updatedToken.test.js new file mode 100644 index 00000000..7ada5322 --- /dev/null +++ b/tools/diff-generator/test/updatedToken.test.js @@ -0,0 +1,777 @@ +/* +Copyright {{ now() | date(format="%Y") }} 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. +*/ + +import test from "ava"; +import detectUpdatedTokens from "../src/lib/updated-token-detection.js"; +import detectRenamedTokens from "../src/lib/renamed-token-detection.js"; +import detectNewTokens from "../src/lib/added-token-detection.js"; +import detectDeprecatedTokens from "../src/lib/deprecated-token-detection.js"; +import { detailedDiff } from "deep-object-diff"; +import original from "./test-schemas/basic-original-token.json" with { type: "json" }; +import updatedToken from "./test-schemas/basic-updated-token.json" with { type: "json" }; +import updatedSeveralProperties from "./test-schemas/basic-multiple-updated-token.json" with { type: "json" }; +import tokenWithSet from "./test-schemas/basic-set-token.json" with { type: "json" }; +import tokenWithUpdatedSet from "./test-schemas/basic-updated-set-token.json" with { type: "json" }; +import severalSetTokens from "./test-schemas/several-set-tokens.json" with { type: "json" }; +import severalUpdatedSetTokens from "./test-schemas/several-updated-set-tokens.json" with { type: "json" }; +import severalRenamedUpdatedSetTokens from "./test-schemas/several-renamed-updated-set-tokens.json" with { type: "json" }; +import basicSetTokenProperty from "./test-schemas/basic-set-token-property.json" with { type: "json" }; +import addedPropertySetToken from "./test-schemas/added-property-set-token.json" with { type: "json" }; +import addedDeletedPropertySetToken from "./test-schemas/added-deleted-set-token-property.json" with { type: "json" }; +import renamedAddedDeletedPropertySetToken from "./test-schemas/renamed-added-deleted-property-set-token.json" with { type: "json" }; +import addedInnerValueToken from "./test-schemas/added-inner-value-token.json" with { type: "json" }; + +const expected = { + added: {}, + deleted: {}, + renamed: {}, + updated: { + "swatch-border-color": { + value: { + "new-value": "{blue-200}", + path: "value", + "original-value": "{gray-900}", + }, + }, + "swatch-border-color": { + value: { + "new-value": "{blue-200}", + path: "value", + "original-value": "{gray-900}", + }, + }, + }, +}; + +const expectedUpdatedSeveralProperties = { + added: {}, + deleted: {}, + renamed: {}, + updated: { + "swatch-border-color": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + path: "$schema", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + }, + value: { + "new-value": "{blue-200}", + path: "value", + "original-value": "{gray-900}", + }, + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + path: "$schema", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + }, + value: { + "new-value": "{blue-200}", + path: "value", + "original-value": "{gray-900}", + }, + }, + }, +}; + +const expectedUpdatedSet = { + added: {}, + deleted: {}, + renamed: {}, + updated: { + "overlay-opacity": { + sets: { + darkest: { + value: { + "new-value": "0.8", + "original-value": "0.6", + path: "sets.darkest.value", + }, + value: { + "new-value": "0.8", + "original-value": "0.6", + path: "sets.darkest.value", + }, + }, + light: { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + path: "sets.light.$schema", + }, + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + path: "sets.light.$schema", + }, + }, + wireframe: { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/wireframe.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + path: "sets.wireframe.$schema", + }, + value: { + "new-value": "0", + "original-value": "0.4", + path: "sets.wireframe.value", + }, + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/wireframe.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + path: "sets.wireframe.$schema", + }, + value: { + "new-value": "0", + "original-value": "0.4", + path: "sets.wireframe.value", + }, + }, + }, + }, + }, +}; + +const expectedSeveralUpdatedSet = { + added: {}, + deleted: {}, + renamed: {}, + updated: { + "help-text-top-to-workflow-icon-medium": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token-set.json", + path: "$schema", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + }, + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token-set.json", + path: "$schema", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + }, + sets: { + desktop: { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/changing-two-schemas.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + path: "sets.desktop.$schema", + }, + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/changing-two-schemas.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + path: "sets.desktop.$schema", + }, + }, + mobile: { + value: { + "new-value": "9px", + "original-value": "4px", + path: "sets.mobile.value", + }, + value: { + "new-value": "9px", + "original-value": "4px", + path: "sets.mobile.value", + }, + }, + }, + }, + "status-light-top-to-dot-large": { + sets: { + desktop: { + value: { + "new-value": "20px", + "original-value": "15px", + path: "sets.desktop.value", + }, + value: { + "new-value": "20px", + "original-value": "15px", + path: "sets.desktop.value", + }, + }, + }, + }, + }, +}; + +const expectedUpdatedSetWithRename = { + added: {}, + deleted: {}, + renamed: {}, + updated: { + "help-text-top-to-workflow-icon-medium": { + sets: { + desktop: { + value: { + "new-value": "7px", + "original-value": "3px", + path: "sets.desktop.value", + }, + value: { + "new-value": "7px", + "original-value": "3px", + path: "sets.desktop.value", + }, + }, + }, + }, + "i-like-fish-tacos": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scaly-fish.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + path: "$schema", + }, + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scaly-fish.json", + "original-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + path: "$schema", + }, + sets: { + mobile: { + value: { + "new-value": "15px", + "original-value": "12px", + path: "sets.mobile.value", + }, + value: { + "new-value": "15px", + "original-value": "12px", + path: "sets.mobile.value", + }, + }, + }, + }, + }, +}; + +const expectedAddedProperty = { + added: { + "celery-background-color-default": { + sets: { + "random-property": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.random-property.$schema", + }, + value: { + "new-value": "{spinach-100}", + path: "sets.random-property.value", + }, + uuid: { + "new-value": "1234", + path: "sets.random-property.uuid", + }, + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.random-property.$schema", + }, + value: { + "new-value": "{spinach-100}", + path: "sets.random-property.value", + }, + uuid: { + "new-value": "1234", + path: "sets.random-property.uuid", + }, + }, + }, + }, + }, + deleted: {}, + renamed: {}, + updated: {}, +}; + +const expectedDeletedProperty = { + added: {}, + deleted: { + "celery-background-color-default": { + sets: { + "random-property": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.random-property.$schema", + }, + value: { + "new-value": "{spinach-100}", + path: "sets.random-property.value", + }, + uuid: { + "new-value": "1234", + path: "sets.random-property.uuid", + }, + }, + }, + }, + }, + renamed: {}, + updated: {}, +}; + +const expectedAddedDeletedProperty = { + added: { + "celery-background-color-default": { + sets: { + "fun-times": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.fun-times.$schema", + }, + uuid: { + "new-value": "2345", + path: "sets.fun-times.uuid", + }, + value: { + "new-value": "{fun}", + path: "sets.fun-times.value", + }, + }, + }, + }, + }, + deleted: { + "celery-background-color-default": { + sets: { + darkest: { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.darkest.$schema", + }, + uuid: { + "new-value": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df", + path: "sets.darkest.uuid", + }, + value: { + "new-value": "{celery-800}", + path: "sets.darkest.value", + }, + }, + }, + }, + }, + renamed: {}, + updated: {}, +}; + +const expectedRenamedAddedDeletedProperty = { + added: { + "celery-background-color-default": { + sets: { + "added-property": { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/some-property-type.json", + path: "sets.added-property.$schema", + }, + uuid: { + "new-value": "1234", + path: "sets.added-property.uuid", + }, + value: { + "new-value": "{celery-1100}", + path: "sets.added-property.value", + }, + }, + }, + }, + }, + deleted: { + "celery-background-color-default": { + sets: { + darkest: { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.darkest.$schema", + }, + uuid: { + "new-value": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df", + path: "sets.darkest.uuid", + }, + value: { + "new-value": "{celery-800}", + path: "sets.darkest.value", + }, + }, + }, + }, + }, + renamed: { + "i-like-waffle-fries": { + "old-name": "wireframe", + }, + }, + updated: {}, +}; + +const expectedAddedInnerValue = { + added: { + "celery-background-color-default": { + sets: { + dark: { + "new-property": { + "new-value": "this is a new property", + path: "sets.dark.new-property", + }, + }, + }, + }, + }, + deleted: { + "celery-background-color-default": { + sets: { + darkest: { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.darkest.$schema", + }, + value: { + "new-value": "{celery-800}", + path: "sets.darkest.value", + }, + uuid: { + "new-value": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df", + path: "sets.darkest.uuid", + }, + }, + }, + }, + }, + renamed: {}, + updated: {}, +}; + +const expectedDeletedInnerValue = { + added: { + "celery-background-color-default": { + sets: { + darkest: { + $schema: { + "new-value": + "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + path: "sets.darkest.$schema", + }, + value: { + "new-value": "{celery-800}", + path: "sets.darkest.value", + }, + uuid: { + "new-value": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df", + path: "sets.darkest.uuid", + }, + }, + }, + }, + }, + deleted: { + "celery-background-color-default": { + sets: { + dark: { + "new-property": { + "new-value": "this is a new property", + path: "sets.dark.new-property", + }, + }, + }, + }, + }, + renamed: {}, + updated: {}, +}; + +const expectedNothing = { + added: {}, + deleted: {}, + renamed: {}, + updated: {}, +}; + +test("basic test to check if updated token is detected", (t) => { + const diff = detailedDiff(original, updatedToken); + const renamed = detectRenamedTokens(original, updatedToken); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens(renamed, deprecated, diff.added, original); + + t.deepEqual( + detectUpdatedTokens(renamed, original, diff, added, deprecated), + expected, + ); +}); + +test("updated more than one property of a token", (t) => { + const diff = detailedDiff(original, updatedSeveralProperties); + const renamed = detectRenamedTokens(original, updatedSeveralProperties); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens(renamed, deprecated, diff.added, original); + + t.deepEqual( + detectUpdatedTokens(renamed, original, diff, added, deprecated), + expectedUpdatedSeveralProperties, + ); +}); + +test("testing basic token with updates to its set property", (t) => { + const diff = detailedDiff(tokenWithSet, tokenWithUpdatedSet); + const renamed = detectRenamedTokens(tokenWithSet, tokenWithUpdatedSet); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens(renamed, deprecated, diff.added, tokenWithSet); + + t.deepEqual( + detectUpdatedTokens(renamed, tokenWithSet, diff, added, deprecated), + expectedUpdatedSet, + ); +}); + +test("testing several tokens with updates to its set property", (t) => { + const diff = detailedDiff(severalSetTokens, severalUpdatedSetTokens); + const renamed = detectRenamedTokens( + severalSetTokens, + severalUpdatedSetTokens, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + severalSetTokens, + ); + + t.deepEqual( + detectUpdatedTokens(renamed, severalSetTokens, diff, added, deprecated), + expectedSeveralUpdatedSet, + ); +}); + +test("testing several tokens with updates to its set property and renames", (t) => { + const diff = detailedDiff(severalSetTokens, severalRenamedUpdatedSetTokens); + const renamed = detectRenamedTokens( + severalSetTokens, + severalRenamedUpdatedSetTokens, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + severalSetTokens, + ); + + t.deepEqual( + detectUpdatedTokens(renamed, severalSetTokens, diff, added, deprecated), + expectedUpdatedSetWithRename, + ); +}); + +test("testing adding a property to a token with sets", (t) => { + const diff = detailedDiff(basicSetTokenProperty, addedPropertySetToken); + const renamed = detectRenamedTokens( + basicSetTokenProperty, + addedPropertySetToken, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + basicSetTokenProperty, + ); + + t.deepEqual( + detectUpdatedTokens( + renamed, + basicSetTokenProperty, + diff, + added, + deprecated, + ), + expectedAddedProperty, + ); +}); + +test("testing deleting a property to a token with sets", (t) => { + const diff = detailedDiff(addedPropertySetToken, basicSetTokenProperty); + const renamed = detectRenamedTokens( + addedPropertySetToken, + basicSetTokenProperty, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + addedPropertySetToken, + ); + t.deepEqual( + detectUpdatedTokens( + renamed, + addedPropertySetToken, + diff, + added, + deprecated, + ), + expectedDeletedProperty, + ); +}); + +test("testing adding and deleting a property to a token with sets", (t) => { + const diff = detailedDiff( + basicSetTokenProperty, + addedDeletedPropertySetToken, + ); + const renamed = detectRenamedTokens( + basicSetTokenProperty, + addedDeletedPropertySetToken, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + basicSetTokenProperty, + ); + t.deepEqual( + detectUpdatedTokens( + renamed, + basicSetTokenProperty, + diff, + added, + deprecated, + ), + expectedAddedDeletedProperty, + ); +}); + +test("testing adding and deleting renamed properties to a token with sets", (t) => { + const diff = detailedDiff( + basicSetTokenProperty, + renamedAddedDeletedPropertySetToken, + ); + const renamed = detectRenamedTokens( + basicSetTokenProperty, + renamedAddedDeletedPropertySetToken, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + basicSetTokenProperty, + ); + t.deepEqual( + detectUpdatedTokens( + renamed, + basicSetTokenProperty, + diff, + added, + deprecated, + ), + expectedRenamedAddedDeletedProperty, + ); +}); + +test("testing against itself", (t) => { + const diff = detailedDiff(basicSetTokenProperty, basicSetTokenProperty); + const renamed = detectRenamedTokens( + basicSetTokenProperty, + basicSetTokenProperty, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + basicSetTokenProperty, + ); + t.deepEqual( + detectUpdatedTokens( + renamed, + basicSetTokenProperty, + diff, + added, + deprecated, + ), + expectedNothing, + ); +}); + +test("testing adding inner value", (t) => { + const diff = detailedDiff(basicSetTokenProperty, addedInnerValueToken); + const renamed = detectRenamedTokens( + basicSetTokenProperty, + addedInnerValueToken, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + basicSetTokenProperty, + ); + t.deepEqual( + detectUpdatedTokens( + renamed, + basicSetTokenProperty, + diff, + added, + deprecated, + ), + expectedAddedInnerValue, + ); +}); + +test("testing deleting inner value", (t) => { + const diff = detailedDiff(addedInnerValueToken, basicSetTokenProperty); + const renamed = detectRenamedTokens( + addedInnerValueToken, + basicSetTokenProperty, + ); + const deprecated = detectDeprecatedTokens(renamed, diff); + const added = detectNewTokens( + renamed, + deprecated, + diff.added, + addedInnerValueToken, + ); + t.deepEqual( + detectUpdatedTokens(renamed, addedInnerValueToken, diff, added, deprecated), + expectedDeletedInnerValue, + ); +}); From 4fcfe5bd83214a7ca3644646bbf0f38802a20f43 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 12 Aug 2024 16:21:23 -0600 Subject: [PATCH 232/295] chore: added changeset --- .changeset/green-knives-scream.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .changeset/green-knives-scream.md diff --git a/.changeset/green-knives-scream.md b/.changeset/green-knives-scream.md new file mode 100644 index 00000000..a85f8bcd --- /dev/null +++ b/.changeset/green-knives-scream.md @@ -0,0 +1,26 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added brand new tokens for the S2 Standard Panel: + +## Design Motivation + +Added tokens needed for the new S2 standard panel component. + +## Token Diff + +_Tokens Added (12):_ + +- `standard-panel-width` +- `standard-panel-minimum-width` +- `standard-panel-maximum-width` +- `standard-panel-top-to-close-button-compact` +- `standard-panel-top-to-close-button-regular` +- `standard-panel-top-to-close-button-spacious` +- `standard-panel-edge-to-close-button-compact` +- `standard-panel-edge-to-close-button-regular` +- `standard-panel-edge-to-close-button-spacious` +- `standard-panel-title-font-size` +- `standard-panel-gripper-color` +- `standard-panel-gripper-color-drag` From 0eda3e480cf024b0855f17d5d49c55df2e245fc8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 12 Aug 2024 22:23:47 +0000 Subject: [PATCH 233/295] chore: release (beta) --- .changeset/pre.json | 4 +++- packages/tokens/CHANGELOG.md | 27 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 39 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index ce270fbe..571e5f18 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -8,7 +8,8 @@ "system-set-merge": "0.0.1", "token-manifest-builder": "0.0.1", "transform-tokens-json": "0.0.1", - "token-csv-generator": "0.0.1" + "token-csv-generator": "0.0.1", + "@adobe/token-diff-generator": "1.0.1" }, "changesets": [ "angry-zoos-applaud", @@ -33,6 +34,7 @@ "gold-bags-talk", "good-baboons-doubt", "good-peas-mix", + "green-knives-scream", "happy-students-vanish", "khaki-teachers-do", "kind-geese-hope", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index d06bcab5..a01482de 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,32 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.46 + +### Minor Changes + +- [#396](https://github.com/adobe/spectrum-tokens/pull/396) [`4fcfe5b`](https://github.com/adobe/spectrum-tokens/commit/4fcfe5bd83214a7ca3644646bbf0f38802a20f43) Thanks [@larz0](https://github.com/larz0)! - Added brand new tokens for the S2 Standard Panel: + + ## Design Motivation + + Added tokens needed for the new S2 standard panel component. + + ## Token Diff + + _Tokens Added (12):_ + + - `standard-panel-width` + - `standard-panel-minimum-width` + - `standard-panel-maximum-width` + - `standard-panel-top-to-close-button-compact` + - `standard-panel-top-to-close-button-regular` + - `standard-panel-top-to-close-button-spacious` + - `standard-panel-edge-to-close-button-compact` + - `standard-panel-edge-to-close-button-regular` + - `standard-panel-edge-to-close-button-spacious` + - `standard-panel-title-font-size` + - `standard-panel-gripper-color` + - `standard-panel-gripper-color-drag` + ## 13.0.0-beta.45 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index e7b4d1c0..f23a6e70 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.45", + "version": "13.0.0-beta.46", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 0cf26bea..2e3dd02b 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.17 + +### Patch Changes + +- Updated dependencies [[`4fcfe5b`](https://github.com/adobe/spectrum-tokens/commit/4fcfe5bd83214a7ca3644646bbf0f38802a20f43)]: + - @adobe/spectrum-tokens@13.0.0-beta.46 + ## 0.0.2-beta.16 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index d5ade98e..e357f646 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.16", + "version": "0.0.2-beta.17", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From b4248aa657795be19b5fa3028531df72efa738ff Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 15 Aug 2024 11:02:12 -0600 Subject: [PATCH 234/295] fix: mistakenly deprecated overlay-opacity --- packages/tokens/src/color-aliases.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index b31d5f0b..3148bded 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -25,14 +25,12 @@ "light": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.4", - "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e", - "deprecated": true + "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.6", - "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da", - "deprecated": true + "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" }, "wireframe": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", @@ -1778,4 +1776,4 @@ "value": "{drop-shadow-color-300}", "uuid": "83c30113-68b5-475b-ba46-9179c9ff7e8d" } -} \ No newline at end of file +} From 142276543d0e7605fa1549b2b8c887ff0a66aa0a Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Tue, 10 Sep 2024 14:50:20 -0600 Subject: [PATCH 235/295] feat: added text-align token schema --- .../schemas/token-types/text-align.json | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 packages/tokens/schemas/token-types/text-align.json diff --git a/packages/tokens/schemas/token-types/text-align.json b/packages/tokens/schemas/token-types/text-align.json new file mode 100644 index 00000000..2dda8c33 --- /dev/null +++ b/packages/tokens/schemas/token-types/text-align.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "title": "Text align", + "description": "sets the horizontal alignment of the inline-level content inside a block element", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json" + }, + "value": { + "type": "string", + "enum": ["left", "center", "right"], + "default": "left" + }, + "component": {}, + "private": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} \ No newline at end of file From d0b0c8fcd7fef78bcb7c9f33b8184a5349eff203 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Tue, 10 Sep 2024 14:50:20 -0600 Subject: [PATCH 236/295] feat: added text-align token schema --- packages/tokens/schemas/token-types/text-align.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/tokens/schemas/token-types/text-align.json b/packages/tokens/schemas/token-types/text-align.json index 2dda8c33..a102159d 100644 --- a/packages/tokens/schemas/token-types/text-align.json +++ b/packages/tokens/schemas/token-types/text-align.json @@ -2,7 +2,7 @@ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", "title": "Text align", - "description": "sets the horizontal alignment of the inline-level content inside a block element", + "description": "Sets the horizontal alignment of the inline-level content inside a block element", "type": "object", "allOf": [ { @@ -15,8 +15,8 @@ }, "value": { "type": "string", - "enum": ["left", "center", "right"], - "default": "left" + "enum": ["start", "center", "end"], + "default": "start" }, "component": {}, "private": {}, @@ -24,4 +24,4 @@ "deprecated_comment": {}, "uuid": {} } -} \ No newline at end of file +} From 029da9bcb5b542b4f0555bb21e66e71975717e62 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Thu, 12 Sep 2024 12:07:04 -0600 Subject: [PATCH 237/295] fix: merged color-set token with duplicate set values `standard-panel-gripper-color-drag` was mistakenly declared as a color-set token with identical values for the `light` and `dark` values. --- packages/tokens/src/color-component.json | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 38431863..a324170c 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -420,19 +420,9 @@ }, "standard-panel-gripper-color-drag": { "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "69e2d0b3-6807-4e46-9f8a-72bf49439f36" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "e0533561-893d-4947-a0bb-d29c0bb42a2b" - } - } + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "69e2d0b3-6807-4e46-9f8a-72bf49439f36" }, "standard-panel-gripper-color": { "component": "standard-panel", From 0d85bc13cd31da42b8f599f3b68559c3933767ac Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Mon, 9 Sep 2024 12:59:48 -0600 Subject: [PATCH 238/295] test: checking for component prop to icon tokens --- packages/tokens/src/icons.json | 75 ++++++++++++++++++++- packages/tokens/test/checkComponentProps.js | 1 + 2 files changed, 75 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/icons.json b/packages/tokens/src/icons.json index a8a6983d..49de26ef 100644 --- a/packages/tokens/src/icons.json +++ b/packages/tokens/src/icons.json @@ -82,16 +82,19 @@ } }, "icon-color-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{neutral-content-color-hover}", "uuid": "2a3d8ce3-6294-41b2-ad19-c6b9b6ed7e10" }, "icon-color-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{neutral-content-color-down}", "uuid": "83223069-7a05-4b61-b1ec-2af8e712e0a2" }, "icon-color-blue-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -107,6 +110,7 @@ } }, "icon-color-blue-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -122,6 +126,7 @@ } }, "icon-color-brown-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -137,6 +142,7 @@ } }, "icon-color-brown-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -152,6 +158,7 @@ } }, "icon-color-brown-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -167,6 +174,7 @@ } }, "icon-color-celery-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -182,6 +190,7 @@ } }, "icon-color-celery-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -197,6 +206,7 @@ } }, "icon-color-celery-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -212,6 +222,7 @@ } }, "icon-color-chartreuse-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -227,6 +238,7 @@ } }, "icon-color-chartreuse-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -242,6 +254,7 @@ } }, "icon-color-chartreuse-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -257,36 +270,43 @@ } }, "icon-color-cinnamon-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cinnamon-800}", "uuid": "fcf4219b-fa42-4693-ba34-fc5f46bfcde8" }, "icon-color-cinnamon-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cinnamon-900}", "uuid": "a91d68ae-30ac-496b-9558-39272e9926c4" }, "icon-color-cinnamon-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cinnamon-1000}", "uuid": "6cb36abc-7d86-4df0-a96d-36a4308a8ebd" }, "icon-color-cyan-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-800}", "uuid": "2855caf0-9b6d-4d45-bdb8-30aab37a237c" }, "icon-color-cyan-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-900}", "uuid": "2f68ac4a-be55-4fc7-b96e-987bdb5956ca" }, "icon-color-cyan-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{cyan-1000}", "uuid": "c6ae865c-1938-4eec-b89c-7f793dc3f049" }, "icon-color-fuchsia-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -302,6 +322,7 @@ } }, "icon-color-fuchsia-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -317,6 +338,7 @@ } }, "icon-color-fuchsia-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -332,16 +354,19 @@ } }, "icon-color-green-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-900}", "uuid": "9a667090-665d-47b2-b000-5a9f4fe26fcf" }, "icon-color-green-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{green-1000}", "uuid": "c0acc956-e9de-469b-8919-aa0d8b762bb3" }, "icon-color-indigo-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -357,6 +382,7 @@ } }, "icon-color-indigo-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -372,6 +398,7 @@ } }, "icon-color-indigo-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -387,6 +414,7 @@ } }, "icon-color-magenta-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -402,6 +430,7 @@ } }, "icon-color-magenta-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -417,6 +446,7 @@ } }, "icon-color-magenta-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -432,6 +462,7 @@ } }, "icon-color-orange-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -447,6 +478,7 @@ } }, "icon-color-orange-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -462,6 +494,7 @@ } }, "icon-color-orange-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -477,6 +510,7 @@ } }, "icon-color-pink-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -492,6 +526,7 @@ } }, "icon-color-pink-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -507,6 +542,7 @@ } }, "icon-color-pink-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -522,6 +558,7 @@ } }, "icon-color-purple-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -537,6 +574,7 @@ } }, "icon-color-purple-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -552,6 +590,7 @@ } }, "icon-color-purple-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -567,6 +606,7 @@ } }, "icon-color-red-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -582,6 +622,7 @@ } }, "icon-color-red-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -597,21 +638,25 @@ } }, "icon-color-seafoam-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-800}", "uuid": "aca36c2e-6dda-4b5e-a6e1-8db1bbb9e448" }, "icon-color-seafoam-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-900}", "uuid": "cdc09dab-b4cc-4034-843b-98afcc36caf0" }, "icon-color-seafoam-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{seafoam-1000}", "uuid": "3d4610d5-0870-4af3-8878-483218d43f92" }, "icon-color-silver-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -627,6 +672,7 @@ } }, "icon-color-silver-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -642,6 +688,7 @@ } }, "icon-color-silver-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -657,6 +704,7 @@ } }, "icon-color-turquoise-primary-default": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -672,6 +720,7 @@ } }, "icon-color-turquoise-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -687,6 +736,7 @@ } }, "icon-color-turquoise-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -702,6 +752,7 @@ } }, "icon-color-yellow-primary-hover": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -717,6 +768,7 @@ } }, "icon-color-yellow-primary-down": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -732,11 +784,13 @@ } }, "icon-color-disabled-primary": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-400}", "uuid": "12c9d145-7357-449e-a99a-1154dd5be026" }, "icon-color-blue-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -752,6 +806,7 @@ } }, "icon-color-brown-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -767,6 +822,7 @@ } }, "icon-color-celery-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -782,6 +838,7 @@ } }, "icon-color-chartreuse-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -797,6 +854,7 @@ } }, "icon-color-cinnamon-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -812,6 +870,7 @@ } }, "icon-color-cyan-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -827,11 +886,13 @@ } }, "icon-color-fuchsia-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{fuchsia-200}", "uuid": "707601ab-a624-4466-9ce3-b52552b777a2" }, "icon-color-green-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -847,6 +908,7 @@ } }, "icon-color-indigo-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -862,11 +924,13 @@ } }, "icon-color-magenta-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{magenta-200}", "uuid": "2cf7dea9-034c-48a8-8946-d059320ced08" }, "icon-color-orange-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -882,16 +946,19 @@ } }, "icon-color-pink-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{pink-200}", "uuid": "46d11573-718e-4e38-8493-f3a37a5e7d32" }, "icon-color-purple-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{purple-200}", "uuid": "5a9cdf9a-09a5-42bc-a0bf-6f187c6832c5" }, "icon-color-red-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -907,6 +974,7 @@ } }, "icon-color-seafoam-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -922,6 +990,7 @@ } }, "icon-color-silver-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -937,6 +1006,7 @@ } }, "icon-color-turquoise-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -952,6 +1022,7 @@ } }, "icon-color-yellow-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", "sets": { "light": { @@ -967,13 +1038,15 @@ } }, "icon-color-inverse-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-50}", "uuid": "ba10ab97-0c09-4d07-ab7b-050258169d52" }, "icon-color-emphasized-background": { + "component": "icon", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-900}", "uuid": "fa5b0690-6ecd-4a3e-8675-ab6445df8946" } -} \ No newline at end of file +} diff --git a/packages/tokens/test/checkComponentProps.js b/packages/tokens/test/checkComponentProps.js index 9fb57871..be2db05f 100644 --- a/packages/tokens/test/checkComponentProps.js +++ b/packages/tokens/test/checkComponentProps.js @@ -17,6 +17,7 @@ test("ensure all component tokens are have component data", async (t) => { const tokenData = { ...(await getFileTokens("color-component.json")), ...(await getFileTokens("layout-component.json")), + ...(await getFileTokens("icons.json")), }; const result = Object.keys(tokenData).filter((tokenName) => { return ( From 34b2ea1be49cd029a2342037b12acc9b492d1893 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Mon, 9 Sep 2024 13:54:05 -0600 Subject: [PATCH 239/295] test: adding tests to check for unique ids --- packages/tokens/test/checkSetsUnique.js | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 packages/tokens/test/checkSetsUnique.js diff --git a/packages/tokens/test/checkSetsUnique.js b/packages/tokens/test/checkSetsUnique.js new file mode 100644 index 00000000..517ac5ab --- /dev/null +++ b/packages/tokens/test/checkSetsUnique.js @@ -0,0 +1,29 @@ +/* +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. +*/ + +import test from "ava"; +import { getAllTokens } from "../index.js"; + +test("getAllTokens", async (t) => { + const tokens = await getAllTokens(); + console.log(tokens); + for (const [tokenName, token] of Object.entries(tokens)) { + if ( + Object.hasOwn(token, "sets") && + !Object.hasOwn(token, "deprecated") && + JSON.stringify(token.sets).indexOf("deprecated") > -1 + ) { + console.log(tokenName); + } + } + t.fail(); +}); From f81d866cfa5c48396d67c9228a72528543094bd4 Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 30 Sep 2024 15:17:41 -0600 Subject: [PATCH 240/295] chore: update deps to latest --- .husky/commit-msg | 3 - .husky/pre-commit | 3 - .moon/toolchain.yml | 2 +- package.json | 18 +- packages/tokens/index.js | 8 + packages/tokens/package.json | 4 +- packages/tokens/test/checkSetsUnique.js | 37 +- pnpm-lock.yaml | 2094 +++++++++++------------ 8 files changed, 1083 insertions(+), 1086 deletions(-) diff --git a/.husky/commit-msg b/.husky/commit-msg index 84f4064b..7fb1edb5 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - pnpm --no-install commitlint --edit "" diff --git a/.husky/pre-commit b/.husky/pre-commit index a9e30b9b..f1228afd 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - pnpm run pre-commit diff --git a/.moon/toolchain.yml b/.moon/toolchain.yml index 8c458071..fcfb6d2d 100644 --- a/.moon/toolchain.yml +++ b/.moon/toolchain.yml @@ -20,7 +20,7 @@ node: # The version of the package manager (above) to use. pnpm: - version: "9.3.0" + version: "9.11.0" # Add `node.version` as a constraint in the root `package.json` `engines`. addEnginesConstraint: true diff --git a/package.json b/package.json index 0c693326..d2dd780b 100644 --- a/package.json +++ b/package.json @@ -23,20 +23,20 @@ "homepage": "https://github.com/adobe/spectrum-tokens#readme", "devDependencies": { "@action-validator/core": "^0.6.0", - "@changesets/cli": "^2.27.6", - "@commitlint/cli": "^19.3.0", - "@commitlint/config-conventional": "^19.2.2", - "@moonrepo/cli": "^1.26.4", + "@changesets/cli": "^2.27.8", + "@commitlint/cli": "^19.5.0", + "@commitlint/config-conventional": "^19.5.0", + "@moonrepo/cli": "^1.28.3", "ava": "^6.1.3", - "glob": "^10.4.2", - "husky": "^9.0.11", - "lint-staged": "^15.2.7", - "prettier": "^3.3.2" + "glob": "^11.0.0", + "husky": "^9.1.6", + "lint-staged": "^15.2.10", + "prettier": "^3.3.3" }, "engines": { "node": "~20.12" }, - "packageManager": "pnpm@9.3.0", + "packageManager": "pnpm@9.11.0", "dependencies": { "@changesets/changelog-github": "^0.5.0" } diff --git a/packages/tokens/index.js b/packages/tokens/index.js index f3d273e6..6a1f2e99 100644 --- a/packages/tokens/index.js +++ b/packages/tokens/index.js @@ -34,6 +34,14 @@ export const writeJson = async (fileName, jsonData) => { ); }; +export const isDeprecated = (token) => + (Object.hasOwn(token, "deprecated") && token.deprecated == true) || + (Object.hasOwn(token, "sets") && + Object.values(token.sets).every( + (setValue) => + Object.hasOwn(setValue, "deprecated") && setValue.deprecated == true, + )); + export const getFileTokens = async (tokenFileName) => await readJson(resolve(__dirname, "src", tokenFileName)); diff --git a/packages/tokens/package.json b/packages/tokens/package.json index f23a6e70..7043a738 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": { "@adobe/token-diff-generator": "workspace:*", - "ajv": "^8.12.0", + "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "deep-object-diff": "^1.1.9", "find-duplicated-property-keys": "^1.2.9", "style-dictionary": "^3.9.2", "style-dictionary-sets": "^2.3.0", - "tar": "^7.0.1", + "tar": "^7.4.3", "tmp-promise": "^3.0.3" } } diff --git a/packages/tokens/test/checkSetsUnique.js b/packages/tokens/test/checkSetsUnique.js index 517ac5ab..61ee557a 100644 --- a/packages/tokens/test/checkSetsUnique.js +++ b/packages/tokens/test/checkSetsUnique.js @@ -11,19 +11,44 @@ governing permissions and limitations under the License. */ import test from "ava"; -import { getAllTokens } from "../index.js"; +import { getAllTokens, isDeprecated } from "../index.js"; -test("getAllTokens", async (t) => { +test("Single set properties shouldn't be deprecated", async (t) => { const tokens = await getAllTokens(); - console.log(tokens); for (const [tokenName, token] of Object.entries(tokens)) { if ( Object.hasOwn(token, "sets") && - !Object.hasOwn(token, "deprecated") && + !isDeprecated(token) && JSON.stringify(token.sets).indexOf("deprecated") > -1 ) { - console.log(tokenName); + t.truthy( + Object.values(token.sets).every((setValue) => + Object.hasOwn(setValue, "deprecated"), + ), + ); } } - t.fail(); + t.pass(); +}); + +test("Sets should have unique values", async (t) => { + const tokens = await getAllTokens(); + const result = Object.keys(tokens).filter((tokenName) => { + const token = tokens[tokenName]; + if (Object.hasOwn(token, "sets") && !isDeprecated(token)) { + const setValues = Object.keys(token.sets).reduce( + (accumulator, currentValue) => + currentValue != "wireframe" + ? [...accumulator, token.sets[currentValue].value] + : accumulator, + [], + ); + if (setValues.length != new Set(setValues).size) { + return true; + } + } else { + return false; + } + }); + t.deepEqual(result, [], `${result.length} Duplicate sets found`); }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dd32f00f..16ae1620 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,32 +15,32 @@ importers: specifier: ^0.6.0 version: 0.6.0 "@changesets/cli": - specifier: ^2.27.6 - version: 2.27.6 + specifier: ^2.27.8 + version: 2.27.8 "@commitlint/cli": - specifier: ^19.3.0 - version: 19.3.0(@types/node@20.14.9)(typescript@5.5.2) + specifier: ^19.5.0 + version: 19.5.0(@types/node@22.7.4)(typescript@5.6.2) "@commitlint/config-conventional": - specifier: ^19.2.2 - version: 19.2.2 + specifier: ^19.5.0 + version: 19.5.0 "@moonrepo/cli": - specifier: ^1.26.4 - version: 1.26.4 + specifier: ^1.28.3 + version: 1.28.3 ava: specifier: ^6.1.3 version: 6.1.3 glob: - specifier: ^10.4.2 - version: 10.4.2 + specifier: ^11.0.0 + version: 11.0.0 husky: - specifier: ^9.0.11 - version: 9.0.11 + specifier: ^9.1.6 + version: 9.1.6 lint-staged: - specifier: ^15.2.7 - version: 15.2.7 + specifier: ^15.2.10 + version: 15.2.10 prettier: - specifier: ^3.3.2 - version: 3.3.2 + specifier: ^3.3.3 + version: 3.3.3 docs/site: dependencies: @@ -52,10 +52,10 @@ importers: version: 7.1.4(@spectrum-css/tokens@13.2.0) "@spectrum-css/sidenav": specifier: ^4.2.4 - version: 4.2.4(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) + version: 4.2.4(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) "@spectrum-css/table": specifier: ^5.2.5 - version: 5.2.5(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) + version: 5.2.5(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) "@spectrum-css/tokens": specifier: ^13.2.0 version: 13.2.0 @@ -64,83 +64,83 @@ importers: version: 5.1.5(@spectrum-css/tokens@13.2.0) ajv: specifier: ^8.12.0 - version: 8.16.0 + version: 8.17.1 ajv-formats: specifier: ^3.0.1 - version: 3.0.1(ajv@8.16.0) + version: 3.0.1(ajv@8.17.1) next: specifier: ^14.2.1 - version: 14.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 - version: 18.2.0 + version: 18.3.1 react-dom: specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) + version: 18.3.1(react@18.3.1) rimraf: specifier: ^5.0.5 - version: 5.0.5 + version: 5.0.10 docs/visualizer: dependencies: "@spectrum-web-components/action-button": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/button": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/button-group": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/field-group": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/field-label": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/link": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/overlay": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/popover": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/search": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/slider": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/switch": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/textfield": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/theme": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/toast": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 "@spectrum-web-components/tooltip": specifier: ^0.42.2 - version: 0.42.2 + version: 0.42.5 lit: specifier: ^3.1.3 - version: 3.1.3 + version: 3.2.0 devDependencies: "@types/node": specifier: ^20.12.7 - version: 20.14.9 + version: 20.16.10 typescript: specifier: ^5.4.5 - version: 5.5.2 + version: 5.6.2 vite: specifier: ^5.2.9 - version: 5.2.9(@types/node@20.14.9) + version: 5.4.8(@types/node@20.16.10) packages/tokens: devDependencies: @@ -148,11 +148,11 @@ importers: specifier: workspace:* version: link:../../tools/diff-generator ajv: - specifier: ^8.12.0 - version: 8.16.0 + specifier: ^8.17.1 + version: 8.17.1 ajv-formats: specifier: ^3.0.1 - version: 3.0.1(ajv@8.16.0) + version: 3.0.1(ajv@8.17.1) deep-object-diff: specifier: ^1.1.9 version: 1.1.9 @@ -166,8 +166,8 @@ importers: specifier: ^2.3.0 version: 2.3.0 tar: - specifier: ^7.0.1 - version: 7.0.1 + specifier: ^7.4.3 + version: 7.4.3 tmp-promise: specifier: ^3.0.3 version: 3.0.3 @@ -188,7 +188,7 @@ importers: version: 3.0.12 inquirer: specifier: ^9.2.23 - version: 9.3.6 + version: 9.3.7 nixt: specifier: ^0.5.1 version: 0.5.1 @@ -197,7 +197,7 @@ importers: version: 2.1.3 tar: specifier: ^7.0.1 - version: 7.0.1 + version: 7.4.3 tmp-promise: specifier: ^3.0.3 version: 3.0.3 @@ -251,10 +251,10 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/runtime@7.24.7": + "@babel/runtime@7.25.6": resolution: { - integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==, + integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==, } engines: { node: ">=6.9.0" } @@ -264,16 +264,16 @@ packages: integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, } - "@changesets/apply-release-plan@7.0.3": + "@changesets/apply-release-plan@7.0.5": resolution: { - integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==, + integrity: sha512-1cWCk+ZshEkSVEZrm2fSj1Gz8sYvxgUL4Q78+1ZZqeqfuevPTPk033/yUZ3df8BKMohkqqHfzj0HOOrG0KtXTw==, } - "@changesets/assemble-release-plan@6.0.2": + "@changesets/assemble-release-plan@6.0.4": resolution: { - integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==, + integrity: sha512-nqICnvmrwWj4w2x0fOhVj2QEGdlUuwVAwESrUo5HLzWMI1rE5SWfsr9ln+rDqWB6RQ2ZyaMZHUcU7/IRaUJS+Q==, } "@changesets/changelog-git@0.2.0": @@ -288,17 +288,17 @@ packages: integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==, } - "@changesets/cli@2.27.6": + "@changesets/cli@2.27.8": resolution: { - integrity: sha512-PB7KS5JkCQ4WSXlnfThn8CXAHVwYxFdZvYTimhi12fls/tzj9iimUhKsYwkrKSbw1AiVlGCZtihj5Wkt6siIjA==, + integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==, } hasBin: true - "@changesets/config@3.0.1": + "@changesets/config@3.0.3": resolution: { - integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==, + integrity: sha512-vqgQZMyIcuIpw9nqFIpTSNyc/wgm/Lu1zKN5vECy74u95Qx/Wa9g27HdgO4NkVAaq+BGA8wUc/qvbvVNs93n6A==, } "@changesets/errors@0.2.0": @@ -307,10 +307,10 @@ packages: integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, } - "@changesets/get-dependents-graph@2.1.0": + "@changesets/get-dependents-graph@2.1.2": resolution: { - integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==, + integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==, } "@changesets/get-github-info@0.6.0": @@ -319,10 +319,10 @@ packages: integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==, } - "@changesets/get-release-plan@4.0.2": + "@changesets/get-release-plan@4.0.4": resolution: { - integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==, + integrity: sha512-SicG/S67JmPTrdcc9Vpu0wSQt7IiuN0dc8iR5VScnnTVPfIaLvKmEGRvIaF0kcn8u5ZqLbormZNTO77bCEvyWw==, } "@changesets/get-version-range-type@0.4.0": @@ -331,16 +331,16 @@ packages: integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, } - "@changesets/git@3.0.0": + "@changesets/git@3.0.1": resolution: { - integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, + integrity: sha512-pdgHcYBLCPcLd82aRcuO0kxCDbw/yISlOtkmwmE8Odo1L6hSiZrBOsRl84eYG7DRCab/iHnOkWqExqc4wxk2LQ==, } - "@changesets/logger@0.1.0": + "@changesets/logger@0.1.1": resolution: { - integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==, + integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==, } "@changesets/parse@0.4.0": @@ -349,22 +349,22 @@ packages: integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==, } - "@changesets/pre@2.0.0": + "@changesets/pre@2.0.1": resolution: { - integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, + integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==, } - "@changesets/read@0.6.0": + "@changesets/read@0.6.1": resolution: { - integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, + integrity: sha512-jYMbyXQk3nwP25nRzQQGa1nKLY0KfoOV7VLgwucI0bUO8t8ZLCr6LZmgjXsiKuRDc+5A6doKPr9w2d+FEJ55zQ==, } - "@changesets/should-skip-package@0.1.0": + "@changesets/should-skip-package@0.1.1": resolution: { - integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==, + integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==, } "@changesets/types@4.1.0": @@ -379,334 +379,334 @@ packages: integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==, } - "@changesets/write@0.3.1": + "@changesets/write@0.3.2": resolution: { - integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==, + integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==, } - "@commitlint/cli@19.3.0": + "@commitlint/cli@19.5.0": resolution: { - integrity: sha512-LgYWOwuDR7BSTQ9OLZ12m7F/qhNY+NpAyPBgo4YNMkACE7lGuUnuQq1yi9hz1KA4+3VqpOYl8H1rY/LYK43v7g==, + integrity: sha512-gaGqSliGwB86MDmAAKAtV9SV1SHdmN8pnGq4EJU4+hLisQ7IFfx4jvU4s+pk6tl0+9bv6yT+CaZkufOinkSJIQ==, } engines: { node: ">=v18" } hasBin: true - "@commitlint/config-conventional@19.2.2": + "@commitlint/config-conventional@19.5.0": resolution: { - integrity: sha512-mLXjsxUVLYEGgzbxbxicGPggDuyWNkf25Ht23owXIH+zV2pv1eJuzLK3t1gDY5Gp6pxdE60jZnWUY5cvgL3ufw==, + integrity: sha512-OBhdtJyHNPryZKg0fFpZNOBM1ZDbntMvqMuSmpfyP86XSfwzGw4CaoYRG4RutUPg0BTK07VMRIkNJT6wi2zthg==, } engines: { node: ">=v18" } - "@commitlint/config-validator@19.0.3": + "@commitlint/config-validator@19.5.0": resolution: { - integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==, + integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==, } engines: { node: ">=v18" } - "@commitlint/ensure@19.0.3": + "@commitlint/ensure@19.5.0": resolution: { - integrity: sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==, + integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==, } engines: { node: ">=v18" } - "@commitlint/execute-rule@19.0.0": + "@commitlint/execute-rule@19.5.0": resolution: { - integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==, + integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==, } engines: { node: ">=v18" } - "@commitlint/format@19.3.0": + "@commitlint/format@19.5.0": resolution: { - integrity: sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==, + integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==, } engines: { node: ">=v18" } - "@commitlint/is-ignored@19.2.2": + "@commitlint/is-ignored@19.5.0": resolution: { - integrity: sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==, + integrity: sha512-0XQ7Llsf9iL/ANtwyZ6G0NGp5Y3EQ8eDQSxv/SRcfJ0awlBY4tHFAvwWbw66FVUaWICH7iE5en+FD9TQsokZ5w==, } engines: { node: ">=v18" } - "@commitlint/lint@19.2.2": + "@commitlint/lint@19.5.0": resolution: { - integrity: sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==, + integrity: sha512-cAAQwJcRtiBxQWO0eprrAbOurtJz8U6MgYqLz+p9kLElirzSCc0vGMcyCaA1O7AqBuxo11l1XsY3FhOFowLAAg==, } engines: { node: ">=v18" } - "@commitlint/load@19.2.0": + "@commitlint/load@19.5.0": resolution: { - integrity: sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==, + integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==, } engines: { node: ">=v18" } - "@commitlint/message@19.0.0": + "@commitlint/message@19.5.0": resolution: { - integrity: sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==, + integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==, } engines: { node: ">=v18" } - "@commitlint/parse@19.0.3": + "@commitlint/parse@19.5.0": resolution: { - integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==, + integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==, } engines: { node: ">=v18" } - "@commitlint/read@19.2.1": + "@commitlint/read@19.5.0": resolution: { - integrity: sha512-qETc4+PL0EUv7Q36lJbPG+NJiBOGg7SSC7B5BsPWOmei+Dyif80ErfWQ0qXoW9oCh7GTpTNRoaVhiI8RbhuaNw==, + integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==, } engines: { node: ">=v18" } - "@commitlint/resolve-extends@19.1.0": + "@commitlint/resolve-extends@19.5.0": resolution: { - integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==, + integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==, } engines: { node: ">=v18" } - "@commitlint/rules@19.0.3": + "@commitlint/rules@19.5.0": resolution: { - integrity: sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==, + integrity: sha512-hDW5TPyf/h1/EufSHEKSp6Hs+YVsDMHazfJ2azIk9tHPXS6UqSz1dIRs1gpqS3eMXgtkT7JH6TW4IShdqOwhAw==, } engines: { node: ">=v18" } - "@commitlint/to-lines@19.0.0": + "@commitlint/to-lines@19.5.0": resolution: { - integrity: sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==, + integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==, } engines: { node: ">=v18" } - "@commitlint/top-level@19.0.0": + "@commitlint/top-level@19.5.0": resolution: { - integrity: sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==, + integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==, } engines: { node: ">=v18" } - "@commitlint/types@19.0.3": + "@commitlint/types@19.5.0": resolution: { - integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==, + integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==, } engines: { node: ">=v18" } - "@esbuild/aix-ppc64@0.20.2": + "@esbuild/aix-ppc64@0.21.5": resolution: { - integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==, + integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, } engines: { node: ">=12" } cpu: [ppc64] os: [aix] - "@esbuild/android-arm64@0.20.2": + "@esbuild/android-arm64@0.21.5": resolution: { - integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==, + integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==, } engines: { node: ">=12" } cpu: [arm64] os: [android] - "@esbuild/android-arm@0.20.2": + "@esbuild/android-arm@0.21.5": resolution: { - integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==, + integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, } engines: { node: ">=12" } cpu: [arm] os: [android] - "@esbuild/android-x64@0.20.2": + "@esbuild/android-x64@0.21.5": resolution: { - integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==, + integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, } engines: { node: ">=12" } cpu: [x64] os: [android] - "@esbuild/darwin-arm64@0.20.2": + "@esbuild/darwin-arm64@0.21.5": resolution: { - integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==, + integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, } engines: { node: ">=12" } cpu: [arm64] os: [darwin] - "@esbuild/darwin-x64@0.20.2": + "@esbuild/darwin-x64@0.21.5": resolution: { - integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==, + integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, } engines: { node: ">=12" } cpu: [x64] os: [darwin] - "@esbuild/freebsd-arm64@0.20.2": + "@esbuild/freebsd-arm64@0.21.5": resolution: { - integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==, + integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, } engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-x64@0.20.2": + "@esbuild/freebsd-x64@0.21.5": resolution: { - integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==, + integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==, } engines: { node: ">=12" } cpu: [x64] os: [freebsd] - "@esbuild/linux-arm64@0.20.2": + "@esbuild/linux-arm64@0.21.5": resolution: { - integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==, + integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, } engines: { node: ">=12" } cpu: [arm64] os: [linux] - "@esbuild/linux-arm@0.20.2": + "@esbuild/linux-arm@0.21.5": resolution: { - integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==, + integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, } engines: { node: ">=12" } cpu: [arm] os: [linux] - "@esbuild/linux-ia32@0.20.2": + "@esbuild/linux-ia32@0.21.5": resolution: { - integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==, + integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, } engines: { node: ">=12" } cpu: [ia32] os: [linux] - "@esbuild/linux-loong64@0.20.2": + "@esbuild/linux-loong64@0.21.5": resolution: { - integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==, + integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, } engines: { node: ">=12" } cpu: [loong64] os: [linux] - "@esbuild/linux-mips64el@0.20.2": + "@esbuild/linux-mips64el@0.21.5": resolution: { - integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==, + integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, } engines: { node: ">=12" } cpu: [mips64el] os: [linux] - "@esbuild/linux-ppc64@0.20.2": + "@esbuild/linux-ppc64@0.21.5": resolution: { - integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==, + integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==, } engines: { node: ">=12" } cpu: [ppc64] os: [linux] - "@esbuild/linux-riscv64@0.20.2": + "@esbuild/linux-riscv64@0.21.5": resolution: { - integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==, + integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, } engines: { node: ">=12" } cpu: [riscv64] os: [linux] - "@esbuild/linux-s390x@0.20.2": + "@esbuild/linux-s390x@0.21.5": resolution: { - integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==, + integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, } engines: { node: ">=12" } cpu: [s390x] os: [linux] - "@esbuild/linux-x64@0.20.2": + "@esbuild/linux-x64@0.21.5": resolution: { - integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==, + integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, } engines: { node: ">=12" } cpu: [x64] os: [linux] - "@esbuild/netbsd-x64@0.20.2": + "@esbuild/netbsd-x64@0.21.5": resolution: { - integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==, + integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, } engines: { node: ">=12" } cpu: [x64] os: [netbsd] - "@esbuild/openbsd-x64@0.20.2": + "@esbuild/openbsd-x64@0.21.5": resolution: { - integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==, + integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, } engines: { node: ">=12" } cpu: [x64] os: [openbsd] - "@esbuild/sunos-x64@0.20.2": + "@esbuild/sunos-x64@0.21.5": resolution: { - integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==, + integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, } engines: { node: ">=12" } cpu: [x64] os: [sunos] - "@esbuild/win32-arm64@0.20.2": + "@esbuild/win32-arm64@0.21.5": resolution: { - integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==, + integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, } engines: { node: ">=12" } cpu: [arm64] os: [win32] - "@esbuild/win32-ia32@0.20.2": + "@esbuild/win32-ia32@0.21.5": resolution: { - integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==, + integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, } engines: { node: ">=12" } cpu: [ia32] os: [win32] - "@esbuild/win32-x64@0.20.2": + "@esbuild/win32-x64@0.21.5": resolution: { - integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==, + integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, } engines: { node: ">=12" } cpu: [x64] @@ -730,10 +730,10 @@ packages: integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==, } - "@inquirer/figures@1.0.5": + "@inquirer/figures@1.0.6": resolution: { - integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==, + integrity: sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==, } engines: { node: ">=18" } @@ -750,10 +750,10 @@ packages: } engines: { node: ">=12" } - "@isaacs/fs-minipass@4.0.0": + "@isaacs/fs-minipass@4.0.1": resolution: { - integrity: sha512-S00nN1Qt3z3dSP6Db45fj/mksrAq5XWNIJ/SWXGP8XPT2jrzEuYRCSEx08JpJwBcG2F1xgiOtBMGDU0AZHmxew==, + integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, } engines: { node: ">=18.0.0" } @@ -783,22 +783,16 @@ packages: integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, } - "@lit-labs/observers@2.0.2": - resolution: - { - integrity: sha512-eZb5+W9Cb0e/Y5m1DNxBSGTvGB2TAVTGMnTxL/IzFhPQEcZIAHewW1eVBhN8W07A5tirRaAmmF6fGL1V20p3gQ==, - } - - "@lit-labs/ssr-dom-shim@1.2.0": + "@lit-labs/observers@2.0.3": resolution: { - integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==, + integrity: sha512-CeftEJ2TId9iohDJHLjUXiSBVndqjIBaALjeTt8OmgWLh2dnIzwlj4WtPCiJw15uR1s6D6wyCsw0AoJC5/9QXw==, } - "@lit/reactive-element@1.6.3": + "@lit-labs/ssr-dom-shim@1.2.1": resolution: { - integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==, + integrity: sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==, } "@lit/reactive-element@2.0.4": @@ -826,151 +820,151 @@ packages: } hasBin: true - "@moonrepo/cli@1.26.4": + "@moonrepo/cli@1.28.3": resolution: { - integrity: sha512-a5oiGYoY/eblgDFQ1IOZAkXDVqrx0Wo/ul2zr66JBKydj3iSk9VYn46GAgQq0fPk6GZhlbRQh8FPwlowoToCEg==, + integrity: sha512-/zBs8RPOsGddZ5KmzQsoE9DPWN67+nVcF6nPFipNNe7ufC876SoVR7n4kkyMOzcgfoF+c/NEv+5fFPweKsmAsA==, } hasBin: true - "@moonrepo/core-linux-arm64-gnu@1.26.4": + "@moonrepo/core-linux-arm64-gnu@1.28.3": resolution: { - integrity: sha512-kMmp5FSpIwitLgbpz8GxhZz2ggBUbt1SF9Z0rGNdC+6ItCw/LFghn6QE30yVvZXbKl/oRW6aEcOAhvoT8+wosw==, + integrity: sha512-nf+V/0yuMftZHPoQObzpLQJSh4g3tdF3ssgNSxoEBaY0JZaYiEvdGx0M9VYCg9WlJEFquH3NErhapqEi5pV+Sg==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-arm64-musl@1.26.4": + "@moonrepo/core-linux-arm64-musl@1.28.3": resolution: { - integrity: sha512-eb/rulo46KzCEtdnhih7/DDZ5X4nS+U3Afvag/jVIFW6IcXV72dXbVIp+i+iZRcuUjJWAkEjAQ8RnVvt5A5Prw==, + integrity: sha512-mzUfVbjxL+/GESTO/4WwS7zpXwmiOKFmRJjpBjBv2kxplbj46jQUXyvGXm2VjB40+0EYJjq+9g3rhKeE5mmzTQ==, } cpu: [arm64] os: [linux] - "@moonrepo/core-linux-x64-gnu@1.26.4": + "@moonrepo/core-linux-x64-gnu@1.28.3": resolution: { - integrity: sha512-5b/fbr0ZL9bgUipZK92iPLr4ovuwZFkNvvhFic21L3cjcSWBUnUYCzYMh+jGtbv5jUIb+MIljreqnWokMX/ibQ==, + integrity: sha512-UbHtZK+NS9T76uNEvw66RjaCPUwkkekIWBn7ma88W8LXC7onoKfPsQtMHO7XD50XlRuGonzZONY7Wq4wSJprcA==, } cpu: [x64] os: [linux] - "@moonrepo/core-linux-x64-musl@1.26.4": + "@moonrepo/core-linux-x64-musl@1.28.3": resolution: { - integrity: sha512-yOvVU2Vj2Yt+o4Jm9HPHu+UwkMz2vAthNiTifHF22l2T0lTc3UNOjfNY+msFc+ECBn5eHweWfItFzEvFdrSh0g==, + integrity: sha512-vbg9Wih32mYShTinPDU7A5Yg/5XWojFjMc8IQ8KPVNdCPGEuk2f6s6yWMc5iOX9s0LCkZ88kZpGMhWi2EaPWaw==, } cpu: [x64] os: [linux] - "@moonrepo/core-macos-arm64@1.26.4": + "@moonrepo/core-macos-arm64@1.28.3": resolution: { - integrity: sha512-AK2OkHEWGzAjGG0346tW8ypQH7G992UmRh8EQd4R4NsS/C4XNQxa+XuhIDYkWJ6brDb7YxW3hTh5QMxPDnBdUQ==, + integrity: sha512-d8FOQyOW77AolThZqFYFVabWTAr+4GsVY0nybZR3zIKd47++hCPCGnus2XA5uuf08chsYK3wi5w2TkHSKtN7gw==, } cpu: [arm64] os: [darwin] - "@moonrepo/core-macos-x64@1.26.4": + "@moonrepo/core-macos-x64@1.28.3": resolution: { - integrity: sha512-KGeN8LwnrMrDbx1prn+QT1ShitEMZE9n4qGE8gqFsT/Qp95DEk5y0nVbpMsLwB8nOyhPk9zRmKcpxyUEJx/XXQ==, + integrity: sha512-0iEfr2JvE4JVEG6CoA9rWD5zUI5xQev9gnOdTmGeXvrrzOASM3bnp8C9jqDu++o4K3jMRWpgNFTIyz5vWIAXKw==, } cpu: [x64] os: [darwin] - "@moonrepo/core-windows-x64-msvc@1.26.4": + "@moonrepo/core-windows-x64-msvc@1.28.3": resolution: { - integrity: sha512-u5DGLalL9fkyMxsHV3lBzuD5VyWXL4tlKIk0PwoQPbwiqauLrW8VO1/Ab0uTZjkUsjdaVPlsfjRtBgMEWM4bLA==, + integrity: sha512-ix+82sXXq4dH9CSM2xYLlQ1wqFHX1l+rsw86YjoSy+K48vbpvTvKqkQP7trs0EQMlrW25sNJRiuEebdtm9/CLg==, } cpu: [x64] os: [win32] - "@next/env@14.2.1": + "@next/env@14.2.13": resolution: { - integrity: sha512-qsHJle3GU3CmVx7pUoXcghX4sRN+vINkbLdH611T8ZlsP//grzqVW87BSUgOZeSAD4q7ZdZicdwNe/20U2janA==, + integrity: sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw==, } - "@next/swc-darwin-arm64@14.2.1": + "@next/swc-darwin-arm64@14.2.13": resolution: { - integrity: sha512-kGjnjcIJehEcd3rT/3NAATJQndAEELk0J9GmGMXHSC75TMnvpOhONcjNHbjtcWE5HUQnIHy5JVkatrnYm1QhVw==, + integrity: sha512-IkAmQEa2Htq+wHACBxOsslt+jMoV3msvxCn0WFSfJSkv/scy+i/EukBKNad36grRxywaXUYJc9mxEGkeIs8Bzg==, } engines: { node: ">= 10" } cpu: [arm64] os: [darwin] - "@next/swc-darwin-x64@14.2.1": + "@next/swc-darwin-x64@14.2.13": resolution: { - integrity: sha512-dAdWndgdQi7BK2WSXrx4lae7mYcOYjbHJUhvOUnJjMNYrmYhxbbvJ2xElZpxNxdfA6zkqagIB9He2tQk+l16ew==, + integrity: sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog==, } engines: { node: ">= 10" } cpu: [x64] os: [darwin] - "@next/swc-linux-arm64-gnu@14.2.1": + "@next/swc-linux-arm64-gnu@14.2.13": resolution: { - integrity: sha512-2ZctfnyFOGvTkoD6L+DtQtO3BfFz4CapoHnyLTXkOxbZkVRgg3TQBUjTD/xKrO1QWeydeo8AWfZRg8539qNKrg==, + integrity: sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg==, } engines: { node: ">= 10" } cpu: [arm64] os: [linux] - "@next/swc-linux-arm64-musl@14.2.1": + "@next/swc-linux-arm64-musl@14.2.13": resolution: { - integrity: sha512-jazZXctiaanemy4r+TPIpFP36t1mMwWCKMsmrTRVChRqE6putyAxZA4PDujx0SnfvZHosjdkx9xIq9BzBB5tWg==, + integrity: sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg==, } engines: { node: ">= 10" } cpu: [arm64] os: [linux] - "@next/swc-linux-x64-gnu@14.2.1": + "@next/swc-linux-x64-gnu@14.2.13": resolution: { - integrity: sha512-VjCHWCjsAzQAAo8lkBOLEIkBZFdfW+Z18qcQ056kL4KpUYc8o59JhLDCBlhg+hINQRgzQ2UPGma2AURGOH0+Qg==, + integrity: sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA==, } engines: { node: ">= 10" } cpu: [x64] os: [linux] - "@next/swc-linux-x64-musl@14.2.1": + "@next/swc-linux-x64-musl@14.2.13": resolution: { - integrity: sha512-7HZKYKvAp4nAHiHIbY04finRqjeYvkITOGOurP1aLMexIFG/1+oCnqhGogBdc4lao/lkMW1c+AkwWSzSlLasqw==, + integrity: sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg==, } engines: { node: ">= 10" } cpu: [x64] os: [linux] - "@next/swc-win32-arm64-msvc@14.2.1": + "@next/swc-win32-arm64-msvc@14.2.13": resolution: { - integrity: sha512-YGHklaJ/Cj/F0Xd8jxgj2p8po4JTCi6H7Z3Yics3xJhm9CPIqtl8erlpK1CLv+HInDqEWfXilqatF8YsLxxA2Q==, + integrity: sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ==, } engines: { node: ">= 10" } cpu: [arm64] os: [win32] - "@next/swc-win32-ia32-msvc@14.2.1": + "@next/swc-win32-ia32-msvc@14.2.13": resolution: { - integrity: sha512-o+ISKOlvU/L43ZhtAAfCjwIfcwuZstiHVXq/BDsZwGqQE0h/81td95MPHliWCnFoikzWcYqh+hz54ZB2FIT8RA==, + integrity: sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw==, } engines: { node: ">= 10" } cpu: [ia32] os: [win32] - "@next/swc-win32-x64-msvc@14.2.1": + "@next/swc-win32-x64-msvc@14.2.13": resolution: { - integrity: sha512-GmRoTiLcvCLifujlisknv4zu9/C4i9r0ktsA8E51EMqJL4bD4CpO7lDYr7SrUxCR0tS4RVcrqKmCak24T0ohaw==, + integrity: sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw==, } engines: { node: ">= 10" } cpu: [x64] @@ -1011,130 +1005,130 @@ packages: } engines: { node: ">= 8.0.0" } - "@rollup/rollup-android-arm-eabi@4.14.3": + "@rollup/rollup-android-arm-eabi@4.22.5": resolution: { - integrity: sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==, + integrity: sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==, } cpu: [arm] os: [android] - "@rollup/rollup-android-arm64@4.14.3": + "@rollup/rollup-android-arm64@4.22.5": resolution: { - integrity: sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==, + integrity: sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==, } cpu: [arm64] os: [android] - "@rollup/rollup-darwin-arm64@4.14.3": + "@rollup/rollup-darwin-arm64@4.22.5": resolution: { - integrity: sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==, + integrity: sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==, } cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-x64@4.14.3": + "@rollup/rollup-darwin-x64@4.22.5": resolution: { - integrity: sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==, + integrity: sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==, } cpu: [x64] os: [darwin] - "@rollup/rollup-linux-arm-gnueabihf@4.14.3": + "@rollup/rollup-linux-arm-gnueabihf@4.22.5": resolution: { - integrity: sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==, + integrity: sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==, } cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm-musleabihf@4.14.3": + "@rollup/rollup-linux-arm-musleabihf@4.22.5": resolution: { - integrity: sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==, + integrity: sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==, } cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm64-gnu@4.14.3": + "@rollup/rollup-linux-arm64-gnu@4.22.5": resolution: { - integrity: sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==, + integrity: sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==, } cpu: [arm64] os: [linux] - "@rollup/rollup-linux-arm64-musl@4.14.3": + "@rollup/rollup-linux-arm64-musl@4.22.5": resolution: { - integrity: sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==, + integrity: sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==, } cpu: [arm64] os: [linux] - "@rollup/rollup-linux-powerpc64le-gnu@4.14.3": + "@rollup/rollup-linux-powerpc64le-gnu@4.22.5": resolution: { - integrity: sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==, + integrity: sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==, } cpu: [ppc64] os: [linux] - "@rollup/rollup-linux-riscv64-gnu@4.14.3": + "@rollup/rollup-linux-riscv64-gnu@4.22.5": resolution: { - integrity: sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==, + integrity: sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==, } cpu: [riscv64] os: [linux] - "@rollup/rollup-linux-s390x-gnu@4.14.3": + "@rollup/rollup-linux-s390x-gnu@4.22.5": resolution: { - integrity: sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==, + integrity: sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==, } cpu: [s390x] os: [linux] - "@rollup/rollup-linux-x64-gnu@4.14.3": + "@rollup/rollup-linux-x64-gnu@4.22.5": resolution: { - integrity: sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==, + integrity: sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==, } cpu: [x64] os: [linux] - "@rollup/rollup-linux-x64-musl@4.14.3": + "@rollup/rollup-linux-x64-musl@4.22.5": resolution: { - integrity: sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==, + integrity: sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==, } cpu: [x64] os: [linux] - "@rollup/rollup-win32-arm64-msvc@4.14.3": + "@rollup/rollup-win32-arm64-msvc@4.22.5": resolution: { - integrity: sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==, + integrity: sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==, } cpu: [arm64] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.14.3": + "@rollup/rollup-win32-ia32-msvc@4.22.5": resolution: { - integrity: sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==, + integrity: sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==, } cpu: [ia32] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.14.3": + "@rollup/rollup-win32-x64-msvc@4.22.5": resolution: { - integrity: sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==, + integrity: sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==, } cpu: [x64] os: [win32] @@ -1153,10 +1147,10 @@ packages: } engines: { node: ">=18" } - "@spectrum-css/icon@7.1.1": + "@spectrum-css/icon@7.1.4": resolution: { - integrity: sha512-6OL0E4BI38jIZYmNCjSBcl4gyp3yl/RA2bFHD2nbB5M5qOdnWFpW8Y3epmhaSnCLIa8E3bPAhI8MU5Dud25ZUA==, + integrity: sha512-LawscsP5z7LJW2rK8mCBIqPhJeLoXZySAldcsII4HkvE0a8FUztzTyhwXs5jmNz+/1ldZrAWe36pxsHxm8YRlg==, } peerDependencies: "@spectrum-css/tokens": ">=14" @@ -1222,184 +1216,184 @@ packages: peerDependencies: "@spectrum-css/tokens": ">=13" - "@spectrum-web-components/action-button@0.42.2": + "@spectrum-web-components/action-button@0.42.5": resolution: { - integrity: sha512-DtuqVNlit/zZO4MahSxRc/LbkufCWawAK+p15Shh1yPvGRCItkXa6UqtTtlmEBYvGpk0JvLhRvkPCxLdrDze3w==, + integrity: sha512-kQG+fdZE0NN6ggso8rnYplPbZ+2pj7q2OmqqH1TpJKBDiQogGKr4Wp4GoODVlWAU4AyLs6DDUFZj7y0lj7lVvA==, } - "@spectrum-web-components/base@0.42.2": + "@spectrum-web-components/base@0.42.5": resolution: { - integrity: sha512-S29lGnisgRe/awaWM1Rkte/Qs7RgKZNMzLpP7rF+/1L3ohSzaWTz1nndx/lYbYKDFxqH43jz+i4dHK9HWWcSYg==, + integrity: sha512-0Xbn8HOVh1qLf90RGKpj49Bu0kMe2tu1bWmKAOM6JC5NgIefjXl+Fq5lxF3QRgHQ1l0ZjKjqBFGrMqBTptWlZw==, } - "@spectrum-web-components/button-group@0.42.2": + "@spectrum-web-components/button-group@0.42.5": resolution: { - integrity: sha512-ki3HDMLp+neAF44k/hBcgX59YToQ1QqsHIt9llE8fuLMcRTBVrx5OjKRcBKUeu3F4AHTVVCbjM8CE3wMfMpeXw==, + integrity: sha512-TgtdzOcWGnRdfe7EJJX9H7/8TeJhHT9jHrmtLnyUzegeW5odeemn/Smr+RAemIuT4iJQOJT6QRD4FrqIIkld1A==, } - "@spectrum-web-components/button@0.42.2": + "@spectrum-web-components/button@0.42.5": resolution: { - integrity: sha512-DwMaJAHV8CgHsjUMOfMaV6W4mCU6WMX7Oey2peNwHp552C6ZWkmX9RwXL+e6A3X9wxYiiUM4VlJr7YA+y/DNCw==, + integrity: sha512-+mOOLd/GerTjkqfTQFXcqenD27cqdecQyuDacLyZ8Mx/CNJ9gUSD4cpkcUiItIUJsS2NytjTVWCa9ucQ89fD8Q==, } - "@spectrum-web-components/checkbox@0.42.2": + "@spectrum-web-components/checkbox@0.42.5": resolution: { - integrity: sha512-iaJCxB/2mv9f+6Ch7qJC+qaqIzMys8hnmOaBGPyssmlqQjYgDsxv0nXUPGUGpgNJ0LlLC03xg6LhXlu4fUa63A==, + integrity: sha512-nAb3cym+sN2CNt89l7YFuLNnRUKASLjV7X9Afhi49arU1gmdJ9qLFKsYrMBcTmLpkIChqFkaKsGRM2dBB5F4Vg==, } - "@spectrum-web-components/clear-button@0.42.2": + "@spectrum-web-components/clear-button@0.42.5": resolution: { - integrity: sha512-tTRCYDq2PHc+DLUkmTwQvskgGhsfFBiMc/zVJ/zy1/21cMy462nCYK/kJtEjOlV7GdKXTIzEFbwUxQrJ7gzh6Q==, + integrity: sha512-5ikX6mviAfh40LpXKqBUvx4nH3bNU5bMIbicSaroJVC5t1x+p1Y/nUBppbl3t9unXvjcAqQiUCbmz0bVVIFPWQ==, } - "@spectrum-web-components/close-button@0.42.2": + "@spectrum-web-components/close-button@0.42.5": resolution: { - integrity: sha512-wucYSZKXefwgUosQag3yk/+sPTyhxkZzmg6h7AeMHAXMhQN7w9bgUY29ar2tE5rVMBQRcPZsQ+vEoLZ7vPq3wg==, + integrity: sha512-sfq43FOTzxim8XlpK+Vad0v1qcIaLQEKMD/5oJ0pDGHIe34dtGYswpJA9Qe5g2ZYZQks29JIdWZGCX4YkVNUTw==, } - "@spectrum-web-components/field-group@0.42.2": + "@spectrum-web-components/field-group@0.42.5": resolution: { - integrity: sha512-kD67/l3tcvI13sEtDUGBa+FhD+rEodGOPEuqosfbcmFg/CeHKd5+qMBfBbgDwHoQrkEPTAoQGYJ+aCJgr2uEMA==, + integrity: sha512-8Jp1uUW1a3SVE9TBKi8tSVcyu6oH6aRRBXO+2K9F66DyLtdBZ5j4U42nYhLsHYQs6CHYR422+0o/2w0umU89fA==, } - "@spectrum-web-components/field-label@0.42.2": + "@spectrum-web-components/field-label@0.42.5": resolution: { - integrity: sha512-+tdnrRFDJ3zOmLXplkss/9byC6r7QS9wLlBnEpkPZy678RhS90WbjXew9hG6stURKoINoA3236MgVci1HXRbIg==, + integrity: sha512-HSainInLkjVutscF9ms33i5WKIlbMoDfkhZ2nRECOjfUP73O4tKsi/wAAkXxcIwlwekLATOaehG8//mKJIzbJQ==, } - "@spectrum-web-components/help-text@0.42.2": + "@spectrum-web-components/help-text@0.42.5": resolution: { - integrity: sha512-YlC89KHIC8wihnyHqthgX3dOc0ecdyIs2UV/68JSeeX9cYpr7y2vBVPX9NCNdPomqMfumWTi8fSZ/AXpwJZDgg==, + integrity: sha512-3TCnVJE3awymYuZ7SvHQuY2TiKm514agRsDWvEcQI4DXzMZl3zaNs9h/C88qBnemfGt7EIfA+EvmL4SezKE9xg==, } - "@spectrum-web-components/icon@0.42.2": + "@spectrum-web-components/icon@0.42.5": resolution: { - integrity: sha512-6ghFpgM+q7EBjA8lUmxZHULRKjEsJIs0Ga+Y4fAQTE8thKVMJGzOWzcFziHFf/jeUzju9HGAezAg8KkqX1klEg==, + integrity: sha512-7fECP297EgEu1XvBPLxfPRSuEM6dmkkEeuPpHXwhjbicqiOsAFVDLALB/LUghOhQBXI7Hd7Vl1eQiYYaVLKKfw==, } - "@spectrum-web-components/icons-ui@0.42.2": + "@spectrum-web-components/icons-ui@0.42.5": resolution: { - integrity: sha512-EIXwuLm7PYTxy8c/2ODlrypwcSHn6Q/MWceibEN2g06/dvmWr1lmhsUfpdAFAFGCt9PB/XYL/AeuPerPri/0+A==, + integrity: sha512-Jif910xJFC0JhmeCYWQUubI/C3kB2INHomNye2y4rWYatVE/ZMjJc4BLcs2RTRYRvt/2yJ7LUwi2SZi7q3eJmQ==, } - "@spectrum-web-components/icons-workflow@0.42.2": + "@spectrum-web-components/icons-workflow@0.42.5": resolution: { - integrity: sha512-QphXWO0Ir2XjtPb/IATVS+/KUWBVJj4D2XndxvH0tJ9H3wMBX+WK+5ztaCDKDB6HNDJYjh9W+L3rj9o+kuJKEg==, + integrity: sha512-LR9+leTSnTyy8MxVKi+bbC7pBCzNUIq97dcf6MH3smo2Xcrh+W5pIBdw4LIOAt0yzdLRagfQtMFkzQfhH7+9VQ==, } - "@spectrum-web-components/iconset@0.42.2": + "@spectrum-web-components/iconset@0.42.5": resolution: { - integrity: sha512-PJeEa+Qt0O02U1h6nkljTfnKHI4+7ZNGBSlDpG+BsJ6OCur8iRbGQY0E5QpKOcRduYP6J2Hw/qp4DtetqWEr7w==, + integrity: sha512-jdmydViHhSXVStfpweFgTyU5bC9KmX1rC03eN4fyUI/E7JES22V+SMi2jvT71gb7MHswqsS7mlPyUBlcJGrz1Q==, } - "@spectrum-web-components/infield-button@0.42.2": + "@spectrum-web-components/infield-button@0.42.5": resolution: { - integrity: sha512-kQAVSdZ1iF+hrzAFbCRKIP8+DhTeY37MoWyYFu5uUw6nVOJUKp4AYDawmPv5zkAColhk5VwUpMbAb2FvwHR+1Q==, + integrity: sha512-AiDspP53+7kFX/OGT4gi1mW6DBBRhYN1XOehWGl8YIYpkjlUrNl/xhKmNbYFIkeSawGXrxaRfqFHgWfRhL9c2A==, } - "@spectrum-web-components/link@0.42.2": + "@spectrum-web-components/link@0.42.5": resolution: { - integrity: sha512-H0s6+tb9ajHvfZEt/86wr01dhUK44eWjAXolG/Afu1iJ4MkeIOw1MXf51msXVII80Wj+lf4a0qDzfpugIDCG0w==, + integrity: sha512-HQUHX8mwmZrQYgUXMfuwZUP3DDOC7scmGqEh4/mgaG5rGoSXNJGpJvEbKHSeIzxS2Gtf0mlHrtYTXFAiWUHMMg==, } - "@spectrum-web-components/number-field@0.42.2": + "@spectrum-web-components/number-field@0.42.5": resolution: { - integrity: sha512-9tLL0eVN88DzRF6Yws2qW/MftJxSfcp8veXAQlh5m4Um2LDIcTBqxijzfi8JR5b/7dqUsaKvTELzpApSgoncnA==, + integrity: sha512-ZbpXwFdy13HzUz9C8CG7qsFYnogtefziR2S+oF9G8EJirl0kio3LF07KCTzPoN/ptm6EeWQ4IeHOA7Ztx2pt/w==, } - "@spectrum-web-components/overlay@0.42.2": + "@spectrum-web-components/overlay@0.42.5": resolution: { - integrity: sha512-uLisZaTyLOjtymTIdOHXdE4bbwjSEq8mtyiW7O69fJY7lyvaqt3bMP+xKAAd3JIubgGoS2OxQi0Wwi6RsK5Rlw==, + integrity: sha512-SFD0wyTUWglPW9Hth3pT17xQLdcggWOw8EkiYoOp0Eth6/LKCcJ0a63EFlzEXyY/DqgC24/KzE+mF2Kqcne01A==, } - "@spectrum-web-components/popover@0.42.2": + "@spectrum-web-components/popover@0.42.5": resolution: { - integrity: sha512-kvqftomKwOcUA7t4zajsl+SmNoUQ9bm9zpGnXXEaX/MIY9xeCEvLzrl7ItL/A3CAysEddimb13kV27kgmhgLxg==, + integrity: sha512-4A5IcPAzS8NjfSkZYq4P1baIVG3bM983SCTrR0GlLKvH/XYW07idUYiw2R9N/0DEDzY0c+u9U29Iec4o4CSLEw==, } - "@spectrum-web-components/progress-circle@0.42.2": + "@spectrum-web-components/progress-circle@0.42.5": resolution: { - integrity: sha512-1u39HoHXTc7WsdBuqnr02ScJeloQaZzUI92qVkOmU7zUDFmYz+jVsQNumQjAhkqP3RoLJypWu/sjYBfhWiaN1g==, + integrity: sha512-XROdnKCYjkKP0Fzoa21zzAqr/xwJ6dyQRgBafw1aMpA8gMVlcW0JHz6ZPAukWTMV6szIfU3DjP0eLmMdMPqDwg==, } - "@spectrum-web-components/reactive-controllers@0.42.2": + "@spectrum-web-components/reactive-controllers@0.42.5": resolution: { - integrity: sha512-4I+AiF7WSVvBjenC5iA7LzdTUq4SByfd7ELlTEIQsLlx4B4+el/c54xQ2DAgqdekXMLHO6sK1kHVQnxfs2EREg==, + integrity: sha512-xKg1rhGklcZ6TwYlSmtwCaLiITb6Tdl3vKkLEzCe4dfYDD0FO0kIUuI9uCVonTz6bVBTtEd1/taXJCSneUuDJg==, } - "@spectrum-web-components/search@0.42.2": + "@spectrum-web-components/search@0.42.5": resolution: { - integrity: sha512-v2rxF2wX5Rzelq/QNEHisn865zMHMYUzYdnwtvRsBkeZGiO3xRwnvm0eU1LsnBKBEQSNFZ3/XdWsAVCsHbijdQ==, + integrity: sha512-XCXafVaAc5Q1pdSowtZHE+i/p+PWDnPztpPjo09wzarveX2mrhVHjYl1BU8dfrYh8PBkOTbsEPXy10bdfEH1GQ==, } - "@spectrum-web-components/shared@0.42.2": + "@spectrum-web-components/shared@0.42.5": resolution: { - integrity: sha512-wULSKIpKhI51za5U2aoEC1XMDUtJy5ekoc9jMgHc/9R2vbaCU1guPaEfLDc8kSv+C4ulmO/mIslTMEz7CuCXBA==, + integrity: sha512-daqAnp1KBJ/j0P3I30Z1wuK6wu7p5Bij+0ofCdopo4DK4F3GntfUmRb6a9C4TNV+mWP4K+VxMtZ55aHuLG99Gw==, } - "@spectrum-web-components/slider@0.42.2": + "@spectrum-web-components/slider@0.42.5": resolution: { - integrity: sha512-rbA1R+TGtbkz1CEW5Ncd3TW+R81v63zgD/Nl1aFlj8d/pJPheLuOfp6+TDeSRiB0XNBtLMTFkQe6n0gtZYjRfw==, + integrity: sha512-tHjNLSwdvVuup35vTVEA3FwVC0QKkK13R1ZmxhM3EVu0DVoh9BnK1aOz/Z1XnHj3jfFZ7d7yjRkkzG3z8Qr11w==, } - "@spectrum-web-components/styles@0.42.2": + "@spectrum-web-components/styles@0.42.5": resolution: { - integrity: sha512-2L1UrHvdwqacNFj7Fa5ITtOZpGFsaXeSnNP/qh8yonk+3WoBaVzgKfR5Rbv68e95ck+VYhHueHrtDq049lTJVw==, + integrity: sha512-e2ZFmMTAUMg4VZVR3CpqdeZoLhqu6SN+FiQE7bDspdOAE9V4vIM4nFHVq7FntxEZYjWge3LWqHdOT75BhYG9lQ==, } - "@spectrum-web-components/switch@0.42.2": + "@spectrum-web-components/switch@0.42.5": resolution: { - integrity: sha512-2o5XKAC46PfvjsHEPJ9klyYih0SytZKFgr8VdM75jHtlpMRap+Pn55FqfDXmagMUZcWZDnng24aqCl2C0Rn8EQ==, + integrity: sha512-ISwhhci60oskx5F5nx1xdiyB2bL85dUrEG1N/TtvNAgwCZm6FENAiihXyvO2dYYg0+GDW/it0sXgl/jVhD08Xw==, } - "@spectrum-web-components/textfield@0.42.2": + "@spectrum-web-components/textfield@0.42.5": resolution: { - integrity: sha512-/q6XZbceAek10/qQcuqVa31dJQBDKimnmRhdsOGNGBvNdWktRdN1LQSWHWgwTAbiGNQl2DLrJf2V9pR1JuJxsw==, + integrity: sha512-79EFHUXqDaPG870pwtUQ+gxLvYp0cDetDRcCgyiccChJkSd3/LXH6kz2XwNjCCGsIDVfjNg7kdEKGSRNTBV2hw==, } - "@spectrum-web-components/theme@0.42.2": + "@spectrum-web-components/theme@0.42.5": resolution: { - integrity: sha512-4Kc7AZPtcYRXyrbM3hwVEKjv9IgScPzdnpN9aj8y1TEHY2lv9vbiAdPH57CoqTd4qjXFGT/h832jE3Qxjw2Q+A==, + integrity: sha512-6E+j4RfHRlxwrK+t6Sy7az2Pw2N0AaYidcJbXcZZw/luYr1NtvNWMuJq6Jg5bbusTSSNSrAXDgsi4e09MVHuNg==, } - "@spectrum-web-components/toast@0.42.2": + "@spectrum-web-components/toast@0.42.5": resolution: { - integrity: sha512-GGedn1cq8f2mUfy1DVoHwMoQzBgowFIjNk1Nas7xa1k/C950E7GjKb+Bs+SVXiQtyJqMWF7xEp7om49v4pusDw==, + integrity: sha512-FBS+OxtmEWILLdXyM0MRKHidU7ZYB21vGgx3rRx/XfzCpZ9Dj0EzLfECLJ2zP5M20wfrSmamIFyPuz0exoG0RA==, } - "@spectrum-web-components/tooltip@0.42.2": + "@spectrum-web-components/tooltip@0.42.5": resolution: { - integrity: sha512-fViMfRKjGG3+dwzn/Hm7x69gqCz0+cNmyayGrb2iWWDlXJoiA2N5HMLY4zfPSM6BXnzaz15xod1xgebmr0O34Q==, + integrity: sha512-x+tiVnmgdi1mnlOX2vWlEXW9gl2Sj7f9xzb752JJsEKLkggCP19ldXtuapOzr7clT9Ke1cBrQ/ZrBKoDRuQXJQ==, } "@swc/counter@0.1.3": @@ -1426,10 +1420,10 @@ packages: integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==, } - "@types/estree@1.0.5": + "@types/estree@1.0.6": resolution: { - integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, + integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, } "@types/istanbul-lib-coverage@2.0.6": @@ -1444,10 +1438,16 @@ packages: integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } - "@types/node@20.14.9": + "@types/node@20.16.10": resolution: { - integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==, + integrity: sha512-vQUKgWTjEIRFCvK6CyriPH3MZYiYlNy0fKiEYHWbcoWLEgs4opurGGKlebrTLqdSMIbXImH6XExNiIyNUv3WpA==, + } + + "@types/node@22.7.4": + resolution: + { + integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==, } "@types/semver@7.5.8": @@ -1491,17 +1491,17 @@ packages: peerDependencies: acorn: ^8 - acorn-walk@8.3.3: + acorn-walk@8.3.4: resolution: { - integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==, + integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==, } engines: { node: ">=0.4.0" } - acorn@8.12.0: + acorn@8.12.1: resolution: { - integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==, + integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==, } engines: { node: ">=0.4.0" } hasBin: true @@ -1524,10 +1524,10 @@ packages: ajv: optional: true - ajv@8.16.0: + ajv@8.17.1: resolution: { - integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==, + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, } ansi-colors@4.1.3: @@ -1544,12 +1544,12 @@ packages: } engines: { node: ">=8" } - ansi-escapes@6.2.1: + ansi-escapes@7.0.0: resolution: { - integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==, + integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==, } - engines: { node: ">=14.16" } + engines: { node: ">=18" } ansi-regex@5.0.1: resolution: @@ -1558,10 +1558,10 @@ packages: } engines: { node: ">=8" } - ansi-regex@6.0.1: + ansi-regex@6.1.0: resolution: { - integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, + integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, } engines: { node: ">=12" } @@ -1769,10 +1769,10 @@ packages: } engines: { node: ">=6" } - callsites@4.1.0: + callsites@4.2.0: resolution: { - integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==, + integrity: sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==, } engines: { node: ">=12.20" } @@ -1888,12 +1888,12 @@ packages: } engines: { node: ">=8" } - cli-cursor@4.0.0: + cli-cursor@5.0.0: resolution: { - integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==, + integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } cli-spinners@2.9.2: resolution: @@ -2144,10 +2144,10 @@ packages: } engines: { node: ">=6" } - debug@4.3.5: + debug@4.3.7: resolution: { - integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==, + integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, } engines: { node: ">=6.0" } peerDependencies: @@ -2242,10 +2242,10 @@ packages: } engines: { node: ">=14.16" } - emoji-regex@10.3.0: + emoji-regex@10.4.0: resolution: { - integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, + integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==, } emoji-regex@8.0.0: @@ -2286,24 +2286,31 @@ packages: } engines: { node: ">=6" } + environment@1.1.0: + resolution: + { + integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==, + } + engines: { node: ">=18" } + error-ex@1.3.2: resolution: { integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, } - esbuild@0.20.2: + esbuild@0.21.5: resolution: { - integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==, + integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, } engines: { node: ">=12" } hasBin: true - escalade@3.1.2: + escalade@3.2.0: resolution: { - integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, } engines: { node: ">=6" } @@ -2394,6 +2401,12 @@ packages: } engines: { node: ">=8.6.0" } + fast-uri@3.0.2: + resolution: + { + integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==, + } + fastq@1.17.1: resolution: { @@ -2462,22 +2475,16 @@ packages: } engines: { node: ">=18" } - find-yarn-workspace-root2@1.2.16: + focus-visible@5.2.1: resolution: { - integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, + integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==, } - focus-visible@5.2.0: + foreground-child@3.3.0: resolution: { - integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==, - } - - foreground-child@3.2.1: - resolution: - { - integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==, + integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, } engines: { node: ">=14" } @@ -2567,12 +2574,19 @@ packages: } engines: { node: ">= 6" } - glob@10.4.2: + glob@10.4.5: resolution: { - integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==, + integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, } - engines: { node: ">=16 || 14 >=14.18" } + hasBin: true + + glob@11.0.0: + resolution: + { + integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==, + } + engines: { node: 20 || >=22 } hasBin: true glob@7.2.3: @@ -2596,10 +2610,10 @@ packages: } engines: { node: ">=10" } - globby@14.0.1: + globby@14.0.2: resolution: { - integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==, + integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==, } engines: { node: ">=18" } @@ -2661,10 +2675,10 @@ packages: } engines: { node: ">=16.17.0" } - husky@9.0.11: + husky@9.1.6: resolution: { - integrity: sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==, + integrity: sha512-sqbjZKK7kf44hfdE94EoX8MZNk0n7HeW37O4YrVGCF4wzgQjp+akPAkfUK5LZ6KuR/6sqeAVuXHji+RzQgOn5A==, } engines: { node: ">=18" } hasBin: true @@ -2689,10 +2703,10 @@ packages: } engines: { node: ">=10 <11 || >=12 <13 || >=14" } - ignore@5.3.1: + ignore@5.3.2: resolution: { - integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, + integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, } engines: { node: ">= 4" } @@ -2743,10 +2757,10 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - inquirer@9.3.6: + inquirer@9.3.7: resolution: { - integrity: sha512-riK/iQB2ctwkpWYgjjWIRv3MBLt2gzb2Sj0JNQNbyTXgyXsLWcDPJ5WS5ZDTCx7BRFnJsARtYh+58fjP5M2Y0Q==, + integrity: sha512-LJKFHCSeIRq9hanN14IlOtPSTe3lNES7TYDTE2xxdAy1LS5rYphajK1qtwvj3YmQXvvk0U2Vbmcni8P9EIQW9w==, } engines: { node: ">=18" } @@ -2860,10 +2874,10 @@ packages: } engines: { node: ">=10" } - is-unicode-supported@2.0.0: + is-unicode-supported@2.1.0: resolution: { - integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==, + integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==, } engines: { node: ">=18" } @@ -2901,12 +2915,18 @@ packages: } engines: { node: ">=8" } - jackspeak@3.4.0: + jackspeak@3.4.3: resolution: { - integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==, + integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, } - engines: { node: ">=14" } + + jackspeak@4.0.2: + resolution: + { + integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==, + } + engines: { node: 20 || >=22 } jiti@1.21.6: resolution: @@ -2962,10 +2982,10 @@ packages: engines: { node: ">=6" } hasBin: true - jsonc-parser@3.2.1: + jsonc-parser@3.3.1: resolution: { - integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==, + integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==, } jsonfile@4.0.0: @@ -3008,55 +3028,37 @@ packages: integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, } - lint-staged@15.2.7: + lint-staged@15.2.10: resolution: { - integrity: sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw==, + integrity: sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==, } engines: { node: ">=18.12.0" } hasBin: true - listr2@8.2.3: + listr2@8.2.4: resolution: { - integrity: sha512-Lllokma2mtoniUOS94CcOErHWAug5iu7HOmDrvWgpw8jyQH2fomgB+7lZS4HWZxytUuQwkGOwe49FvwVaA85Xw==, + integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==, } engines: { node: ">=18.0.0" } - lit-element@3.3.3: - resolution: - { - integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==, - } - - lit-element@4.0.5: - resolution: - { - integrity: sha512-iTWskWZEtn9SyEf4aBG6rKT8GABZMrTWop1+jopsEOgEcugcXJGKuX5bEbkq9qfzY+XB4MAgCaSPwnNpdsNQ3Q==, - } - - lit-html@2.8.0: + lit-element@4.1.0: resolution: { - integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==, + integrity: sha512-gSejRUQJuMQjV2Z59KAS/D4iElUhwKpIyJvZ9w+DIagIQjfJnhR20h2Q5ddpzXGS+fF0tMZ/xEYGMnKmaI/iww==, } - lit-html@3.1.3: + lit-html@3.2.0: resolution: { - integrity: sha512-FwIbqDD8O/8lM4vUZ4KvQZjPPNx7V1VhT7vmRB8RBAO0AU6wuTVdoXiu2CivVjEGdugvcbPNBLtPE1y0ifplHA==, + integrity: sha512-pwT/HwoxqI9FggTrYVarkBKFN9MlTUpLrDHubTmW4SrkL3kkqW5gxwbxMMUnbbRHBC0WTZnYHcjDSCM559VyfA==, } - lit@2.8.0: + lit@3.2.0: resolution: { - integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==, - } - - lit@3.1.3: - resolution: - { - integrity: sha512-l4slfspEsnCcHVRTvaP7YnkTZEZggNFywLEIhQaGhYDczG+tu/vlgm/KaWIEjIp+ZyV20r2JnZctMb8LeLCG7Q==, + integrity: sha512-s6tI33Lf6VpDu7u4YqsSX78D28bYQulM+VAzsGch4fx2H0eLZnJsUBsPWmGYSGoKDNbjtRv02rio1o+UdPVwvw==, } load-json-file@7.0.1: @@ -3066,13 +3068,6 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - load-yaml-file@0.2.0: - resolution: - { - integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, - } - engines: { node: ">=6" } - locate-path@5.0.0: resolution: { @@ -3161,10 +3156,10 @@ packages: } engines: { node: ">=10" } - log-update@6.0.0: + log-update@6.1.0: resolution: { - integrity: sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==, + integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==, } engines: { node: ">=18" } @@ -3181,12 +3176,18 @@ packages: integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, } - lru-cache@10.3.0: + lru-cache@10.4.3: resolution: { - integrity: sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==, + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, } - engines: { node: 14 || >=16.14 } + + lru-cache@11.0.1: + resolution: + { + integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==, + } + engines: { node: 20 || >=22 } lru-cache@4.1.5: resolution: @@ -3249,10 +3250,10 @@ packages: } engines: { node: ">= 8" } - micromatch@4.0.7: + micromatch@4.0.8: resolution: { - integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==, + integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, } engines: { node: ">=8.6" } @@ -3277,6 +3278,13 @@ packages: } engines: { node: ">=18" } + minimatch@10.0.1: + resolution: + { + integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==, + } + engines: { node: 20 || >=22 } + minimatch@3.1.2: resolution: { @@ -3354,12 +3362,6 @@ packages: } engines: { node: ">=4" } - ms@2.1.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } - ms@2.1.3: resolution: { @@ -3381,10 +3383,10 @@ packages: engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true - next@14.2.1: + next@14.2.13: resolution: { - integrity: sha512-SF3TJnKdH43PMkCcErLPv+x/DY1YCklslk3ZmwaVoyUfDgHKexuKlf9sEfBQ69w+ue8jQ3msLb+hSj1T19hGag==, + integrity: sha512-BseY9YNw8QJSwLYD7hlZzl6QVDoSFHL/URN5K64kVEVpCsSOWeyjbIGK+dZUaRViHTaMQX8aqmnn0PHBbGZezg==, } engines: { node: ">=18.17.0" } hasBin: true @@ -3433,10 +3435,10 @@ packages: encoding: optional: true - node-gyp-build@4.8.1: + node-gyp-build@4.8.2: resolution: { - integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==, + integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==, } hasBin: true @@ -3496,6 +3498,13 @@ packages: } engines: { node: ">=12" } + onetime@7.0.0: + resolution: + { + integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==, + } + engines: { node: ">=18" } + ora@5.4.1: resolution: { @@ -3593,10 +3602,16 @@ packages: } engines: { node: ">=18" } - package-json-from-dist@1.0.0: + package-json-from-dist@1.0.1: resolution: { - integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==, + integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==, + } + + package-manager-detector@0.2.0: + resolution: + { + integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==, } param-case@3.0.4: @@ -3680,6 +3695,13 @@ packages: } engines: { node: ">=16 || 14 >=14.18" } + path-scurry@2.0.0: + resolution: + { + integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==, + } + engines: { node: 20 || >=22 } + path-type@4.0.0: resolution: { @@ -3694,10 +3716,10 @@ packages: } engines: { node: ">=12" } - picocolors@1.0.1: + picocolors@1.1.0: resolution: { - integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==, + integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==, } picomatch@2.3.1: @@ -3729,13 +3751,6 @@ packages: } engines: { node: ">=6" } - pkg-dir@4.2.0: - resolution: - { - integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, - } - engines: { node: ">=8" } - plur@5.1.0: resolution: { @@ -3750,20 +3765,13 @@ packages: } engines: { node: ^10 || ^12 || >=14 } - postcss@8.4.38: + postcss@8.4.47: resolution: { - integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==, + integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==, } engines: { node: ^10 || ^12 || >=14 } - preferred-pm@3.1.3: - resolution: - { - integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==, - } - engines: { node: ">=10" } - prettier@2.8.8: resolution: { @@ -3772,18 +3780,18 @@ packages: engines: { node: ">=10.13.0" } hasBin: true - prettier@3.3.2: + prettier@3.3.3: resolution: { - integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==, + integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==, } engines: { node: ">=14" } hasBin: true - pretty-ms@9.0.0: + pretty-ms@9.1.0: resolution: { - integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==, + integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==, } engines: { node: ">=18" } @@ -3793,31 +3801,24 @@ packages: integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, } - punycode@2.3.1: - resolution: - { - integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, - } - engines: { node: ">=6" } - queue-microtask@1.2.3: resolution: { integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } - react-dom@18.2.0: + react-dom@18.3.1: resolution: { - integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, } peerDependencies: - react: ^18.2.0 + react: ^18.3.1 - react@18.2.0: + react@18.3.1: resolution: { - integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, } engines: { node: ">=0.10.0" } @@ -3890,12 +3891,12 @@ packages: } engines: { node: ">=8" } - restore-cursor@4.0.0: + restore-cursor@5.1.0: resolution: { - integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==, + integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } reusify@1.0.4: resolution: @@ -3918,18 +3919,17 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@5.0.5: + rimraf@5.0.10: resolution: { - integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==, + integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==, } - engines: { node: ">=14" } hasBin: true - rollup@4.14.3: + rollup@4.22.5: resolution: { - integrity: sha512-ag5tTQKYsj1bhrFC9+OEWqb5O6VYgtQDO9hPDBMmIbePwhfSr+ExlcU741t8Dhw5DkPCQf6noz0jb36D6W9/hw==, + integrity: sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==, } engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true @@ -3965,10 +3965,10 @@ packages: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - scheduler@0.23.0: + scheduler@0.23.2: resolution: { - integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, } semver@6.3.1: @@ -3978,10 +3978,10 @@ packages: } hasBin: true - semver@7.6.2: + semver@7.6.3: resolution: { - integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, + integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, } engines: { node: ">=10" } hasBin: true @@ -4093,10 +4093,10 @@ packages: integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, } - source-map-js@1.2.0: + source-map-js@1.2.1: resolution: { - integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==, + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, } engines: { node: ">=0.10.0" } @@ -4154,10 +4154,10 @@ packages: } engines: { node: ">=12" } - string-width@7.1.0: + string-width@7.2.0: resolution: { - integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==, + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, } engines: { node: ">=18" } @@ -4260,10 +4260,10 @@ packages: } engines: { node: ">=10" } - tar@7.0.1: + tar@7.4.3: resolution: { - integrity: sha512-IjMhdQMZFpKsHEQT3woZVxBtCQY+0wk3CVxdRkGXEgyGa0dNS/ehPvOMr2nmfC7x5Zj2N+l6yZUpmICjLGS35w==, + integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==, } engines: { node: ">=18" } @@ -4314,6 +4314,12 @@ packages: integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, } + tinyexec@0.3.0: + resolution: + { + integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==, + } + tmp-promise@3.0.3: resolution: { @@ -4347,10 +4353,10 @@ packages: integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, } - tslib@2.6.2: + tslib@2.7.0: resolution: { - integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, + integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==, } type-fest@0.13.1: @@ -4367,10 +4373,10 @@ packages: } engines: { node: ">=10" } - typescript@5.5.2: + typescript@5.6.2: resolution: { - integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==, + integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==, } engines: { node: ">=14.17" } hasBin: true @@ -4389,10 +4395,10 @@ packages: } engines: { node: ">=8" } - undici-types@5.26.5: + undici-types@6.19.8: resolution: { - integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==, } unicode-emoji-modifier-base@1.0.0: @@ -4435,12 +4441,6 @@ packages: integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, } - uri-js@4.4.1: - resolution: - { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, - } - util-deprecate@1.0.2: resolution: { @@ -4454,10 +4454,10 @@ packages: } engines: { node: ">=10.12.0" } - vite@5.2.9: + vite@5.4.8: resolution: { - integrity: sha512-uOQWfuZBlc6Y3W/DTuQ1Sr+oIXWvqljLvS881SVmAj00d5RdgShLcuXWxseWPd4HXwiYBFW/vXHfKFeqj9uQnw==, + integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true @@ -4466,6 +4466,7 @@ packages: less: "*" lightningcss: ^1.21.0 sass: "*" + sass-embedded: "*" stylus: "*" sugarss: "*" terser: ^5.4.0 @@ -4478,6 +4479,8 @@ packages: optional: true sass: optional: true + sass-embedded: + optional: true stylus: optional: true sugarss: @@ -4510,13 +4513,6 @@ packages: integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, } - which-pm@2.0.0: - resolution: - { - integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, - } - engines: { node: ">=8.15" } - which@1.3.1: resolution: { @@ -4612,10 +4608,10 @@ packages: } engines: { node: ">=18" } - yaml@2.4.5: + yaml@2.5.1: resolution: { - integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==, + integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==, } engines: { node: ">= 14" } hasBin: true @@ -4641,10 +4637,10 @@ packages: } engines: { node: ">=10" } - yocto-queue@1.0.0: + yocto-queue@1.1.1: resolution: { - integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, + integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, } engines: { node: ">=12.20" } @@ -4661,7 +4657,7 @@ snapshots: "@babel/code-frame@7.24.7": dependencies: "@babel/highlight": 7.24.7 - picocolors: 1.0.1 + picocolors: 1.1.0 "@babel/helper-validator-identifier@7.24.7": {} @@ -4670,21 +4666,20 @@ snapshots: "@babel/helper-validator-identifier": 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.1 + picocolors: 1.1.0 - "@babel/runtime@7.24.7": + "@babel/runtime@7.25.6": dependencies: regenerator-runtime: 0.14.1 "@bcoe/v8-coverage@0.2.3": {} - "@changesets/apply-release-plan@7.0.3": + "@changesets/apply-release-plan@7.0.5": dependencies: - "@babel/runtime": 7.24.7 - "@changesets/config": 3.0.1 + "@changesets/config": 3.0.3 "@changesets/get-version-range-type": 0.4.0 - "@changesets/git": 3.0.0 - "@changesets/should-skip-package": 0.1.0 + "@changesets/git": 3.0.1 + "@changesets/should-skip-package": 0.1.1 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 detect-indent: 6.1.0 @@ -4693,17 +4688,16 @@ snapshots: outdent: 0.5.0 prettier: 2.8.8 resolve-from: 5.0.0 - semver: 7.6.2 + semver: 7.6.3 - "@changesets/assemble-release-plan@6.0.2": + "@changesets/assemble-release-plan@6.0.4": dependencies: - "@babel/runtime": 7.24.7 "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.0 - "@changesets/should-skip-package": 0.1.0 + "@changesets/get-dependents-graph": 2.1.2 + "@changesets/should-skip-package": 0.1.1 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 - semver: 7.6.2 + semver: 7.6.3 "@changesets/changelog-git@0.2.0": dependencies: @@ -4717,62 +4711,59 @@ snapshots: transitivePeerDependencies: - encoding - "@changesets/cli@2.27.6": + "@changesets/cli@2.27.8": dependencies: - "@babel/runtime": 7.24.7 - "@changesets/apply-release-plan": 7.0.3 - "@changesets/assemble-release-plan": 6.0.2 + "@changesets/apply-release-plan": 7.0.5 + "@changesets/assemble-release-plan": 6.0.4 "@changesets/changelog-git": 0.2.0 - "@changesets/config": 3.0.1 + "@changesets/config": 3.0.3 "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.0 - "@changesets/get-release-plan": 4.0.2 - "@changesets/git": 3.0.0 - "@changesets/logger": 0.1.0 - "@changesets/pre": 2.0.0 - "@changesets/read": 0.6.0 - "@changesets/should-skip-package": 0.1.0 + "@changesets/get-dependents-graph": 2.1.2 + "@changesets/get-release-plan": 4.0.4 + "@changesets/git": 3.0.1 + "@changesets/logger": 0.1.1 + "@changesets/pre": 2.0.1 + "@changesets/read": 0.6.1 + "@changesets/should-skip-package": 0.1.1 "@changesets/types": 6.0.0 - "@changesets/write": 0.3.1 + "@changesets/write": 0.3.2 "@manypkg/get-packages": 1.1.3 "@types/semver": 7.5.8 ansi-colors: 4.1.3 - chalk: 2.4.2 ci-info: 3.9.0 enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 - human-id: 1.0.2 mri: 1.2.0 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.1.3 + package-manager-detector: 0.2.0 + picocolors: 1.1.0 resolve-from: 5.0.0 - semver: 7.6.2 + semver: 7.6.3 spawndamnit: 2.0.0 term-size: 2.2.1 - "@changesets/config@3.0.1": + "@changesets/config@3.0.3": dependencies: "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.0 - "@changesets/logger": 0.1.0 + "@changesets/get-dependents-graph": 2.1.2 + "@changesets/logger": 0.1.1 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 - micromatch: 4.0.7 + micromatch: 4.0.8 "@changesets/errors@0.2.0": dependencies: extendable-error: 0.1.7 - "@changesets/get-dependents-graph@2.1.0": + "@changesets/get-dependents-graph@2.1.2": dependencies: "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 7.6.2 + picocolors: 1.1.0 + semver: 7.6.3 "@changesets/get-github-info@0.6.0": dependencies: @@ -4781,59 +4772,53 @@ snapshots: transitivePeerDependencies: - encoding - "@changesets/get-release-plan@4.0.2": + "@changesets/get-release-plan@4.0.4": dependencies: - "@babel/runtime": 7.24.7 - "@changesets/assemble-release-plan": 6.0.2 - "@changesets/config": 3.0.1 - "@changesets/pre": 2.0.0 - "@changesets/read": 0.6.0 + "@changesets/assemble-release-plan": 6.0.4 + "@changesets/config": 3.0.3 + "@changesets/pre": 2.0.1 + "@changesets/read": 0.6.1 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 "@changesets/get-version-range-type@0.4.0": {} - "@changesets/git@3.0.0": + "@changesets/git@3.0.1": dependencies: - "@babel/runtime": 7.24.7 "@changesets/errors": 0.2.0 - "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 is-subdir: 1.2.0 - micromatch: 4.0.7 + micromatch: 4.0.8 spawndamnit: 2.0.0 - "@changesets/logger@0.1.0": + "@changesets/logger@0.1.1": dependencies: - chalk: 2.4.2 + picocolors: 1.1.0 "@changesets/parse@0.4.0": dependencies: "@changesets/types": 6.0.0 js-yaml: 3.14.1 - "@changesets/pre@2.0.0": + "@changesets/pre@2.0.1": dependencies: - "@babel/runtime": 7.24.7 "@changesets/errors": 0.2.0 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 - "@changesets/read@0.6.0": + "@changesets/read@0.6.1": dependencies: - "@babel/runtime": 7.24.7 - "@changesets/git": 3.0.0 - "@changesets/logger": 0.1.0 + "@changesets/git": 3.0.1 + "@changesets/logger": 0.1.1 "@changesets/parse": 0.4.0 "@changesets/types": 6.0.0 - chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 + picocolors: 1.1.0 - "@changesets/should-skip-package@0.1.0": + "@changesets/should-skip-package@0.1.1": dependencies: - "@babel/runtime": 7.24.7 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 @@ -4841,74 +4826,73 @@ snapshots: "@changesets/types@6.0.0": {} - "@changesets/write@0.3.1": + "@changesets/write@0.3.2": dependencies: - "@babel/runtime": 7.24.7 "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - "@commitlint/cli@19.3.0(@types/node@20.14.9)(typescript@5.5.2)": + "@commitlint/cli@19.5.0(@types/node@22.7.4)(typescript@5.6.2)": dependencies: - "@commitlint/format": 19.3.0 - "@commitlint/lint": 19.2.2 - "@commitlint/load": 19.2.0(@types/node@20.14.9)(typescript@5.5.2) - "@commitlint/read": 19.2.1 - "@commitlint/types": 19.0.3 - execa: 8.0.1 + "@commitlint/format": 19.5.0 + "@commitlint/lint": 19.5.0 + "@commitlint/load": 19.5.0(@types/node@22.7.4)(typescript@5.6.2) + "@commitlint/read": 19.5.0 + "@commitlint/types": 19.5.0 + tinyexec: 0.3.0 yargs: 17.7.2 transitivePeerDependencies: - "@types/node" - typescript - "@commitlint/config-conventional@19.2.2": + "@commitlint/config-conventional@19.5.0": dependencies: - "@commitlint/types": 19.0.3 + "@commitlint/types": 19.5.0 conventional-changelog-conventionalcommits: 7.0.2 - "@commitlint/config-validator@19.0.3": + "@commitlint/config-validator@19.5.0": dependencies: - "@commitlint/types": 19.0.3 - ajv: 8.16.0 + "@commitlint/types": 19.5.0 + ajv: 8.17.1 - "@commitlint/ensure@19.0.3": + "@commitlint/ensure@19.5.0": dependencies: - "@commitlint/types": 19.0.3 + "@commitlint/types": 19.5.0 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 lodash.startcase: 4.4.0 lodash.upperfirst: 4.3.1 - "@commitlint/execute-rule@19.0.0": {} + "@commitlint/execute-rule@19.5.0": {} - "@commitlint/format@19.3.0": + "@commitlint/format@19.5.0": dependencies: - "@commitlint/types": 19.0.3 + "@commitlint/types": 19.5.0 chalk: 5.3.0 - "@commitlint/is-ignored@19.2.2": + "@commitlint/is-ignored@19.5.0": dependencies: - "@commitlint/types": 19.0.3 - semver: 7.6.2 + "@commitlint/types": 19.5.0 + semver: 7.6.3 - "@commitlint/lint@19.2.2": + "@commitlint/lint@19.5.0": dependencies: - "@commitlint/is-ignored": 19.2.2 - "@commitlint/parse": 19.0.3 - "@commitlint/rules": 19.0.3 - "@commitlint/types": 19.0.3 + "@commitlint/is-ignored": 19.5.0 + "@commitlint/parse": 19.5.0 + "@commitlint/rules": 19.5.0 + "@commitlint/types": 19.5.0 - "@commitlint/load@19.2.0(@types/node@20.14.9)(typescript@5.5.2)": + "@commitlint/load@19.5.0(@types/node@22.7.4)(typescript@5.6.2)": dependencies: - "@commitlint/config-validator": 19.0.3 - "@commitlint/execute-rule": 19.0.0 - "@commitlint/resolve-extends": 19.1.0 - "@commitlint/types": 19.0.3 + "@commitlint/config-validator": 19.5.0 + "@commitlint/execute-rule": 19.5.0 + "@commitlint/resolve-extends": 19.5.0 + "@commitlint/types": 19.5.0 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.5.2) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2) + cosmiconfig: 9.0.0(typescript@5.6.2) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.7.4)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -4916,117 +4900,116 @@ snapshots: - "@types/node" - typescript - "@commitlint/message@19.0.0": {} + "@commitlint/message@19.5.0": {} - "@commitlint/parse@19.0.3": + "@commitlint/parse@19.5.0": dependencies: - "@commitlint/types": 19.0.3 + "@commitlint/types": 19.5.0 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 - "@commitlint/read@19.2.1": + "@commitlint/read@19.5.0": dependencies: - "@commitlint/top-level": 19.0.0 - "@commitlint/types": 19.0.3 - execa: 8.0.1 + "@commitlint/top-level": 19.5.0 + "@commitlint/types": 19.5.0 git-raw-commits: 4.0.0 minimist: 1.2.8 + tinyexec: 0.3.0 - "@commitlint/resolve-extends@19.1.0": + "@commitlint/resolve-extends@19.5.0": dependencies: - "@commitlint/config-validator": 19.0.3 - "@commitlint/types": 19.0.3 + "@commitlint/config-validator": 19.5.0 + "@commitlint/types": 19.5.0 global-directory: 4.0.1 import-meta-resolve: 4.1.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 - "@commitlint/rules@19.0.3": + "@commitlint/rules@19.5.0": dependencies: - "@commitlint/ensure": 19.0.3 - "@commitlint/message": 19.0.0 - "@commitlint/to-lines": 19.0.0 - "@commitlint/types": 19.0.3 - execa: 8.0.1 + "@commitlint/ensure": 19.5.0 + "@commitlint/message": 19.5.0 + "@commitlint/to-lines": 19.5.0 + "@commitlint/types": 19.5.0 - "@commitlint/to-lines@19.0.0": {} + "@commitlint/to-lines@19.5.0": {} - "@commitlint/top-level@19.0.0": + "@commitlint/top-level@19.5.0": dependencies: find-up: 7.0.0 - "@commitlint/types@19.0.3": + "@commitlint/types@19.5.0": dependencies: "@types/conventional-commits-parser": 5.0.0 chalk: 5.3.0 - "@esbuild/aix-ppc64@0.20.2": + "@esbuild/aix-ppc64@0.21.5": optional: true - "@esbuild/android-arm64@0.20.2": + "@esbuild/android-arm64@0.21.5": optional: true - "@esbuild/android-arm@0.20.2": + "@esbuild/android-arm@0.21.5": optional: true - "@esbuild/android-x64@0.20.2": + "@esbuild/android-x64@0.21.5": optional: true - "@esbuild/darwin-arm64@0.20.2": + "@esbuild/darwin-arm64@0.21.5": optional: true - "@esbuild/darwin-x64@0.20.2": + "@esbuild/darwin-x64@0.21.5": optional: true - "@esbuild/freebsd-arm64@0.20.2": + "@esbuild/freebsd-arm64@0.21.5": optional: true - "@esbuild/freebsd-x64@0.20.2": + "@esbuild/freebsd-x64@0.21.5": optional: true - "@esbuild/linux-arm64@0.20.2": + "@esbuild/linux-arm64@0.21.5": optional: true - "@esbuild/linux-arm@0.20.2": + "@esbuild/linux-arm@0.21.5": optional: true - "@esbuild/linux-ia32@0.20.2": + "@esbuild/linux-ia32@0.21.5": optional: true - "@esbuild/linux-loong64@0.20.2": + "@esbuild/linux-loong64@0.21.5": optional: true - "@esbuild/linux-mips64el@0.20.2": + "@esbuild/linux-mips64el@0.21.5": optional: true - "@esbuild/linux-ppc64@0.20.2": + "@esbuild/linux-ppc64@0.21.5": optional: true - "@esbuild/linux-riscv64@0.20.2": + "@esbuild/linux-riscv64@0.21.5": optional: true - "@esbuild/linux-s390x@0.20.2": + "@esbuild/linux-s390x@0.21.5": optional: true - "@esbuild/linux-x64@0.20.2": + "@esbuild/linux-x64@0.21.5": optional: true - "@esbuild/netbsd-x64@0.20.2": + "@esbuild/netbsd-x64@0.21.5": optional: true - "@esbuild/openbsd-x64@0.20.2": + "@esbuild/openbsd-x64@0.21.5": optional: true - "@esbuild/sunos-x64@0.20.2": + "@esbuild/sunos-x64@0.21.5": optional: true - "@esbuild/win32-arm64@0.20.2": + "@esbuild/win32-arm64@0.21.5": optional: true - "@esbuild/win32-ia32@0.20.2": + "@esbuild/win32-ia32@0.21.5": optional: true - "@esbuild/win32-x64@0.20.2": + "@esbuild/win32-x64@0.21.5": optional: true "@floating-ui/core@1.6.0": @@ -5040,7 +5023,7 @@ snapshots: "@floating-ui/utils@0.2.1": {} - "@inquirer/figures@1.0.5": {} + "@inquirer/figures@1.0.6": {} "@internationalized/number@3.5.1": dependencies: @@ -5055,7 +5038,7 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - "@isaacs/fs-minipass@4.0.0": + "@isaacs/fs-minipass@4.0.1": dependencies: minipass: 7.1.2 @@ -5070,30 +5053,27 @@ snapshots: "@jridgewell/resolve-uri": 3.1.2 "@jridgewell/sourcemap-codec": 1.5.0 - "@lit-labs/observers@2.0.2": + "@lit-labs/observers@2.0.3": dependencies: "@lit/reactive-element": 2.0.4 + lit-html: 3.2.0 - "@lit-labs/ssr-dom-shim@1.2.0": {} - - "@lit/reactive-element@1.6.3": - dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 + "@lit-labs/ssr-dom-shim@1.2.1": {} "@lit/reactive-element@2.0.4": dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 + "@lit-labs/ssr-dom-shim": 1.2.1 "@manypkg/find-root@1.1.0": dependencies: - "@babel/runtime": 7.24.7 + "@babel/runtime": 7.25.6 "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 "@manypkg/get-packages@1.1.3": dependencies: - "@babel/runtime": 7.24.7 + "@babel/runtime": 7.25.6 "@changesets/types": 4.1.0 "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 @@ -5109,72 +5089,72 @@ snapshots: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.6.2 + semver: 7.6.3 tar: 6.2.1 transitivePeerDependencies: - encoding - supports-color - "@moonrepo/cli@1.26.4": + "@moonrepo/cli@1.28.3": dependencies: detect-libc: 2.0.3 optionalDependencies: - "@moonrepo/core-linux-arm64-gnu": 1.26.4 - "@moonrepo/core-linux-arm64-musl": 1.26.4 - "@moonrepo/core-linux-x64-gnu": 1.26.4 - "@moonrepo/core-linux-x64-musl": 1.26.4 - "@moonrepo/core-macos-arm64": 1.26.4 - "@moonrepo/core-macos-x64": 1.26.4 - "@moonrepo/core-windows-x64-msvc": 1.26.4 - - "@moonrepo/core-linux-arm64-gnu@1.26.4": + "@moonrepo/core-linux-arm64-gnu": 1.28.3 + "@moonrepo/core-linux-arm64-musl": 1.28.3 + "@moonrepo/core-linux-x64-gnu": 1.28.3 + "@moonrepo/core-linux-x64-musl": 1.28.3 + "@moonrepo/core-macos-arm64": 1.28.3 + "@moonrepo/core-macos-x64": 1.28.3 + "@moonrepo/core-windows-x64-msvc": 1.28.3 + + "@moonrepo/core-linux-arm64-gnu@1.28.3": optional: true - "@moonrepo/core-linux-arm64-musl@1.26.4": + "@moonrepo/core-linux-arm64-musl@1.28.3": optional: true - "@moonrepo/core-linux-x64-gnu@1.26.4": + "@moonrepo/core-linux-x64-gnu@1.28.3": optional: true - "@moonrepo/core-linux-x64-musl@1.26.4": + "@moonrepo/core-linux-x64-musl@1.28.3": optional: true - "@moonrepo/core-macos-arm64@1.26.4": + "@moonrepo/core-macos-arm64@1.28.3": optional: true - "@moonrepo/core-macos-x64@1.26.4": + "@moonrepo/core-macos-x64@1.28.3": optional: true - "@moonrepo/core-windows-x64-msvc@1.26.4": + "@moonrepo/core-windows-x64-msvc@1.28.3": optional: true - "@next/env@14.2.1": {} + "@next/env@14.2.13": {} - "@next/swc-darwin-arm64@14.2.1": + "@next/swc-darwin-arm64@14.2.13": optional: true - "@next/swc-darwin-x64@14.2.1": + "@next/swc-darwin-x64@14.2.13": optional: true - "@next/swc-linux-arm64-gnu@14.2.1": + "@next/swc-linux-arm64-gnu@14.2.13": optional: true - "@next/swc-linux-arm64-musl@14.2.1": + "@next/swc-linux-arm64-musl@14.2.13": optional: true - "@next/swc-linux-x64-gnu@14.2.1": + "@next/swc-linux-x64-gnu@14.2.13": optional: true - "@next/swc-linux-x64-musl@14.2.1": + "@next/swc-linux-x64-musl@14.2.13": optional: true - "@next/swc-win32-arm64-msvc@14.2.1": + "@next/swc-win32-arm64-msvc@14.2.13": optional: true - "@next/swc-win32-ia32-msvc@14.2.1": + "@next/swc-win32-ia32-msvc@14.2.13": optional: true - "@next/swc-win32-x64-msvc@14.2.1": + "@next/swc-win32-x64-msvc@14.2.13": optional: true "@nodelib/fs.scandir@2.1.5": @@ -5197,59 +5177,59 @@ snapshots: estree-walker: 2.0.2 picomatch: 2.3.1 - "@rollup/rollup-android-arm-eabi@4.14.3": + "@rollup/rollup-android-arm-eabi@4.22.5": optional: true - "@rollup/rollup-android-arm64@4.14.3": + "@rollup/rollup-android-arm64@4.22.5": optional: true - "@rollup/rollup-darwin-arm64@4.14.3": + "@rollup/rollup-darwin-arm64@4.22.5": optional: true - "@rollup/rollup-darwin-x64@4.14.3": + "@rollup/rollup-darwin-x64@4.22.5": optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.14.3": + "@rollup/rollup-linux-arm-gnueabihf@4.22.5": optional: true - "@rollup/rollup-linux-arm-musleabihf@4.14.3": + "@rollup/rollup-linux-arm-musleabihf@4.22.5": optional: true - "@rollup/rollup-linux-arm64-gnu@4.14.3": + "@rollup/rollup-linux-arm64-gnu@4.22.5": optional: true - "@rollup/rollup-linux-arm64-musl@4.14.3": + "@rollup/rollup-linux-arm64-musl@4.22.5": optional: true - "@rollup/rollup-linux-powerpc64le-gnu@4.14.3": + "@rollup/rollup-linux-powerpc64le-gnu@4.22.5": optional: true - "@rollup/rollup-linux-riscv64-gnu@4.14.3": + "@rollup/rollup-linux-riscv64-gnu@4.22.5": optional: true - "@rollup/rollup-linux-s390x-gnu@4.14.3": + "@rollup/rollup-linux-s390x-gnu@4.22.5": optional: true - "@rollup/rollup-linux-x64-gnu@4.14.3": + "@rollup/rollup-linux-x64-gnu@4.22.5": optional: true - "@rollup/rollup-linux-x64-musl@4.14.3": + "@rollup/rollup-linux-x64-musl@4.22.5": optional: true - "@rollup/rollup-win32-arm64-msvc@4.14.3": + "@rollup/rollup-win32-arm64-msvc@4.22.5": optional: true - "@rollup/rollup-win32-ia32-msvc@4.14.3": + "@rollup/rollup-win32-ia32-msvc@4.22.5": optional: true - "@rollup/rollup-win32-x64-msvc@4.14.3": + "@rollup/rollup-win32-x64-msvc@4.22.5": optional: true "@sindresorhus/is@4.6.0": {} "@sindresorhus/merge-streams@2.3.0": {} - "@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0)": dependencies: "@spectrum-css/tokens": 13.2.0 @@ -5261,15 +5241,15 @@ snapshots: dependencies: "@spectrum-css/tokens": 13.2.0 - "@spectrum-css/sidenav@4.2.4(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/sidenav@4.2.4(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": dependencies: "@spectrum-css/tokens": 13.2.0 optionalDependencies: - "@spectrum-css/icon": 7.1.1(@spectrum-css/tokens@13.2.0) + "@spectrum-css/icon": 7.1.4(@spectrum-css/tokens@13.2.0) - "@spectrum-css/table@5.2.5(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/table@5.2.5(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": dependencies: - "@spectrum-css/icon": 7.1.1(@spectrum-css/tokens@13.2.0) + "@spectrum-css/icon": 7.1.4(@spectrum-css/tokens@13.2.0) "@spectrum-css/tokens": 13.2.0 "@spectrum-css/tokens@13.2.0": {} @@ -5278,219 +5258,223 @@ snapshots: dependencies: "@spectrum-css/tokens": 13.2.0 - "@spectrum-web-components/action-button@0.42.2": + "@spectrum-web-components/action-button@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/button": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-ui": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/button": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-ui": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/base@0.42.2": + "@spectrum-web-components/base@0.42.5": dependencies: - lit: 2.8.0 + lit: 3.2.0 - "@spectrum-web-components/button-group@0.42.2": + "@spectrum-web-components/button-group@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/button": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/button": 0.42.5 - "@spectrum-web-components/button@0.42.2": + "@spectrum-web-components/button@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/clear-button": 0.42.2 - "@spectrum-web-components/close-button": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-ui": 0.42.2 - "@spectrum-web-components/progress-circle": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/clear-button": 0.42.5 + "@spectrum-web-components/close-button": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-ui": 0.42.5 + "@spectrum-web-components/progress-circle": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/checkbox@0.42.2": + "@spectrum-web-components/checkbox@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-ui": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-ui": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/clear-button@0.42.2": + "@spectrum-web-components/clear-button@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/close-button@0.42.2": + "@spectrum-web-components/close-button@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/field-group@0.42.2": + "@spectrum-web-components/field-group@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/help-text": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/help-text": 0.42.5 - "@spectrum-web-components/field-label@0.42.2": + "@spectrum-web-components/field-label@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-ui": 0.42.2 - "@spectrum-web-components/reactive-controllers": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-ui": 0.42.5 + "@spectrum-web-components/reactive-controllers": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/help-text@0.42.2": + "@spectrum-web-components/help-text@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/icons-workflow": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/icons-workflow": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/icon@0.42.2": + "@spectrum-web-components/icon@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/iconset": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/iconset": 0.42.5 - "@spectrum-web-components/icons-ui@0.42.2": + "@spectrum-web-components/icons-ui@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/iconset": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/iconset": 0.42.5 - "@spectrum-web-components/icons-workflow@0.42.2": + "@spectrum-web-components/icons-workflow@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/iconset@0.42.2": + "@spectrum-web-components/iconset@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/infield-button@0.42.2": + "@spectrum-web-components/infield-button@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/button": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/button": 0.42.5 - "@spectrum-web-components/link@0.42.2": + "@spectrum-web-components/link@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/number-field@0.42.2": + "@spectrum-web-components/number-field@0.42.5": dependencies: "@internationalized/number": 3.5.1 - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-ui": 0.42.2 - "@spectrum-web-components/infield-button": 0.42.2 - "@spectrum-web-components/reactive-controllers": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/textfield": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-ui": 0.42.5 + "@spectrum-web-components/infield-button": 0.42.5 + "@spectrum-web-components/reactive-controllers": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/textfield": 0.42.5 - "@spectrum-web-components/overlay@0.42.2": + "@spectrum-web-components/overlay@0.42.5": dependencies: "@floating-ui/dom": 1.6.3 "@floating-ui/utils": 0.2.1 - "@spectrum-web-components/action-button": 0.42.2 - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/reactive-controllers": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/theme": 0.42.2 + "@spectrum-web-components/action-button": 0.42.5 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/reactive-controllers": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/theme": 0.42.5 - "@spectrum-web-components/popover@0.42.2": + "@spectrum-web-components/popover@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/overlay": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/overlay": 0.42.5 - "@spectrum-web-components/progress-circle@0.42.2": + "@spectrum-web-components/progress-circle@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/reactive-controllers@0.42.2": + "@spectrum-web-components/reactive-controllers@0.42.5": dependencies: - lit: 2.8.0 + lit: 3.2.0 - "@spectrum-web-components/search@0.42.2": + "@spectrum-web-components/search@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/button": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-workflow": 0.42.2 - "@spectrum-web-components/textfield": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/button": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-workflow": 0.42.5 + "@spectrum-web-components/textfield": 0.42.5 - "@spectrum-web-components/shared@0.42.2": + "@spectrum-web-components/shared@0.42.5": dependencies: - "@lit-labs/observers": 2.0.2 - "@spectrum-web-components/base": 0.42.2 - focus-visible: 5.2.0 + "@lit-labs/observers": 2.0.3 + "@spectrum-web-components/base": 0.42.5 + focus-visible: 5.2.1 - "@spectrum-web-components/slider@0.42.2": + "@spectrum-web-components/slider@0.42.5": dependencies: "@internationalized/number": 3.5.1 - "@lit-labs/observers": 2.0.2 - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/field-label": 0.42.2 - "@spectrum-web-components/number-field": 0.42.2 - "@spectrum-web-components/reactive-controllers": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/theme": 0.42.2 + "@lit-labs/observers": 2.0.3 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/field-label": 0.42.5 + "@spectrum-web-components/number-field": 0.42.5 + "@spectrum-web-components/reactive-controllers": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/theme": 0.42.5 - "@spectrum-web-components/styles@0.42.2": + "@spectrum-web-components/styles@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/switch@0.42.2": + "@spectrum-web-components/switch@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/checkbox": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/checkbox": 0.42.5 - "@spectrum-web-components/textfield@0.42.2": + "@spectrum-web-components/textfield@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/help-text": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-ui": 0.42.2 - "@spectrum-web-components/icons-workflow": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/help-text": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-ui": 0.42.5 + "@spectrum-web-components/icons-workflow": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/theme@0.42.2": + "@spectrum-web-components/theme@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/styles": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/styles": 0.42.5 - "@spectrum-web-components/toast@0.42.2": + "@spectrum-web-components/toast@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/button": 0.42.2 - "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/icons-workflow": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/button": 0.42.5 + "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/icons-workflow": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/tooltip@0.42.2": + "@spectrum-web-components/tooltip@0.42.5": dependencies: - "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/overlay": 0.42.2 - "@spectrum-web-components/reactive-controllers": 0.42.2 - "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/overlay": 0.42.5 + "@spectrum-web-components/reactive-controllers": 0.42.5 + "@spectrum-web-components/shared": 0.42.5 "@swc/counter@0.1.3": {} "@swc/helpers@0.5.10": dependencies: - tslib: 2.6.2 + tslib: 2.7.0 "@swc/helpers@0.5.5": dependencies: "@swc/counter": 0.1.3 - tslib: 2.6.2 + tslib: 2.7.0 "@types/conventional-commits-parser@5.0.0": dependencies: - "@types/node": 20.14.9 + "@types/node": 20.16.10 - "@types/estree@1.0.5": {} + "@types/estree@1.0.6": {} "@types/istanbul-lib-coverage@2.0.6": {} "@types/node@12.20.55": {} - "@types/node@20.14.9": + "@types/node@20.16.10": + dependencies: + undici-types: 6.19.8 + + "@types/node@22.7.4": dependencies: - undici-types: 5.26.5 + undici-types: 6.19.8 "@types/semver@7.5.8": {} @@ -5500,15 +5484,15 @@ snapshots: dependencies: "@mapbox/node-pre-gyp": 1.0.11 "@rollup/pluginutils": 4.2.1 - acorn: 8.12.0 - acorn-import-attributes: 1.9.5(acorn@8.12.0) + acorn: 8.12.1 + acorn-import-attributes: 1.9.5(acorn@8.12.1) async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 glob: 7.2.3 graceful-fs: 4.2.11 - micromatch: 4.0.7 - node-gyp-build: 4.8.1 + micromatch: 4.0.8 + node-gyp-build: 4.8.2 resolve-from: 5.0.0 transitivePeerDependencies: - encoding @@ -5521,32 +5505,32 @@ snapshots: abbrev@1.1.1: {} - acorn-import-attributes@1.9.5(acorn@8.12.0): + acorn-import-attributes@1.9.5(acorn@8.12.1): dependencies: - acorn: 8.12.0 + acorn: 8.12.1 - acorn-walk@8.3.3: + acorn-walk@8.3.4: dependencies: - acorn: 8.12.0 + acorn: 8.12.1 - acorn@8.12.0: {} + acorn@8.12.1: {} agent-base@6.0.2: dependencies: - debug: 4.3.5 + debug: 4.3.7 transitivePeerDependencies: - supports-color - ajv-formats@3.0.1(ajv@8.16.0): + ajv-formats@3.0.1(ajv@8.17.1): optionalDependencies: - ajv: 8.16.0 + ajv: 8.17.1 - ajv@8.16.0: + ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 + fast-uri: 3.0.2 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - uri-js: 4.4.1 ansi-colors@4.1.3: {} @@ -5554,11 +5538,13 @@ snapshots: dependencies: type-fest: 0.21.3 - ansi-escapes@6.2.1: {} + ansi-escapes@7.0.0: + dependencies: + environment: 1.1.0 ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} + ansi-regex@6.1.0: {} ansi-styles@3.2.1: dependencies: @@ -5604,12 +5590,12 @@ snapshots: ava@6.1.3: dependencies: "@vercel/nft": 0.26.5 - acorn: 8.12.0 - acorn-walk: 8.3.3 + acorn: 8.12.1 + acorn-walk: 8.3.4 ansi-styles: 6.2.1 arrgv: 1.0.2 arrify: 3.0.0 - callsites: 4.1.0 + callsites: 4.2.0 cbor: 9.0.2 chalk: 5.3.0 chunkd: 2.0.1 @@ -5620,10 +5606,10 @@ snapshots: common-path-prefix: 3.0.0 concordance: 5.0.4 currently-unhandled: 0.4.1 - debug: 4.3.5 + debug: 4.3.7 emittery: 1.0.3 figures: 6.1.0 - globby: 14.0.1 + globby: 14.0.2 ignore-by-default: 2.1.0 indent-string: 5.0.0 is-plain-object: 5.0.0 @@ -5635,7 +5621,7 @@ snapshots: package-config: 5.0.0 picomatch: 3.0.1 plur: 5.1.0 - pretty-ms: 9.0.0 + pretty-ms: 9.1.0 resolve-cwd: 3.0.0 stack-utils: 2.0.6 strip-ansi: 7.1.0 @@ -5694,7 +5680,7 @@ snapshots: "@bcoe/v8-coverage": 0.2.3 "@istanbuljs/schema": 0.1.3 find-up: 5.0.0 - foreground-child: 3.2.1 + foreground-child: 3.3.0 istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 istanbul-reports: 3.1.7 @@ -5705,19 +5691,19 @@ snapshots: callsites@3.1.0: {} - callsites@4.1.0: {} + callsites@4.2.0: {} camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.6.2 + tslib: 2.7.0 caniuse-lite@1.0.30001610: {} capital-case@1.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 upper-case-first: 2.0.2 cbor@9.0.2: @@ -5750,7 +5736,7 @@ snapshots: path-case: 3.0.4 sentence-case: 3.0.4 snake-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 char-regex@1.0.2: {} @@ -5772,16 +5758,16 @@ snapshots: dependencies: restore-cursor: 3.1.0 - cli-cursor@4.0.0: + cli-cursor@5.0.0: dependencies: - restore-cursor: 4.0.0 + restore-cursor: 5.1.0 cli-spinners@2.9.2: {} cli-truncate@4.0.0: dependencies: slice-ansi: 5.0.0 - string-width: 7.1.0 + string-width: 7.2.0 cli-width@4.1.0: {} @@ -5850,7 +5836,7 @@ snapshots: js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.6.2 + semver: 7.6.3 well-known-symbols: 2.0.0 console-control-strings@1.1.0: {} @@ -5858,7 +5844,7 @@ snapshots: constant-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 upper-case: 2.0.2 conventional-changelog-angular@7.0.0: @@ -5880,21 +5866,21 @@ snapshots: convert-to-spaces@2.0.1: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2): + cosmiconfig-typescript-loader@5.0.0(@types/node@22.7.4)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2): dependencies: - "@types/node": 20.14.9 - cosmiconfig: 9.0.0(typescript@5.5.2) + "@types/node": 22.7.4 + cosmiconfig: 9.0.0(typescript@5.6.2) jiti: 1.21.6 - typescript: 5.5.2 + typescript: 5.6.2 - cosmiconfig@9.0.0(typescript@5.5.2): + cosmiconfig@9.0.0(typescript@5.6.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.6.2 cross-spawn@5.1.0: dependencies: @@ -5920,9 +5906,9 @@ snapshots: dependencies: time-zone: 1.0.0 - debug@4.3.5: + debug@4.3.7: dependencies: - ms: 2.1.2 + ms: 2.1.3 deep-extend@0.6.0: {} @@ -5947,7 +5933,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 dot-prop@5.3.0: dependencies: @@ -5959,7 +5945,7 @@ snapshots: emittery@1.0.3: {} - emoji-regex@10.3.0: {} + emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} @@ -5976,37 +5962,39 @@ snapshots: env-paths@2.2.1: {} + environment@1.1.0: {} + error-ex@1.3.2: dependencies: is-arrayish: 0.2.1 - esbuild@0.20.2: + esbuild@0.21.5: optionalDependencies: - "@esbuild/aix-ppc64": 0.20.2 - "@esbuild/android-arm": 0.20.2 - "@esbuild/android-arm64": 0.20.2 - "@esbuild/android-x64": 0.20.2 - "@esbuild/darwin-arm64": 0.20.2 - "@esbuild/darwin-x64": 0.20.2 - "@esbuild/freebsd-arm64": 0.20.2 - "@esbuild/freebsd-x64": 0.20.2 - "@esbuild/linux-arm": 0.20.2 - "@esbuild/linux-arm64": 0.20.2 - "@esbuild/linux-ia32": 0.20.2 - "@esbuild/linux-loong64": 0.20.2 - "@esbuild/linux-mips64el": 0.20.2 - "@esbuild/linux-ppc64": 0.20.2 - "@esbuild/linux-riscv64": 0.20.2 - "@esbuild/linux-s390x": 0.20.2 - "@esbuild/linux-x64": 0.20.2 - "@esbuild/netbsd-x64": 0.20.2 - "@esbuild/openbsd-x64": 0.20.2 - "@esbuild/sunos-x64": 0.20.2 - "@esbuild/win32-arm64": 0.20.2 - "@esbuild/win32-ia32": 0.20.2 - "@esbuild/win32-x64": 0.20.2 - - escalade@3.1.2: {} + "@esbuild/aix-ppc64": 0.21.5 + "@esbuild/android-arm": 0.21.5 + "@esbuild/android-arm64": 0.21.5 + "@esbuild/android-x64": 0.21.5 + "@esbuild/darwin-arm64": 0.21.5 + "@esbuild/darwin-x64": 0.21.5 + "@esbuild/freebsd-arm64": 0.21.5 + "@esbuild/freebsd-x64": 0.21.5 + "@esbuild/linux-arm": 0.21.5 + "@esbuild/linux-arm64": 0.21.5 + "@esbuild/linux-ia32": 0.21.5 + "@esbuild/linux-loong64": 0.21.5 + "@esbuild/linux-mips64el": 0.21.5 + "@esbuild/linux-ppc64": 0.21.5 + "@esbuild/linux-riscv64": 0.21.5 + "@esbuild/linux-s390x": 0.21.5 + "@esbuild/linux-x64": 0.21.5 + "@esbuild/netbsd-x64": 0.21.5 + "@esbuild/openbsd-x64": 0.21.5 + "@esbuild/sunos-x64": 0.21.5 + "@esbuild/win32-arm64": 0.21.5 + "@esbuild/win32-ia32": 0.21.5 + "@esbuild/win32-x64": 0.21.5 + + escalade@3.2.0: {} escape-string-regexp@1.0.5: {} @@ -6052,7 +6040,9 @@ snapshots: "@nodelib/fs.walk": 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.7 + micromatch: 4.0.8 + + fast-uri@3.0.2: {} fastq@1.17.1: dependencies: @@ -6060,7 +6050,7 @@ snapshots: figures@6.1.0: dependencies: - is-unicode-supported: 2.0.0 + is-unicode-supported: 2.1.0 file-uri-to-path@1.0.0: {} @@ -6096,14 +6086,9 @@ snapshots: path-exists: 5.0.0 unicorn-magic: 0.1.0 - find-yarn-workspace-root2@1.2.16: - dependencies: - micromatch: 4.0.7 - pkg-dir: 4.2.0 - - focus-visible@5.2.0: {} + focus-visible@5.2.1: {} - foreground-child@3.2.1: + foreground-child@3.3.0: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 @@ -6163,15 +6148,24 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.4.2: + glob@10.4.5: dependencies: - foreground-child: 3.2.1 - jackspeak: 3.4.0 + foreground-child: 3.3.0 + jackspeak: 3.4.3 minimatch: 9.0.5 minipass: 7.1.2 - package-json-from-dist: 1.0.0 + package-json-from-dist: 1.0.1 path-scurry: 1.11.1 + glob@11.0.0: + dependencies: + foreground-child: 3.3.0 + jackspeak: 4.0.2 + minimatch: 10.0.1 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 2.0.0 + glob@7.2.3: dependencies: fs.realpath: 1.0.0 @@ -6190,15 +6184,15 @@ snapshots: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.2 - ignore: 5.3.1 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 - globby@14.0.1: + globby@14.0.2: dependencies: "@sindresorhus/merge-streams": 2.3.0 fast-glob: 3.3.2 - ignore: 5.3.1 + ignore: 5.3.2 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -6214,14 +6208,14 @@ snapshots: header-case@2.0.4: dependencies: capital-case: 1.0.4 - tslib: 2.6.2 + tslib: 2.7.0 html-escaper@2.0.2: {} https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.5 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -6229,7 +6223,7 @@ snapshots: human-signals@5.0.0: {} - husky@9.0.11: {} + husky@9.1.6: {} iconv-lite@0.4.24: dependencies: @@ -6239,7 +6233,7 @@ snapshots: ignore-by-default@2.1.0: {} - ignore@5.3.1: {} + ignore@5.3.2: {} import-fresh@3.3.0: dependencies: @@ -6261,9 +6255,9 @@ snapshots: ini@4.1.1: {} - inquirer@9.3.6: + inquirer@9.3.7: dependencies: - "@inquirer/figures": 1.0.5 + "@inquirer/figures": 1.0.6 ansi-escapes: 4.3.2 cli-width: 4.1.0 external-editor: 3.1.0 @@ -6316,7 +6310,7 @@ snapshots: is-unicode-supported@0.1.0: {} - is-unicode-supported@2.0.0: {} + is-unicode-supported@2.1.0: {} is-windows@1.0.2: {} @@ -6335,12 +6329,16 @@ snapshots: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - jackspeak@3.4.0: + jackspeak@3.4.3: dependencies: "@isaacs/cliui": 8.0.2 optionalDependencies: "@pkgjs/parseargs": 0.11.0 + jackspeak@4.0.2: + dependencies: + "@isaacs/cliui": 8.0.2 + jiti@1.21.6: {} js-string-escape@1.0.1: {} @@ -6362,7 +6360,7 @@ snapshots: json5@2.2.3: {} - jsonc-parser@3.2.1: {} + jsonc-parser@3.3.1: {} jsonfile@4.0.0: optionalDependencies: @@ -6382,71 +6380,48 @@ snapshots: lines-and-columns@1.2.4: {} - lint-staged@15.2.7: + lint-staged@15.2.10: dependencies: chalk: 5.3.0 commander: 12.1.0 - debug: 4.3.5 + debug: 4.3.7 execa: 8.0.1 lilconfig: 3.1.2 - listr2: 8.2.3 - micromatch: 4.0.7 + listr2: 8.2.4 + micromatch: 4.0.8 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.4.5 + yaml: 2.5.1 transitivePeerDependencies: - supports-color - listr2@8.2.3: + listr2@8.2.4: dependencies: cli-truncate: 4.0.0 colorette: 2.0.20 eventemitter3: 5.0.1 - log-update: 6.0.0 + log-update: 6.1.0 rfdc: 1.4.1 wrap-ansi: 9.0.0 - lit-element@3.3.3: - dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 - "@lit/reactive-element": 1.6.3 - lit-html: 2.8.0 - - lit-element@4.0.5: + lit-element@4.1.0: dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 + "@lit-labs/ssr-dom-shim": 1.2.1 "@lit/reactive-element": 2.0.4 - lit-html: 3.1.3 - - lit-html@2.8.0: - dependencies: - "@types/trusted-types": 2.0.7 + lit-html: 3.2.0 - lit-html@3.1.3: + lit-html@3.2.0: dependencies: "@types/trusted-types": 2.0.7 - lit@2.8.0: - dependencies: - "@lit/reactive-element": 1.6.3 - lit-element: 3.3.3 - lit-html: 2.8.0 - - lit@3.1.3: + lit@3.2.0: dependencies: "@lit/reactive-element": 2.0.4 - lit-element: 4.0.5 - lit-html: 3.1.3 + lit-element: 4.1.0 + lit-html: 3.2.0 load-json-file@7.0.1: {} - load-yaml-file@0.2.0: - dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - locate-path@5.0.0: dependencies: p-locate: 4.1.0 @@ -6484,10 +6459,10 @@ snapshots: chalk: 4.1.2 is-unicode-supported: 0.1.0 - log-update@6.0.0: + log-update@6.1.0: dependencies: - ansi-escapes: 6.2.1 - cli-cursor: 4.0.0 + ansi-escapes: 7.0.0 + cli-cursor: 5.0.0 slice-ansi: 7.1.0 strip-ansi: 7.1.0 wrap-ansi: 9.0.0 @@ -6498,9 +6473,11 @@ snapshots: lower-case@2.0.2: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 + + lru-cache@10.4.3: {} - lru-cache@10.3.0: {} + lru-cache@11.0.1: {} lru-cache@4.1.5: dependencies: @@ -6513,7 +6490,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.6.2 + semver: 7.6.3 matcher@5.0.0: dependencies: @@ -6533,7 +6510,7 @@ snapshots: merge2@1.4.1: {} - micromatch@4.0.7: + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 @@ -6544,6 +6521,10 @@ snapshots: mimic-function@5.0.1: {} + minimatch@10.0.1: + dependencies: + brace-expansion: 2.0.1 + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -6570,7 +6551,7 @@ snapshots: minizlib@3.0.1: dependencies: minipass: 7.1.2 - rimraf: 5.0.5 + rimraf: 5.0.10 mkdirp@1.0.4: {} @@ -6578,35 +6559,33 @@ snapshots: mri@1.2.0: {} - ms@2.1.2: {} - ms@2.1.3: {} mute-stream@1.0.0: {} nanoid@3.3.7: {} - next@14.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + next@14.2.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@next/env": 14.2.1 + "@next/env": 14.2.13 "@swc/helpers": 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001610 graceful-fs: 4.2.11 postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(react@18.3.1) optionalDependencies: - "@next/swc-darwin-arm64": 14.2.1 - "@next/swc-darwin-x64": 14.2.1 - "@next/swc-linux-arm64-gnu": 14.2.1 - "@next/swc-linux-arm64-musl": 14.2.1 - "@next/swc-linux-x64-gnu": 14.2.1 - "@next/swc-linux-x64-musl": 14.2.1 - "@next/swc-win32-arm64-msvc": 14.2.1 - "@next/swc-win32-ia32-msvc": 14.2.1 - "@next/swc-win32-x64-msvc": 14.2.1 + "@next/swc-darwin-arm64": 14.2.13 + "@next/swc-darwin-x64": 14.2.13 + "@next/swc-linux-arm64-gnu": 14.2.13 + "@next/swc-linux-arm64-musl": 14.2.13 + "@next/swc-linux-x64-gnu": 14.2.13 + "@next/swc-linux-x64-musl": 14.2.13 + "@next/swc-win32-arm64-msvc": 14.2.13 + "@next/swc-win32-ia32-msvc": 14.2.13 + "@next/swc-win32-x64-msvc": 14.2.13 transitivePeerDependencies: - "@babel/core" - babel-plugin-macros @@ -6620,7 +6599,7 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.6.2 + tslib: 2.7.0 node-emoji@2.1.3: dependencies: @@ -6633,7 +6612,7 @@ snapshots: dependencies: whatwg-url: 5.0.0 - node-gyp-build@4.8.1: {} + node-gyp-build@4.8.2: {} nofilter@3.1.0: {} @@ -6666,6 +6645,10 @@ snapshots: dependencies: mimic-fn: 4.0.0 + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + ora@5.4.1: dependencies: bl: 4.1.0 @@ -6696,7 +6679,7 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.0.0 + yocto-queue: 1.1.1 p-locate@4.1.0: dependencies: @@ -6721,12 +6704,14 @@ snapshots: find-up-simple: 1.0.0 load-json-file: 7.0.1 - package-json-from-dist@1.0.0: {} + package-json-from-dist@1.0.1: {} + + package-manager-detector@0.2.0: {} param-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 parent-module@1.0.1: dependencies: @@ -6744,12 +6729,12 @@ snapshots: pascal-case@3.1.2: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 path-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 path-exists@4.0.0: {} @@ -6763,14 +6748,19 @@ snapshots: path-scurry@1.11.1: dependencies: - lru-cache: 10.3.0 + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-scurry@2.0.0: + dependencies: + lru-cache: 11.0.1 minipass: 7.1.2 path-type@4.0.0: {} path-type@5.0.0: {} - picocolors@1.0.1: {} + picocolors@1.1.0: {} picomatch@2.3.1: {} @@ -6780,10 +6770,6 @@ snapshots: pify@4.0.1: {} - pkg-dir@4.2.0: - dependencies: - find-up: 4.1.0 - plur@5.1.0: dependencies: irregular-plurals: 3.5.0 @@ -6791,43 +6777,34 @@ snapshots: postcss@8.4.31: dependencies: nanoid: 3.3.7 - picocolors: 1.0.1 - source-map-js: 1.2.0 + picocolors: 1.1.0 + source-map-js: 1.2.1 - postcss@8.4.38: + postcss@8.4.47: dependencies: nanoid: 3.3.7 - picocolors: 1.0.1 - source-map-js: 1.2.0 - - preferred-pm@3.1.3: - dependencies: - find-up: 5.0.0 - find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.0.0 + picocolors: 1.1.0 + source-map-js: 1.2.1 prettier@2.8.8: {} - prettier@3.3.2: {} + prettier@3.3.3: {} - pretty-ms@9.0.0: + pretty-ms@9.1.0: dependencies: parse-ms: 4.0.0 pseudomap@1.0.2: {} - punycode@2.3.1: {} - queue-microtask@1.2.3: {} - react-dom@18.2.0(react@18.2.0): + react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.0 + react: 18.3.1 + scheduler: 0.23.2 - react@18.2.0: + react@18.3.1: dependencies: loose-envify: 1.4.0 @@ -6865,10 +6842,10 @@ snapshots: onetime: 5.1.2 signal-exit: 3.0.7 - restore-cursor@4.0.0: + restore-cursor@5.1.0: dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 + onetime: 7.0.0 + signal-exit: 4.1.0 reusify@1.0.4: {} @@ -6878,30 +6855,30 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@5.0.5: + rimraf@5.0.10: dependencies: - glob: 10.4.2 + glob: 10.4.5 - rollup@4.14.3: + rollup@4.22.5: dependencies: - "@types/estree": 1.0.5 + "@types/estree": 1.0.6 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.14.3 - "@rollup/rollup-android-arm64": 4.14.3 - "@rollup/rollup-darwin-arm64": 4.14.3 - "@rollup/rollup-darwin-x64": 4.14.3 - "@rollup/rollup-linux-arm-gnueabihf": 4.14.3 - "@rollup/rollup-linux-arm-musleabihf": 4.14.3 - "@rollup/rollup-linux-arm64-gnu": 4.14.3 - "@rollup/rollup-linux-arm64-musl": 4.14.3 - "@rollup/rollup-linux-powerpc64le-gnu": 4.14.3 - "@rollup/rollup-linux-riscv64-gnu": 4.14.3 - "@rollup/rollup-linux-s390x-gnu": 4.14.3 - "@rollup/rollup-linux-x64-gnu": 4.14.3 - "@rollup/rollup-linux-x64-musl": 4.14.3 - "@rollup/rollup-win32-arm64-msvc": 4.14.3 - "@rollup/rollup-win32-ia32-msvc": 4.14.3 - "@rollup/rollup-win32-x64-msvc": 4.14.3 + "@rollup/rollup-android-arm-eabi": 4.22.5 + "@rollup/rollup-android-arm64": 4.22.5 + "@rollup/rollup-darwin-arm64": 4.22.5 + "@rollup/rollup-darwin-x64": 4.22.5 + "@rollup/rollup-linux-arm-gnueabihf": 4.22.5 + "@rollup/rollup-linux-arm-musleabihf": 4.22.5 + "@rollup/rollup-linux-arm64-gnu": 4.22.5 + "@rollup/rollup-linux-arm64-musl": 4.22.5 + "@rollup/rollup-linux-powerpc64le-gnu": 4.22.5 + "@rollup/rollup-linux-riscv64-gnu": 4.22.5 + "@rollup/rollup-linux-s390x-gnu": 4.22.5 + "@rollup/rollup-linux-x64-gnu": 4.22.5 + "@rollup/rollup-linux-x64-musl": 4.22.5 + "@rollup/rollup-win32-arm64-msvc": 4.22.5 + "@rollup/rollup-win32-ia32-msvc": 4.22.5 + "@rollup/rollup-win32-x64-msvc": 4.22.5 fsevents: 2.3.3 run-async@3.0.0: {} @@ -6912,24 +6889,24 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 safe-buffer@5.2.1: {} safer-buffer@2.1.2: {} - scheduler@0.23.0: + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 semver@6.3.1: {} - semver@7.6.2: {} + semver@7.6.3: {} sentence-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 upper-case-first: 2.0.2 serialize-error@7.0.1: @@ -6977,9 +6954,9 @@ snapshots: snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 - source-map-js@1.2.0: {} + source-map-js@1.2.1: {} spawndamnit@2.0.0: dependencies: @@ -7010,9 +6987,9 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string-width@7.1.0: + string-width@7.2.0: dependencies: - emoji-regex: 10.3.0 + emoji-regex: 10.4.0 get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 @@ -7026,7 +7003,7 @@ snapshots: strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 strip-bom@3.0.0: {} @@ -7042,16 +7019,16 @@ snapshots: change-case: 4.1.2 commander: 8.3.0 fs-extra: 10.1.0 - glob: 10.4.2 + glob: 10.4.5 json5: 2.2.3 - jsonc-parser: 3.2.1 + jsonc-parser: 3.3.1 lodash: 4.17.21 tinycolor2: 1.6.0 - styled-jsx@5.1.1(react@18.2.0): + styled-jsx@5.1.1(react@18.3.1): dependencies: client-only: 0.0.1 - react: 18.2.0 + react: 18.3.1 supertap@3.0.1: dependencies: @@ -7084,11 +7061,11 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - tar@7.0.1: + tar@7.4.3: dependencies: - "@isaacs/fs-minipass": 4.0.0 + "@isaacs/fs-minipass": 4.0.1 chownr: 3.0.0 - minipass: 5.0.0 + minipass: 7.1.2 minizlib: 3.0.1 mkdirp: 3.0.1 yallist: 5.0.0 @@ -7111,6 +7088,8 @@ snapshots: tinycolor2@1.6.0: {} + tinyexec@0.3.0: {} + tmp-promise@3.0.3: dependencies: tmp: 0.2.3 @@ -7127,19 +7106,19 @@ snapshots: tr46@0.0.3: {} - tslib@2.6.2: {} + tslib@2.7.0: {} type-fest@0.13.1: {} type-fest@0.21.3: {} - typescript@5.5.2: {} + typescript@5.6.2: {} typical@4.0.0: {} typical@5.2.0: {} - undici-types@5.26.5: {} + undici-types@6.19.8: {} unicode-emoji-modifier-base@1.0.0: {} @@ -7151,15 +7130,11 @@ snapshots: upper-case-first@2.0.2: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 upper-case@2.0.2: dependencies: - tslib: 2.6.2 - - uri-js@4.4.1: - dependencies: - punycode: 2.3.1 + tslib: 2.7.0 util-deprecate@1.0.2: {} @@ -7169,13 +7144,13 @@ snapshots: "@types/istanbul-lib-coverage": 2.0.6 convert-source-map: 2.0.0 - vite@5.2.9(@types/node@20.14.9): + vite@5.4.8(@types/node@20.16.10): dependencies: - esbuild: 0.20.2 - postcss: 8.4.38 - rollup: 4.14.3 + esbuild: 0.21.5 + postcss: 8.4.47 + rollup: 4.22.5 optionalDependencies: - "@types/node": 20.14.9 + "@types/node": 20.16.10 fsevents: 2.3.3 wcwidth@1.0.1: @@ -7191,11 +7166,6 @@ snapshots: tr46: 0.0.3 webidl-conversions: 3.0.1 - which-pm@2.0.0: - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - which@1.3.1: dependencies: isexe: 2.0.0 @@ -7234,7 +7204,7 @@ snapshots: wrap-ansi@9.0.0: dependencies: ansi-styles: 6.2.1 - string-width: 7.1.0 + string-width: 7.2.0 strip-ansi: 7.1.0 wrappy@1.0.2: {} @@ -7252,14 +7222,14 @@ snapshots: yallist@5.0.0: {} - yaml@2.4.5: {} + yaml@2.5.1: {} yargs-parser@21.1.1: {} yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 @@ -7268,6 +7238,6 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.0.0: {} + yocto-queue@1.1.1: {} yoctocolors-cjs@2.1.2: {} From 72e24fde8f61b4dbf8fe716fb0c1cd05a71523e0 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Thu, 22 Aug 2024 16:16:43 +0000 Subject: [PATCH 241/295] [create-pull-request] automated change --- packages/tokens/src/color-aliases.json | 371 ++++++++++++-- packages/tokens/src/color-component.json | 2 +- packages/tokens/src/color-palette.json | 38 +- packages/tokens/src/layout-component.json | 468 +++++++++++++++--- .../tokens/src/semantic-color-palette.json | 79 ++- 5 files changed, 832 insertions(+), 126 deletions(-) diff --git a/packages/tokens/src/color-aliases.json b/packages/tokens/src/color-aliases.json index 3148bded..5f99619b 100644 --- a/packages/tokens/src/color-aliases.json +++ b/packages/tokens/src/color-aliases.json @@ -216,7 +216,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-700}", + "value": "{accent-color-800}", "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" }, "wireframe": { @@ -236,7 +236,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-600}", + "value": "{accent-color-700}", "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" }, "wireframe": { @@ -256,7 +256,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-600}", + "value": "{accent-color-700}", "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" }, "wireframe": { @@ -276,7 +276,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-600}", + "value": "{accent-color-700}", "uuid": "af809118-7a97-409c-925f-8d7636a791c8" }, "wireframe": { @@ -301,7 +301,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-700}", + "value": "{informative-color-800}", "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" }, "wireframe": { @@ -321,7 +321,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-600}", + "value": "{informative-color-700}", "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" }, "wireframe": { @@ -341,7 +341,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-600}", + "value": "{informative-color-700}", "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" }, "wireframe": { @@ -361,7 +361,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-600}", + "value": "{informative-color-700}", "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" }, "wireframe": { @@ -381,7 +381,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", + "value": "{negative-color-800}", "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" }, "wireframe": { @@ -401,7 +401,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-600}", + "value": "{negative-color-700}", "uuid": "648da867-549e-47c3-9312-e9cfda288705" }, "wireframe": { @@ -421,7 +421,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-600}", + "value": "{negative-color-700}", "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" }, "wireframe": { @@ -441,7 +441,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-600}", + "value": "{negative-color-700}", "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" }, "wireframe": { @@ -461,7 +461,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", + "value": "{positive-color-800}", "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" }, "wireframe": { @@ -481,7 +481,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-600}", + "value": "{positive-color-700}", "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" }, "wireframe": { @@ -501,7 +501,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-600}", + "value": "{positive-color-700}", "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" }, "wireframe": { @@ -521,7 +521,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-600}", + "value": "{positive-color-700}", "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" }, "wireframe": { @@ -596,7 +596,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-700}", + "value": "{red-800}", "uuid": "ce074ee2-a2a2-4da3-a99e-603524193d46" }, "wireframe": { @@ -696,7 +696,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-700}", + "value": "{green-800}", "uuid": "49170573-9c22-42e1-a1ce-cd3d3972ddb7" }, "wireframe": { @@ -716,7 +716,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-700}", + "value": "{seafoam-800}", "uuid": "9a727140-328d-430f-9b10-8965eebe77d1" }, "wireframe": { @@ -736,7 +736,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-700}", + "value": "{cyan-800}", "uuid": "543af64f-9c28-4e88-8597-3259cd7ebf1f" }, "wireframe": { @@ -756,7 +756,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-700}", + "value": "{blue-800}", "uuid": "83591a94-83e1-4557-8f50-cc1fe9793b76" }, "wireframe": { @@ -776,7 +776,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-700}", + "value": "{indigo-800}", "uuid": "b7f5a677-4e89-40e1-8324-7619a628ce8b" }, "wireframe": { @@ -796,7 +796,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-700}", + "value": "{purple-800}", "uuid": "e577d521-0271-4226-a094-624b35a05826" }, "wireframe": { @@ -816,7 +816,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-700}", + "value": "{fuchsia-800}", "uuid": "7b4d71d3-ad78-4e02-a48e-fa79f40854a2" }, "wireframe": { @@ -836,7 +836,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-700}", + "value": "{magenta-800}", "uuid": "5867d764-d909-4490-b947-533e89997d0a" }, "wireframe": { @@ -1041,7 +1041,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", + "value": "{negative-color-900}", "uuid": "70cb0316-5b7a-416c-bf93-7d8885c4fce6" }, "wireframe": { @@ -1056,7 +1056,7 @@ "sets": { "light": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-700}", + "value": "{notice-color-800}", "uuid": "b8b38df6-aac5-49fc-99bb-d64a543c5bf8" }, "dark": { @@ -1076,12 +1076,12 @@ "sets": { "light": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", + "value": "{positive-color-800}", "uuid": "455acfc0-1997-4fee-b1dc-3c91bbd9fca2" }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-800}", + "value": "{positive-color-900}", "uuid": "25e8289f-6c82-4485-8920-a187f790cd47" }, "wireframe": { @@ -1566,7 +1566,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-700}", + "value": "{brown-800}", "uuid": "c6dcdb8e-4966-4de6-a74a-fffa0793d58e" }, "wireframe": { @@ -1586,7 +1586,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-700}", + "value": "{cinnamon-800}", "uuid": "d442e5b5-5083-443d-ba60-12c60406c452" }, "wireframe": { @@ -1606,7 +1606,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-700}", + "value": "{pink-800}", "uuid": "3a363aa8-cf27-48a1-8c61-b1f1eaff6110" }, "wireframe": { @@ -1626,7 +1626,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-700}", + "value": "{silver-800}", "uuid": "a6e04390-003e-4565-bf96-e0fb8a791cb9" }, "wireframe": { @@ -1646,7 +1646,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-700}", + "value": "{turquoise-800}", "uuid": "6beacbfc-6d61-4567-86fe-39771550cf20" }, "wireframe": { @@ -1732,9 +1732,19 @@ "uuid": "e475981f-97af-479c-859b-7619dd87c448" }, "neutral-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-300}", + "uuid": "9a9589e8-c08c-486f-a42f-8e139dedaa37" + } + } }, "static-black-text-color": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", @@ -1775,5 +1785,290 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-color-300}", "uuid": "83c30113-68b5-475b-ba46-9179c9ff7e8d" + }, + "gray-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "83fd0c1f-fbf3-4540-b370-6f44a6dbba7e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-300}", + "uuid": "a95998aa-d6ce-4090-9743-614196862acf" + } + } + }, + "blue-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-200}", + "uuid": "7d52711e-43fa-4a95-a7b1-3a7367570596" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{blue-300}", + "uuid": "7da4709c-caf3-401a-a2ce-07186a7e8e8c" + } + } + }, + "green-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-200}", + "uuid": "3b582b64-988e-4b5d-a08d-e04269403536" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{green-300}", + "uuid": "e10ef55e-c18d-4b73-97d0-330b480e9aa4" + } + } + }, + "orange-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-200}", + "uuid": "e7e1eb3c-7590-4622-a261-8de879bb1500" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{orange-300}", + "uuid": "9b2505cc-2a71-4b1e-804d-3f2ffa69d06c" + } + } + }, + "red-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-200}", + "uuid": "5d7cd7c1-66fa-49d4-923b-8cca2dcb4726" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{red-300}", + "uuid": "c098c385-7fce-4f16-b1d1-54a86c608e64" + } + } + }, + "brown-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-200}", + "uuid": "4f1f131b-b6d1-401b-82ff-be6fc0cce9f3" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{brown-300}", + "uuid": "77b47209-4527-462b-a11f-b3e5f47857ec" + } + } + }, + "cinnamon-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-200}", + "uuid": "4d114a18-a876-4b01-a356-64b6098496f4" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cinnamon-300}", + "uuid": "68b6af88-a951-48f8-89c3-9d599a05f4dc" + } + } + }, + "celery-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-200}", + "uuid": "cf459b71-0d91-4cb4-96b8-f536e553f66e" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{celery-300}", + "uuid": "67618d20-60a0-44d9-b98a-a84faf409788" + } + } + }, + "chartreuse-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-200}", + "uuid": "2dd50902-f9bb-4f79-b31c-3997f4fd2163" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{chartreuse-300}", + "uuid": "b80c47b0-222b-49a2-9012-1465a4575092" + } + } + }, + "cyan-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cyan-200}", + "uuid": "084200e3-85bf-496e-b12a-b439e108b9fb" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{cyan-300}", + "uuid": "740e1c42-e68c-4c10-9bcd-30dc0bae6418" + } + } + }, + "fuchsia-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-200}", + "uuid": "9bb9c1e9-6067-49a4-b4af-13ccd87830d9" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{fuchsia-300}", + "uuid": "3e62d682-c770-498d-a25a-5544775aeaa1" + } + } + }, + "indigo-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-200}", + "uuid": "dda05431-bce9-4686-8738-78fb409ab28f" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{indigo-300}", + "uuid": "533023cb-f78a-4f1c-af52-244b3c10a7bb" + } + } + }, + "magenta-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-200}", + "uuid": "09787c85-44e0-4efe-b427-f6e7dde544a4" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{magenta-300}", + "uuid": "143b0387-7069-4bef-b852-9c456d692b88" + } + } + }, + "pink-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-200}", + "uuid": "41f3d269-85d6-4c82-9b1c-e40ea508fa78" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{pink-300}", + "uuid": "72400c8f-2e44-4757-8be6-3c1eb28d9606" + } + } + }, + "purple-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-200}", + "uuid": "a53f9f9a-8fde-4de2-83a3-944e1c4556c1" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{purple-300}", + "uuid": "896f2a2f-4d02-4104-ac33-a3705a9c61e3" + } + } + }, + "seafoam-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{seafoam-200}", + "uuid": "7623166b-5320-40eb-8a5f-2cd12f17bdb2" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{seafoam-300}", + "uuid": "73620c8b-3943-46c0-acb8-d517e7e6081e" + } + } + }, + "silver-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-200}", + "uuid": "c80f665a-801e-45c8-b59b-8b9b47ebb356" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{silver-300}", + "uuid": "6f596774-e326-4d80-bf1d-23f7ad1f4ccb" + } + } + }, + "turquoise-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-200}", + "uuid": "aa7d44fd-6c77-43dc-8981-4200356fd02a" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{turquoise-300}", + "uuid": "5e5d9ba8-df94-43e1-ad40-f78312925ec5" + } + } + }, + "yellow-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-200}", + "uuid": "5d5cfc7a-e6f4-4d6d-a39b-359350ddd280" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{yellow-300}", + "uuid": "fcb0fe04-3498-4cfa-964d-5134bbcc74c6" + } + } } -} +} \ No newline at end of file diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index a324170c..c7c9bdad 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -430,4 +430,4 @@ "value": "{gray-200}", "uuid": "71840c7b-acdd-45b9-a228-5091591f5405" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index a7b6e6aa..413b2369 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -597,7 +597,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(69, 110, 254)", + "value": "rgb(64, 105, 253)", "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" }, "wireframe": { @@ -933,7 +933,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(230, 54, 35)", + "value": "rgb(223, 52, 34)", "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" }, "wireframe": { @@ -1269,7 +1269,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(205, 86, 0)", + "value": "rgb(199, 82, 0)", "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" }, "wireframe": { @@ -1605,7 +1605,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 110, 0)", + "value": "rgb(164, 106, 0)", "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" }, "wireframe": { @@ -1941,7 +1941,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(109, 131, 0)", + "value": "rgb(106, 127, 0)", "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" }, "wireframe": { @@ -2277,7 +2277,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(69, 138, 19)", + "value": "rgb(66, 134, 18)", "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" }, "wireframe": { @@ -2613,7 +2613,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(6, 140, 82)", + "value": "rgb(6, 136, 80)", "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" }, "wireframe": { @@ -2949,7 +2949,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 138, 116)", + "value": "rgb(8, 134, 112)", "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" }, "wireframe": { @@ -3285,7 +3285,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 128, 194)", + "value": "rgb(13, 125, 186)", "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" }, "wireframe": { @@ -3621,7 +3621,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(119, 97, 252)", + "value": "rgb(116, 91, 252)", "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" }, "wireframe": { @@ -3957,7 +3957,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(161, 84, 229)", + "value": "rgb(157, 78, 228)", "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" }, "wireframe": { @@ -4293,7 +4293,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 64, 212)", + "value": "rgb(186, 60, 206)", "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" }, "wireframe": { @@ -4629,7 +4629,7 @@ }, "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(231, 41, 105)", + "value": "rgb(224, 38, 101)", "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" }, "wireframe": { @@ -4960,7 +4960,7 @@ "sets": { "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(220, 47, 156)", + "value": "rgb(213, 45, 151)", "uuid": "86b686e1-d580-4fc0-9246-8b94ad2fed96" }, "light": { @@ -5296,7 +5296,7 @@ "sets": { "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(9, 135, 147)", + "value": "rgb(9, 131, 142)", "uuid": "69ae2217-ba32-41ca-a38f-8f19dcc5cf76" }, "light": { @@ -5632,7 +5632,7 @@ "sets": { "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(148, 118, 73)", + "value": "rgb(143, 114, 69)", "uuid": "e21a0edf-a81a-46a0-a849-11111cb89516" }, "light": { @@ -5968,7 +5968,7 @@ "sets": { "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(123, 123, 123)", + "value": "rgb(118, 118, 118)", "uuid": "3f481be4-bdd3-45b8-bcfe-c7577cac40d4" }, "light": { @@ -6304,7 +6304,7 @@ "sets": { "dark": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(179, 103, 64)", + "value": "rgb(176, 98, 59)", "uuid": "58777c5b-8e62-49fe-8e0b-0f8b5127225c" }, "light": { @@ -6488,4 +6488,4 @@ }, "private": true } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 0f44e432..347028ae 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -3374,9 +3374,10 @@ }, "illustrated-message-maximum-width": { "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "380px", - "uuid": "0e464925-5524-4fcc-a2f1-54ef42a2990a" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{illustrated-message-vertical-maximum-width}", + "uuid": "0e464925-5524-4fcc-a2f1-54ef42a2990a", + "deprecated": true }, "illustrated-message-title-size": { "component": "illustrated-message", @@ -4172,7 +4173,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", + "value": "6px", "uuid": "0ec68b5a-4251-4727-a689-b10722ce1a43" }, "mobile": { @@ -4304,65 +4305,133 @@ }, "table-row-height-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-small}", + "uuid": "fd53964b-cf4a-4cdf-b088-418364b1c518" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-small}", + "uuid": "cdbb999d-c2a9-4325-9689-bede2ad3559a" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-height-small instead." + }, + "table-row-height-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "32px", - "uuid": "fd53964b-cf4a-4cdf-b088-418364b1c518" + "uuid": "10b892a0-3c97-4af6-8ecc-3359e8cd1302" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", - "uuid": "cdbb999d-c2a9-4325-9689-bede2ad3559a" + "uuid": "77a26f7c-2f71-4021-a1f2-a2af7c69a111" } } }, "table-row-height-medium-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-medium}", + "uuid": "1dc88a25-18bc-491a-ab02-2c1ec36f4c1e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-medium}", + "uuid": "72e6564c-2acf-4f77-80d9-b21d2d55a580" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-height-medium instead." + }, + "table-row-height-medium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", - "uuid": "1dc88a25-18bc-491a-ab02-2c1ec36f4c1e" + "uuid": "9d6dc5e8-d3f0-4f59-b062-756669ff7217" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "50px", - "uuid": "72e6564c-2acf-4f77-80d9-b21d2d55a580" + "uuid": "2cf7918c-f84a-4903-a6ba-b110807842ba" } } }, "table-row-height-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-large}", + "uuid": "3b22a4c7-525c-4482-9e58-19cbe46d318b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-large}", + "uuid": "b92bc058-27ea-4e86-a1a2-e5dbae3c2ee8" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-height-large instead." + }, + "table-row-height-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "48px", - "uuid": "3b22a4c7-525c-4482-9e58-19cbe46d318b" + "uuid": "d3d9b523-90dc-4532-9cf7-37b568bd6800" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "60px", - "uuid": "b92bc058-27ea-4e86-a1a2-e5dbae3c2ee8" + "uuid": "ff04cae7-7f96-4db2-bf64-948c22d104ff" } } }, "table-row-height-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-extra-large}", + "uuid": "face2717-9c2c-4e18-9632-4e4a595b1fc7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-height-extra-large}", + "uuid": "b7753c9a-8854-4927-89dd-80d47bff5fa5" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-height-extra-large instead." + }, + "table-row-height-extra-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", - "uuid": "face2717-9c2c-4e18-9632-4e4a595b1fc7" + "uuid": "d52d3141-27a5-40eb-800f-1a09acd42534" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "70px", - "uuid": "b7753c9a-8854-4927-89dd-80d47bff5fa5" + "uuid": "c2e3068b-c0be-4615-bbf7-c65e58ef126b" } } }, @@ -4480,17 +4549,34 @@ }, "table-row-top-to-text-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-small}", + "uuid": "5e5a6837-34c9-4f01-8769-b66c3f602d1f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-small}", + "uuid": "98014297-14dc-4547-944a-8951c7f6f253" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-small instead." + }, + "table-row-top-to-text-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", - "uuid": "5e5a6837-34c9-4f01-8769-b66c3f602d1f" + "uuid": "52fb10e1-a45e-4b21-9563-b72a6cf8c7e0" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", - "uuid": "98014297-14dc-4547-944a-8951c7f6f253" + "uuid": "dfa553a2-b771-4a31-9294-3800d2126952" } } }, @@ -4499,62 +4585,130 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-medium}", "uuid": "8e1448f8-5806-4629-8131-4e8422b26870" }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-medium}", + "uuid": "7df1dc32-b96d-41e3-a372-9bcaec7c2ccb" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-medium instead." + }, + "table-row-top-to-text-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "ae401c94-c643-446f-a44e-38c9f3104fc6" + }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", - "uuid": "7df1dc32-b96d-41e3-a372-9bcaec7c2ccb" + "uuid": "0cd86854-57ca-4023-b544-8a4a76418164" } } }, "table-row-top-to-text-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-large}", + "uuid": "2ed03fb3-fed4-41d4-8a14-f7446bb76486" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-large}", + "uuid": "0108018e-6146-45c9-b032-e3d44dfb8d84" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-large instead." + }, + "table-row-top-to-text-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", - "uuid": "2ed03fb3-fed4-41d4-8a14-f7446bb76486" + "uuid": "0820aecf-0647-4e51-ae40-44130bc86013" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", - "uuid": "0108018e-6146-45c9-b032-e3d44dfb8d84" + "uuid": "4d55e632-588b-4e82-90c0-4fa434998d15" } } }, "table-row-top-to-text-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-extra-large}", + "uuid": "03555438-78f5-429a-a0dd-c6777dc36372" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-top-to-text-extra-large}", + "uuid": "c381a3c4-e0a3-4e86-b279-f51ee6e9e532" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-extra-large instead." + }, + "table-row-top-to-text-extra-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", - "uuid": "03555438-78f5-429a-a0dd-c6777dc36372" + "uuid": "da7274c6-6f45-4087-b42f-dde7d3ac1af7" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "21px", - "uuid": "c381a3c4-e0a3-4e86-b279-f51ee6e9e532" + "uuid": "40de40fd-4bae-4a49-8aec-38dad2a1c5fb" } } }, "table-row-bottom-to-text-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-small}", + "uuid": "90ae4c5b-a49d-40ad-8dd8-b25720c13f79" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-small}", + "uuid": "d3147ee6-dc34-46e2-8379-02d9690ff80a" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-small instead." + }, + "table-row-bottom-to-text-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", - "uuid": "90ae4c5b-a49d-40ad-8dd8-b25720c13f79" + "uuid": "56b58d2a-01dd-488b-b6e9-ff49555602b4" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", - "uuid": "d3147ee6-dc34-46e2-8379-02d9690ff80a" + "uuid": "d6100789-7076-403a-b878-7bb204093c52" } } }, @@ -4563,46 +4717,97 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-medium}", "uuid": "c66ff3f2-3661-464c-b722-151f72d03f2a" }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-medium}", + "uuid": "e80339a8-22c4-4b53-9a4a-a4456f6cab3f" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-medium instead." + }, + "table-row-bottom-to-text-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "13px", + "uuid": "f14087ac-db72-43df-a8fa-9c9b03c6a1c9" + }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "15px", - "uuid": "e80339a8-22c4-4b53-9a4a-a4456f6cab3f" + "uuid": "6ff9a81f-a2f8-4966-a48b-c8561aa4f833" } } }, "table-row-bottom-to-text-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-large}", + "uuid": "775139b2-3fb4-4019-8a3e-2377211ed0ec" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-large}", + "uuid": "151bf172-2889-4c98-8f15-5b6cdcb30d4b" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-large instead." + }, + "table-row-bottom-to-text-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", - "uuid": "775139b2-3fb4-4019-8a3e-2377211ed0ec" + "uuid": "f14b75f3-cb07-48b3-8543-34d80747ff36" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", - "uuid": "151bf172-2889-4c98-8f15-5b6cdcb30d4b" + "uuid": "0de2f0a5-b32a-4f7b-b46c-1a6c25abc1ec" } } }, "table-row-bottom-to-text-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-extra-large}", + "uuid": "d13d2f2e-9425-403d-a95f-889d67f03425" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-bottom-to-text-extra-large}", + "uuid": "c9ac99be-86c3-4f6c-a2a5-3487041bc95e" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-extra-large instead." + }, + "table-row-bottom-to-text-extra-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "17px", - "uuid": "d13d2f2e-9425-403d-a95f-889d67f03425" + "uuid": "8b969d35-01ab-419f-b391-484aad88fd41" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", - "uuid": "c9ac99be-86c3-4f6c-a2a5-3487041bc95e" + "uuid": "f25c6bfd-0a0d-4fd1-ab7b-9cd1d13053e1" } } }, @@ -4633,7 +4838,7 @@ }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "16px", "uuid": "cfa36bf7-cce0-4049-970a-8f11c6d60673" } } @@ -4784,12 +4989,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "8px", "uuid": "578765e6-b2ec-4bfe-ae28-f24cbee15898" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "2e168a2b-46aa-453f-9ca1-746485216c84" } } @@ -4844,17 +5049,34 @@ }, "table-row-checkbox-to-top-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-small}", + "uuid": "4435c143-a75a-47c1-a629-3574b70247a3" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-small}", + "uuid": "a63aa24e-c956-4af5-bf4f-4c5d44bd1e16" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-small instead." + }, + "table-row-checkbox-to-top-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", - "uuid": "4435c143-a75a-47c1-a629-3574b70247a3" + "uuid": "909ebf8a-eebd-41b6-8fac-8fe31d2bac00" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", - "uuid": "a63aa24e-c956-4af5-bf4f-4c5d44bd1e16" + "uuid": "365d9c3f-d287-4feb-b020-89434dd29378" } } }, @@ -4880,12 +5102,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "8px", "uuid": "0b12ff10-52e2-4084-9f1b-ee7bc0b50576" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "value": "11px", "uuid": "84f00d87-c0ea-42fd-8477-9fff028bf79c" } } @@ -4895,15 +5117,32 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-medium}", "uuid": "2c8f9b97-f4df-48c2-ab1a-82373d335b83" }, "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-medium}", "uuid": "36505a4f-01b6-4b83-adf1-592818eb2c0d" } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-medium instead." + }, + "table-row-checkbox-to-top-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "be965b15-08f8-43be-9953-52151d8c7670" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "2ae09505-d43f-4e2c-b8a6-014ccfef5c10" + } } }, "table-row-checkbox-to-top-medium-spacious": { @@ -4912,12 +5151,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", + "value": "16px", "uuid": "c8a04cab-bfad-4b82-94dc-6c2b4160c7cb" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", + "value": "21px", "uuid": "a57d2d1a-5e0c-4d4c-84eb-dd2339366aad" } } @@ -4940,17 +5179,34 @@ }, "table-row-checkbox-to-top-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-large}", + "uuid": "559b9fc0-389e-4e2f-985c-8741f218850a" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-large}", + "uuid": "2e16e4ef-fec6-41fb-9d96-bc6bb6c88f69" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-large instead." + }, + "table-row-checkbox-to-top-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", - "uuid": "559b9fc0-389e-4e2f-985c-8741f218850a" + "uuid": "a8c2b073-495b-402b-b1dc-2337b0e42f37" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", - "uuid": "2e16e4ef-fec6-41fb-9d96-bc6bb6c88f69" + "uuid": "a0fa4e03-c1de-400d-8629-0ae9ffb9b9d8" } } }, @@ -4988,17 +5244,34 @@ }, "table-row-checkbox-to-top-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-extra-large}", + "uuid": "9b775e1f-9348-431d-9ba8-bffb19bcbf85" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-row-checkbox-to-top-extra-large}", + "uuid": "2171aee7-d013-459e-a13f-33075090cbe3" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-extra-large instead." + }, + "table-row-checkbox-to-top-extra-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "19px", - "uuid": "9b775e1f-9348-431d-9ba8-bffb19bcbf85" + "uuid": "acd6ad6b-bab0-40fb-afbe-5df7eea7efb3" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", - "uuid": "2171aee7-d013-459e-a13f-33075090cbe3" + "uuid": "fb02243f-0490-4eb2-aac2-fa364c6eab59" } } }, @@ -5148,65 +5421,133 @@ }, "table-thumbnail-to-top-minimum-small-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-small}", + "uuid": "db98283d-1f25-4323-9f3a-0555b9670ba6" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-small}", + "uuid": "e25b14a7-cb9e-406b-bab6-b27575f00a52" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-small instead." + }, + "table-thumbnail-to-top-minimum-small": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", - "uuid": "db98283d-1f25-4323-9f3a-0555b9670ba6" + "uuid": "96d7eb12-7e92-4ee8-988b-8e7e8a7de159" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", - "uuid": "e25b14a7-cb9e-406b-bab6-b27575f00a52" + "uuid": "43955cdb-afaf-4e59-bb26-3063661141d7" } } }, "table-thumbnail-to-top-minimum-medium-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-medium}", + "uuid": "12a6fd11-d3a5-4d72-9942-89d828d1d256" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-medium}", + "uuid": "75af7a67-e0ae-4f41-9c70-09babbc587d1" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-medium instead." + }, + "table-thumbnail-to-top-minimum-medium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", - "uuid": "12a6fd11-d3a5-4d72-9942-89d828d1d256" + "uuid": "42914d96-ee9f-4ed9-9c7a-9c8ccca68245" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", - "uuid": "75af7a67-e0ae-4f41-9c70-09babbc587d1" + "uuid": "2268750d-4c5f-46f1-bad7-dec21818bfe6" } } }, "table-thumbnail-to-top-minimum-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-large}", + "uuid": "de6e6ae5-eae6-4f7a-89be-176674176242" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-large}", + "uuid": "fc7efe7c-ef97-424f-89c2-2211daf44b4a" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-large instead." + }, + "table-thumbnail-to-top-minimum-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", - "uuid": "de6e6ae5-eae6-4f7a-89be-176674176242" + "uuid": "589d6f19-ec7f-4a4f-a622-40d18d7e71f5" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", - "uuid": "fc7efe7c-ef97-424f-89c2-2211daf44b4a" + "uuid": "92ade1a0-ea78-4930-82e7-fedafce42aed" } } }, "table-thumbnail-to-top-minimum-extra-large-regular": { "component": "table", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-extra-large}", + "uuid": "17c4c578-d3e1-44c0-bd21-ee4df5cb2027" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{table-thumbnail-to-top-minimum-extra-large}", + "uuid": "b60c33b8-acc1-4af1-b30f-b467054ee417" + } + }, + "deprecated": true, + "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-extra-large instead." + }, + "table-thumbnail-to-top-minimum-extra-large": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", - "uuid": "17c4c578-d3e1-44c0-bd21-ee4df5cb2027" + "uuid": "0ae43893-e3ea-461f-a2fe-93239cb3a22a" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "10px", - "uuid": "b60c33b8-acc1-4af1-b30f-b467054ee417" + "uuid": "17051925-5eda-45a3-8d45-d329e88bf63a" } } }, @@ -8939,5 +9280,20 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{title-size-s}", "uuid": "ce8278ea-da1b-4a42-bf7d-4018c9e9d18e" + }, + "side-focus-indicator": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "d33433fd-6430-4769-a0b8-6d8c32a64803" + }, + "illustrated-message-horizontal-maximum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "535px", + "uuid": "4413ee4d-86b1-4d88-b2ee-64c0939698b9" + }, + "illustrated-message-vertical-maximum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "380px", + "uuid": "95c055b0-f688-4405-8426-1b2302e32ebd" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/semantic-color-palette.json b/packages/tokens/src/semantic-color-palette.json index 47a9641f..b13028c1 100644 --- a/packages/tokens/src/semantic-color-palette.json +++ b/packages/tokens/src/semantic-color-palette.json @@ -424,24 +424,64 @@ "deprecated": true }, "informative-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "62dfb07f-5eee-451c-9c77-745d8f714766" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-color-200}", + "uuid": "62dfb07f-5eee-451c-9c77-745d8f714766" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-color-300}", + "uuid": "4cbe010f-0608-47e3-bf27-c7da70a70b9e" + } + } }, "positive-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-200}", - "uuid": "57a1aa8f-5c06-4ff6-8d1c-0e278a433ebf" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{positive-color-200}", + "uuid": "57a1aa8f-5c06-4ff6-8d1c-0e278a433ebf" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{positive-color-300}", + "uuid": "c7644c81-1b2c-40ee-b3a6-b25e88fc34ea" + } + } }, "notice-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "f0799e87-dbb2-4e71-8253-65f45eddc078" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{notice-color-200}", + "uuid": "f0799e87-dbb2-4e71-8253-65f45eddc078" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{notice-color-300}", + "uuid": "c9bfd62b-95c7-47d3-bace-ce3f2bfaade8" + } + } }, "negative-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "8e9429cf-4c89-47be-bc6e-eeecc632aeb1" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{negative-color-200}", + "uuid": "8e9429cf-4c89-47be-bc6e-eeecc632aeb1" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{negative-color-300}", + "uuid": "c7575b76-8035-4037-8bd5-e8bdb82bddc3" + } + } }, "icon-color-informative": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", @@ -467,5 +507,20 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{negative-visual-color}", "uuid": "adf2a3f0-d1cd-4b53-8a9c-47ab9cb7bb0f" + }, + "accent-subtle-background-color-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{accent-color-200}", + "uuid": "97293b77-c21d-4ba1-bd2c-5d1de37d75eb" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{accent-color-300}", + "uuid": "c120499e-98c4-442d-971f-31dee8d16c4d" + } + } } } \ No newline at end of file From b60f517e1dc90d06ae2579aa5136d6fc448219f8 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 3 Oct 2024 15:07:50 -0600 Subject: [PATCH 242/295] chore: added changeset --- .changeset/tender-monkeys-flash.md | 309 ++++++++++++++++++ .../schemas/token-types/gradient-stop.json | 27 ++ 2 files changed, 336 insertions(+) create mode 100644 .changeset/tender-monkeys-flash.md create mode 100644 packages/tokens/schemas/token-types/gradient-stop.json diff --git a/.changeset/tender-monkeys-flash.md b/.changeset/tender-monkeys-flash.md new file mode 100644 index 00000000..fed15c0f --- /dev/null +++ b/.changeset/tender-monkeys-flash.md @@ -0,0 +1,309 @@ +--- +`@adobe/spectrum-tokens`: minor +--- + +S2 subtle and visual colors update +Updated S2 Table tokens + +
Tokens added (42): + +- `illustrated-message-maximum-width` +- `side-focus-indicator` +- `table-row-bottom-to-text-extra-large` +- `table-row-bottom-to-text-extra-large-regular` +- `table-row-bottom-to-text-large` +- `table-row-bottom-to-text-large-regular` +- `table-row-bottom-to-text-medium` +- `table-row-bottom-to-text-medium-regular` +- `table-row-bottom-to-text-small` +- `table-row-bottom-to-text-small-regular` +- `table-row-checkbox-to-top-extra-large` +- `table-row-checkbox-to-top-extra-large-regular` +- `table-row-checkbox-to-top-large` +- `table-row-checkbox-to-top-large-regular` +- `table-row-checkbox-to-top-medium` +- `table-row-checkbox-to-top-medium-regular` +- `table-row-checkbox-to-top-small` +- `table-row-checkbox-to-top-small-regular` +- `table-row-height-extra-large` +- `table-row-height-extra-large-regular` +- `table-row-height-large` +- `table-row-height-large-regular` +- `table-row-height-medium` +- `table-row-height-medium-regular` +- `table-row-height-small` +- `table-row-height-small-regular` +- `table-row-top-to-text-extra-large` +- `table-row-top-to-text-extra-large-regular` +- `table-row-top-to-text-large` +- `table-row-top-to-text-large-regular` +- `table-row-top-to-text-medium` +- `table-row-top-to-text-medium-regular` +- `table-row-top-to-text-small` +- `table-row-top-to-text-small-regular` +- `table-thumbnail-to-top-minimum-extra-large` +- `table-thumbnail-to-top-minimum-extra-large-regular` +- `table-thumbnail-to-top-minimum-large` +- `table-thumbnail-to-top-minimum-large-regular` +- `table-thumbnail-to-top-minimum-medium` +- `table-thumbnail-to-top-minimum-medium-regular` +- `table-thumbnail-to-top-minimum-small` +- `table-thumbnail-to-top-minimum-small-regular` + +
+ +
Tokens updated (101): + +- `informative-subtle-background-color-default` + - light: `blue-200` -> `informative-color-200` + - dark: `blue-200` -> `informative-color-300` +- `positive-subtle-background-color-default` + - light: `green-200` -> `positive-color-200` + - dark: `green-200` -> `positive-color-300` +- `notice-subtle-background-color-default` + - light: `orange-200` -> `notice-color-200` + - dark: `orange-200` -> `notice-color-300` +- `negative-subtle-background-color-default` + - light: `red-200` -> `negative-color-200` + - dark: `red-200` -> `negative-color-300` +- `table-column-header-row-top-to-text-medium` + - desktop: `7px` -> `6px` +- `table-row-height-small-regular` + - desktop: `32px` -> `table-row-height-small` + - mobile: `40px` -> `table-row-height-small` +- `table-row-height-medium-regular` + - desktop: `40px` -> `table-row-height-medium` + - mobile: `50px` -> `table-row-height-medium` +- `table-row-height-large-regular` + - desktop: `48px` -> `table-row-height-large` + - mobile: `60px` -> `table-row-height-large` +- `table-row-height-extra-large-regular` + - desktop: `56px` -> `table-row-height-extra-large` + - mobile: `70px` -> `table-row-height-extra-large` +- `table-row-top-to-text-small-regular` + - desktop: `8px` -> `table-row-top-to-text-small` + - mobile: `10px` -> `table-row-top-to-text-small` +- `table-row-top-to-text-medium-regular` + - desktop: `11px` -> `table-row-top-to-text-medium` + - mobile: `14px` -> `table-row-top-to-text-medium` +- `table-row-top-to-text-large-regular` + - desktop: `14px` -> `table-row-top-to-text-large` + - mobile: `18px` -> `table-row-top-to-text-large` +- `table-row-top-to-text-extra-large-regular` + - desktop: `17px` -> `table-row-top-to-text-extra-large` + - mobile: `21px` -> `table-row-top-to-text-extra-large` +- `table-row-bottom-to-text-small-regular` + - desktop: `9px` -> `table-row-bottom-to-text-small` + - mobile: `11px` -> `table-row-bottom-to-text-small` +- `table-row-bottom-to-text-medium-regular` + - desktop: `12px` -> `table-row-bottom-to-text-medium` + - mobile: `15px` -> `table-row-bottom-to-text-medium` +- `table-row-bottom-to-text-large-regular` + - desktop: `14px` -> `table-row-bottom-to-text-large` + - mobile: `18px` -> `table-row-bottom-to-text-large` +- `table-row-bottom-to-text-extra-large-regular` + - desktop: `17px` -> `table-row-bottom-to-text-extra-large` + - mobile: `22px` -> `table-row-bottom-to-text-extra-large` +- `table-row-top-to-text-medium-spacious` + - mobile: `18px` -> `16px` +- `table-header-row-checkbox-to-top-medium` + - desktop: `9px` -> `8px` + - mobile: `13px` -> `11px` +- `table-row-checkbox-to-top-small-regular` + - desktop: `10px` -> `table-row-checkbox-to-top-small` + - mobile: `14px` -> `table-row-checkbox-to-top-small` +- `table-row-checkbox-to-top-medium-compact` + - desktop: `9px` -> `8px` + - mobile: `13px` -> `11px` +- `table-row-checkbox-to-top-medium-regular` + - desktop: `13px` -> `table-row-checkbox-to-top-medium` + - mobile: `18px` -> `table-row-checkbox-to-top-medium` +- `table-row-checkbox-to-top-medium-spacious` + - desktop: `17px` -> `16px` + - mobile: `23px` -> `21px` +- `table-row-checkbox-to-top-large-regular` + - desktop: `16px` -> `table-row-checkbox-to-top-large` + - mobile: `22px` -> `table-row-checkbox-to-top-large` +- `table-row-checkbox-to-top-extra-large-regular` + - desktop: `19px` -> `table-row-checkbox-to-top-extra-large` + - mobile: `26px` -> `table-row-checkbox-to-top-extra-large` +- `table-thumbnail-to-top-minimum-small-regular` + - desktop: `5px` -> `table-thumbnail-to-top-minimum-small` + - mobile: `6px` -> `table-thumbnail-to-top-minimum-small` +- `table-thumbnail-to-top-minimum-medium-regular` + - desktop: `7px` -> `table-thumbnail-to-top-minimum-medium` + - mobile: `9px` -> `table-thumbnail-to-top-minimum-medium` +- `table-thumbnail-to-top-minimum-large-regular` + - desktop: `8px` -> `table-thumbnail-to-top-minimum-large` + - mobile: `10px` -> `table-thumbnail-to-top-minimum-large` +- `table-thumbnail-to-top-minimum-extra-large-regular` + - desktop: `8px` -> `table-thumbnail-to-top-minimum-extra-large` + - mobile: `10px` -> `table-thumbnail-to-top-minimum-extra-large` +- `blue-800` + - dark: `rgb(69, 110, 254)` -> `rgb(64, 105, 253)` +- `red-800` + - dark: `rgb(230, 54, 35)` -> `rgb(223, 52, 34)` +- `orange-800` + - dark: `rgb(205, 86, 0)` -> `rgb(199, 82, 0)` +- `yellow-800` + - dark: `rgb(169, 110, 0)` -> `rgb(164, 106, 0)` +- `chartreuse-800` + - dark: `rgb(109, 131, 0)` -> `rgb(106, 127, 0)` +- `celery-800` + - dark: `rgb(69, 138, 19)` -> `rgb(66, 134, 18)` +- `green-800` + - dark: `rgb(6, 140, 82)` -> `rgb(6, 136, 80)` +- `seafoam-800` + - dark: `rgb(8, 138, 116)` -> `rgb(8, 134, 112)` +- `cyan-800` + - dark: `rgb(15, 128, 194)` -> `rgb(13, 125, 186)` +- `indigo-800` + - dark: `rgb(119, 97, 252)` -> `rgb(116, 91, 252)` +- `purple-800` + - dark: `rgb(161, 84, 229)` -> `rgb(157, 78, 228)` +- `fuchsia-800` + - dark: `rgb(192, 64, 212)` -> `rgb(186, 60, 206)` +- `magenta-800` + - dark: `rgb(231, 41, 105)` -> `rgb(224, 38, 101)` +- `pink-800` + - dark: `rgb(220, 47, 156)` -> `rgb(213, 45, 151)` +- `turquoise-800` + - dark: `rgb(9, 135, 147)` -> `rgb(9, 131, 142)` +- `brown-800` + - dark: `rgb(148, 118, 73)` -> `rgb(143, 114, 69)` +- `silver-800` + - dark: `rgb(123, 123, 123)` -> `rgb(118, 118, 118)` +- `cinnamon-800` + - dark: `rgb(179, 103, 64)` -> `rgb(176, 98, 59)` +- `accent-background-color-default` + - dark: `accent-color-700` -> `accent-color-800` +- `accent-background-color-hover` + - dark: `accent-color-600` -> `accent-color-700` +- `accent-background-color-down` + - dark: `accent-color-600` -> `accent-color-700` +- `accent-background-color-key-focus` + - dark: `accent-color-600` -> `accent-color-700` +- `informative-background-color-default` + - dark: `informative-color-700` -> `informative-color-800` +- `informative-background-color-hover` + - dark: `informative-color-600` -> `informative-color-700` +- `informative-background-color-down` + - dark: `informative-color-600` -> `informative-color-700` +- `informative-background-color-key-focus` + - dark: `informative-color-600` -> `informative-color-700` +- `negative-background-color-default` + - dark: `negative-color-700` -> `negative-color-800` +- `negative-background-color-hover` + - dark: `negative-color-600` -> `negative-color-700` +- `negative-background-color-down` + - dark: `negative-color-600` -> `negative-color-700` +- `negative-background-color-key-focus` + - dark: `negative-color-600` -> `negative-color-700` +- `positive-background-color-default` + - dark: `positive-color-700` -> `positive-color-800` +- `positive-background-color-hover` + - dark: `positive-color-600` -> `positive-color-700` +- `positive-background-color-down` + - dark: `positive-color-600` -> `positive-color-700` +- `positive-background-color-key-focus` + - dark: `positive-color-600` -> `positive-color-700` +- `red-background-color-default` + - dark: `red-700` -> `red-800` +- `green-background-color-default` + - dark: `green-700` -> `green-800` +- `seafoam-background-color-default` + - dark: `seafoam-700` -> `seafoam-800` +- `cyan-background-color-default` + - dark: `cyan-700` -> `cyan-800` +- `blue-background-color-default` + - dark: `blue-700` -> `blue-800` +- `indigo-background-color-default` + - dark: `indigo-700` -> `indigo-800` +- `purple-background-color-default` + - dark: `purple-700` -> `purple-800` +- `fuchsia-background-color-default` + - dark: `fuchsia-700` -> `fuchsia-800` +- `magenta-background-color-default` + - dark: `magenta-700` -> `magenta-800` +- `negative-visual-color` + - dark: `negative-color-700` -> `negative-color-900` +- `notice-visual-color` + - light: `notice-color-700` -> `notice-color-800` +- `positive-visual-color` + - light: `positive-color-700` -> `positive-color-800` + - dark: `positive-color-800` -> `positive-color-900` +- `brown-background-color-default` + - dark: `brown-700` -> `brown-800` +- `cinnamon-background-color-default` + - dark: `cinnamon-700` -> `cinnamon-800` +- `pink-background-color-default` + - dark: `pink-700` -> `pink-800` +- `silver-background-color-default` + - dark: `silver-700` -> `silver-800` +- `turquoise-background-color-default` + - dark: `turquoise-700` -> `turquoise-800` +- `neutral-subtle-background-color-default` + - light: `gray-100` -> `gray-100` + - dark: `gray-100` -> `gray-300` +- `accent-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `accent-color-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `accent-color-300` +- `gray-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `gray-100` + - dark: `rgba(0, 0, 0, 0.6)` -> `gray-300` +- `blue-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `blue-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `blue-300` +- `green-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `green-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `green-300` +- `orange-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `orange-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `orange-300` +- `red-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `red-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `red-300` +- `brown-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `brown-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `brown-300` +- `cinnamon-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `cinnamon-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `cinnamon-300` +- `celery-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `celery-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `celery-300` +- `chartreuse-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `chartreuse-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `chartreuse-300` +- `cyan-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `cyan-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `cyan-300` +- `fuchsia-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `fuchsia-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `fuchsia-300` +- `indigo-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `indigo-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `indigo-300` +- `magenta-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `magenta-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `magenta-300` +- `pink-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `pink-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `pink-300` +- `purple-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `purple-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `purple-300` +- `seafoam-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `seafoam-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `seafoam-300` +- `silver-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `silver-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `silver-300` +- `turquoise-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `turquoise-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `turquoise-300` +- `yellow-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `yellow-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `yellow-300` + +
diff --git a/packages/tokens/schemas/token-types/gradient-stop.json b/packages/tokens/schemas/token-types/gradient-stop.json new file mode 100644 index 00000000..d92481a5 --- /dev/null +++ b/packages/tokens/schemas/token-types/gradient-stop.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "title": "Color Stop", + "description": "Gradient stop positions, being a ratio along the gradient's axis. Start is 0, end is 1.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json" + }, + "value": { + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "component": {}, + "private": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} From 953441f22b9ad25f01df324db53acbb3e80d7727 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 3 Oct 2024 09:33:04 -0600 Subject: [PATCH 243/295] fix: added missing component metadata --- packages/tokens/src/layout-component.json | 29 +- packages/tokens/src/layout.json | 7 +- pnpm-lock.yaml | 1352 +++++++++++---------- 3 files changed, 722 insertions(+), 666 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 347028ae..7677283c 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -4322,6 +4322,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-height-small instead." }, "table-row-height-small": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4355,6 +4356,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-height-medium instead." }, "table-row-height-medium": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4388,6 +4390,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-height-large instead." }, "table-row-height-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4421,6 +4424,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-height-extra-large instead." }, "table-row-height-extra-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4566,6 +4570,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-small instead." }, "table-row-top-to-text-small": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4599,6 +4604,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-medium instead." }, "table-row-top-to-text-medium": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4632,6 +4638,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-large instead." }, "table-row-top-to-text-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4665,6 +4672,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-extra-large instead." }, "table-row-top-to-text-extra-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4698,6 +4706,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-small instead." }, "table-row-bottom-to-text-small": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4731,6 +4740,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-medium instead." }, "table-row-bottom-to-text-medium": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4764,6 +4774,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-large instead." }, "table-row-bottom-to-text-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -4797,6 +4808,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-extra-large instead." }, "table-row-bottom-to-text-extra-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5066,6 +5078,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-small instead." }, "table-row-checkbox-to-top-small": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5131,6 +5144,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-medium instead." }, "table-row-checkbox-to-top-medium": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5196,6 +5210,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-large instead." }, "table-row-checkbox-to-top-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5261,6 +5276,7 @@ "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-extra-large instead." }, "table-row-checkbox-to-top-extra-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5438,6 +5454,7 @@ "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-small instead." }, "table-thumbnail-to-top-minimum-small": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5471,6 +5488,7 @@ "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-medium instead." }, "table-thumbnail-to-top-minimum-medium": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5504,6 +5522,7 @@ "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-large instead." }, "table-thumbnail-to-top-minimum-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -5537,6 +5556,7 @@ "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-extra-large instead." }, "table-thumbnail-to-top-minimum-extra-large": { + "component": "table", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9281,19 +9301,16 @@ "value": "{title-size-s}", "uuid": "ce8278ea-da1b-4a42-bf7d-4018c9e9d18e" }, - "side-focus-indicator": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "d33433fd-6430-4769-a0b8-6d8c32a64803" - }, "illustrated-message-horizontal-maximum-width": { + "component": "illustrated-message", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "535px", "uuid": "4413ee4d-86b1-4d88-b2ee-64c0939698b9" }, "illustrated-message-vertical-maximum-width": { + "component": "illustrated-message", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "380px", "uuid": "95c055b0-f688-4405-8426-1b2302e32ebd" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index fda43ea7..71ed5bab 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -492,6 +492,11 @@ "value": "2px", "uuid": "693651ef-71c7-4096-91a5-1c84cb861021" }, + "side-focus-indicator": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "d33433fd-6430-4769-a0b8-6d8c32a64803" + }, "border-width-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1px", @@ -2374,4 +2379,4 @@ "value": "{drop-shadow-blur-300}", "uuid": "f6015252-21fb-48f9-aadb-5ad050e3d590" } -} \ No newline at end of file +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 16ae1620..67b75248 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 2.27.8 "@commitlint/cli": specifier: ^19.5.0 - version: 19.5.0(@types/node@22.7.4)(typescript@5.6.2) + version: 19.5.0(@types/node@20.14.9)(typescript@5.5.2) "@commitlint/config-conventional": specifier: ^19.5.0 version: 19.5.0 @@ -52,10 +52,10 @@ importers: version: 7.1.4(@spectrum-css/tokens@13.2.0) "@spectrum-css/sidenav": specifier: ^4.2.4 - version: 4.2.4(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) + version: 4.2.4(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) "@spectrum-css/table": specifier: ^5.2.5 - version: 5.2.5(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) + version: 5.2.5(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0) "@spectrum-css/tokens": specifier: ^13.2.0 version: 13.2.0 @@ -70,77 +70,77 @@ importers: version: 3.0.1(ajv@8.17.1) next: specifier: ^14.2.1 - version: 14.2.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 14.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: ^18.2.0 - version: 18.3.1 + version: 18.2.0 react-dom: specifier: ^18.2.0 - version: 18.3.1(react@18.3.1) + version: 18.2.0(react@18.2.0) rimraf: specifier: ^5.0.5 - version: 5.0.10 + version: 5.0.5 docs/visualizer: dependencies: "@spectrum-web-components/action-button": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/button": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/button-group": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/field-group": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/field-label": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/link": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/overlay": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/popover": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/search": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/slider": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/switch": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/textfield": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/theme": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/toast": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 "@spectrum-web-components/tooltip": specifier: ^0.42.2 - version: 0.42.5 + version: 0.42.2 lit: specifier: ^3.1.3 - version: 3.2.0 + version: 3.1.3 devDependencies: "@types/node": specifier: ^20.12.7 - version: 20.16.10 + version: 20.14.9 typescript: specifier: ^5.4.5 - version: 5.6.2 + version: 5.5.2 vite: specifier: ^5.2.9 - version: 5.4.8(@types/node@20.16.10) + version: 5.2.9(@types/node@20.14.9) packages/tokens: devDependencies: @@ -188,7 +188,7 @@ importers: version: 3.0.12 inquirer: specifier: ^9.2.23 - version: 9.3.7 + version: 9.3.6 nixt: specifier: ^0.5.1 version: 0.5.1 @@ -251,10 +251,10 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/runtime@7.25.6": + "@babel/runtime@7.24.7": resolution: { - integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==, + integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==, } engines: { node: ">=6.9.0" } @@ -505,208 +505,208 @@ packages: } engines: { node: ">=v18" } - "@esbuild/aix-ppc64@0.21.5": + "@esbuild/aix-ppc64@0.20.2": resolution: { - integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, + integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==, } engines: { node: ">=12" } cpu: [ppc64] os: [aix] - "@esbuild/android-arm64@0.21.5": + "@esbuild/android-arm64@0.20.2": resolution: { - integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==, + integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==, } engines: { node: ">=12" } cpu: [arm64] os: [android] - "@esbuild/android-arm@0.21.5": + "@esbuild/android-arm@0.20.2": resolution: { - integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, + integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==, } engines: { node: ">=12" } cpu: [arm] os: [android] - "@esbuild/android-x64@0.21.5": + "@esbuild/android-x64@0.20.2": resolution: { - integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, + integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==, } engines: { node: ">=12" } cpu: [x64] os: [android] - "@esbuild/darwin-arm64@0.21.5": + "@esbuild/darwin-arm64@0.20.2": resolution: { - integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, + integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==, } engines: { node: ">=12" } cpu: [arm64] os: [darwin] - "@esbuild/darwin-x64@0.21.5": + "@esbuild/darwin-x64@0.20.2": resolution: { - integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, + integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==, } engines: { node: ">=12" } cpu: [x64] os: [darwin] - "@esbuild/freebsd-arm64@0.21.5": + "@esbuild/freebsd-arm64@0.20.2": resolution: { - integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, + integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==, } engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-x64@0.21.5": + "@esbuild/freebsd-x64@0.20.2": resolution: { - integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==, + integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==, } engines: { node: ">=12" } cpu: [x64] os: [freebsd] - "@esbuild/linux-arm64@0.21.5": + "@esbuild/linux-arm64@0.20.2": resolution: { - integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, + integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==, } engines: { node: ">=12" } cpu: [arm64] os: [linux] - "@esbuild/linux-arm@0.21.5": + "@esbuild/linux-arm@0.20.2": resolution: { - integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, + integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==, } engines: { node: ">=12" } cpu: [arm] os: [linux] - "@esbuild/linux-ia32@0.21.5": + "@esbuild/linux-ia32@0.20.2": resolution: { - integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, + integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==, } engines: { node: ">=12" } cpu: [ia32] os: [linux] - "@esbuild/linux-loong64@0.21.5": + "@esbuild/linux-loong64@0.20.2": resolution: { - integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, + integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==, } engines: { node: ">=12" } cpu: [loong64] os: [linux] - "@esbuild/linux-mips64el@0.21.5": + "@esbuild/linux-mips64el@0.20.2": resolution: { - integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, + integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==, } engines: { node: ">=12" } cpu: [mips64el] os: [linux] - "@esbuild/linux-ppc64@0.21.5": + "@esbuild/linux-ppc64@0.20.2": resolution: { - integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==, + integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==, } engines: { node: ">=12" } cpu: [ppc64] os: [linux] - "@esbuild/linux-riscv64@0.21.5": + "@esbuild/linux-riscv64@0.20.2": resolution: { - integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, + integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==, } engines: { node: ">=12" } cpu: [riscv64] os: [linux] - "@esbuild/linux-s390x@0.21.5": + "@esbuild/linux-s390x@0.20.2": resolution: { - integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, + integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==, } engines: { node: ">=12" } cpu: [s390x] os: [linux] - "@esbuild/linux-x64@0.21.5": + "@esbuild/linux-x64@0.20.2": resolution: { - integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, + integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==, } engines: { node: ">=12" } cpu: [x64] os: [linux] - "@esbuild/netbsd-x64@0.21.5": + "@esbuild/netbsd-x64@0.20.2": resolution: { - integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, + integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==, } engines: { node: ">=12" } cpu: [x64] os: [netbsd] - "@esbuild/openbsd-x64@0.21.5": + "@esbuild/openbsd-x64@0.20.2": resolution: { - integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, + integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==, } engines: { node: ">=12" } cpu: [x64] os: [openbsd] - "@esbuild/sunos-x64@0.21.5": + "@esbuild/sunos-x64@0.20.2": resolution: { - integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, + integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==, } engines: { node: ">=12" } cpu: [x64] os: [sunos] - "@esbuild/win32-arm64@0.21.5": + "@esbuild/win32-arm64@0.20.2": resolution: { - integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, + integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==, } engines: { node: ">=12" } cpu: [arm64] os: [win32] - "@esbuild/win32-ia32@0.21.5": + "@esbuild/win32-ia32@0.20.2": resolution: { - integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, + integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==, } engines: { node: ">=12" } cpu: [ia32] os: [win32] - "@esbuild/win32-x64@0.21.5": + "@esbuild/win32-x64@0.20.2": resolution: { - integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, + integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==, } engines: { node: ">=12" } cpu: [x64] @@ -730,10 +730,10 @@ packages: integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==, } - "@inquirer/figures@1.0.6": + "@inquirer/figures@1.0.5": resolution: { - integrity: sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==, + integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==, } engines: { node: ">=18" } @@ -750,10 +750,10 @@ packages: } engines: { node: ">=12" } - "@isaacs/fs-minipass@4.0.1": + "@isaacs/fs-minipass@4.0.0": resolution: { - integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, + integrity: sha512-S00nN1Qt3z3dSP6Db45fj/mksrAq5XWNIJ/SWXGP8XPT2jrzEuYRCSEx08JpJwBcG2F1xgiOtBMGDU0AZHmxew==, } engines: { node: ">=18.0.0" } @@ -783,16 +783,22 @@ packages: integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, } - "@lit-labs/observers@2.0.3": + "@lit-labs/observers@2.0.2": resolution: { - integrity: sha512-CeftEJ2TId9iohDJHLjUXiSBVndqjIBaALjeTt8OmgWLh2dnIzwlj4WtPCiJw15uR1s6D6wyCsw0AoJC5/9QXw==, + integrity: sha512-eZb5+W9Cb0e/Y5m1DNxBSGTvGB2TAVTGMnTxL/IzFhPQEcZIAHewW1eVBhN8W07A5tirRaAmmF6fGL1V20p3gQ==, } - "@lit-labs/ssr-dom-shim@1.2.1": + "@lit-labs/ssr-dom-shim@1.2.0": resolution: { - integrity: sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==, + integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==, + } + + "@lit/reactive-element@1.6.3": + resolution: + { + integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==, } "@lit/reactive-element@2.0.4": @@ -883,88 +889,88 @@ packages: cpu: [x64] os: [win32] - "@next/env@14.2.13": + "@next/env@14.2.1": resolution: { - integrity: sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw==, + integrity: sha512-qsHJle3GU3CmVx7pUoXcghX4sRN+vINkbLdH611T8ZlsP//grzqVW87BSUgOZeSAD4q7ZdZicdwNe/20U2janA==, } - "@next/swc-darwin-arm64@14.2.13": + "@next/swc-darwin-arm64@14.2.1": resolution: { - integrity: sha512-IkAmQEa2Htq+wHACBxOsslt+jMoV3msvxCn0WFSfJSkv/scy+i/EukBKNad36grRxywaXUYJc9mxEGkeIs8Bzg==, + integrity: sha512-kGjnjcIJehEcd3rT/3NAATJQndAEELk0J9GmGMXHSC75TMnvpOhONcjNHbjtcWE5HUQnIHy5JVkatrnYm1QhVw==, } engines: { node: ">= 10" } cpu: [arm64] os: [darwin] - "@next/swc-darwin-x64@14.2.13": + "@next/swc-darwin-x64@14.2.1": resolution: { - integrity: sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog==, + integrity: sha512-dAdWndgdQi7BK2WSXrx4lae7mYcOYjbHJUhvOUnJjMNYrmYhxbbvJ2xElZpxNxdfA6zkqagIB9He2tQk+l16ew==, } engines: { node: ">= 10" } cpu: [x64] os: [darwin] - "@next/swc-linux-arm64-gnu@14.2.13": + "@next/swc-linux-arm64-gnu@14.2.1": resolution: { - integrity: sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg==, + integrity: sha512-2ZctfnyFOGvTkoD6L+DtQtO3BfFz4CapoHnyLTXkOxbZkVRgg3TQBUjTD/xKrO1QWeydeo8AWfZRg8539qNKrg==, } engines: { node: ">= 10" } cpu: [arm64] os: [linux] - "@next/swc-linux-arm64-musl@14.2.13": + "@next/swc-linux-arm64-musl@14.2.1": resolution: { - integrity: sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg==, + integrity: sha512-jazZXctiaanemy4r+TPIpFP36t1mMwWCKMsmrTRVChRqE6putyAxZA4PDujx0SnfvZHosjdkx9xIq9BzBB5tWg==, } engines: { node: ">= 10" } cpu: [arm64] os: [linux] - "@next/swc-linux-x64-gnu@14.2.13": + "@next/swc-linux-x64-gnu@14.2.1": resolution: { - integrity: sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA==, + integrity: sha512-VjCHWCjsAzQAAo8lkBOLEIkBZFdfW+Z18qcQ056kL4KpUYc8o59JhLDCBlhg+hINQRgzQ2UPGma2AURGOH0+Qg==, } engines: { node: ">= 10" } cpu: [x64] os: [linux] - "@next/swc-linux-x64-musl@14.2.13": + "@next/swc-linux-x64-musl@14.2.1": resolution: { - integrity: sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg==, + integrity: sha512-7HZKYKvAp4nAHiHIbY04finRqjeYvkITOGOurP1aLMexIFG/1+oCnqhGogBdc4lao/lkMW1c+AkwWSzSlLasqw==, } engines: { node: ">= 10" } cpu: [x64] os: [linux] - "@next/swc-win32-arm64-msvc@14.2.13": + "@next/swc-win32-arm64-msvc@14.2.1": resolution: { - integrity: sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ==, + integrity: sha512-YGHklaJ/Cj/F0Xd8jxgj2p8po4JTCi6H7Z3Yics3xJhm9CPIqtl8erlpK1CLv+HInDqEWfXilqatF8YsLxxA2Q==, } engines: { node: ">= 10" } cpu: [arm64] os: [win32] - "@next/swc-win32-ia32-msvc@14.2.13": + "@next/swc-win32-ia32-msvc@14.2.1": resolution: { - integrity: sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw==, + integrity: sha512-o+ISKOlvU/L43ZhtAAfCjwIfcwuZstiHVXq/BDsZwGqQE0h/81td95MPHliWCnFoikzWcYqh+hz54ZB2FIT8RA==, } engines: { node: ">= 10" } cpu: [ia32] os: [win32] - "@next/swc-win32-x64-msvc@14.2.13": + "@next/swc-win32-x64-msvc@14.2.1": resolution: { - integrity: sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw==, + integrity: sha512-GmRoTiLcvCLifujlisknv4zu9/C4i9r0ktsA8E51EMqJL4bD4CpO7lDYr7SrUxCR0tS4RVcrqKmCak24T0ohaw==, } engines: { node: ">= 10" } cpu: [x64] @@ -1005,130 +1011,130 @@ packages: } engines: { node: ">= 8.0.0" } - "@rollup/rollup-android-arm-eabi@4.22.5": + "@rollup/rollup-android-arm-eabi@4.14.3": resolution: { - integrity: sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==, + integrity: sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==, } cpu: [arm] os: [android] - "@rollup/rollup-android-arm64@4.22.5": + "@rollup/rollup-android-arm64@4.14.3": resolution: { - integrity: sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==, + integrity: sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==, } cpu: [arm64] os: [android] - "@rollup/rollup-darwin-arm64@4.22.5": + "@rollup/rollup-darwin-arm64@4.14.3": resolution: { - integrity: sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==, + integrity: sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==, } cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-x64@4.22.5": + "@rollup/rollup-darwin-x64@4.14.3": resolution: { - integrity: sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==, + integrity: sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==, } cpu: [x64] os: [darwin] - "@rollup/rollup-linux-arm-gnueabihf@4.22.5": + "@rollup/rollup-linux-arm-gnueabihf@4.14.3": resolution: { - integrity: sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==, + integrity: sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==, } cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm-musleabihf@4.22.5": + "@rollup/rollup-linux-arm-musleabihf@4.14.3": resolution: { - integrity: sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==, + integrity: sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==, } cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm64-gnu@4.22.5": + "@rollup/rollup-linux-arm64-gnu@4.14.3": resolution: { - integrity: sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==, + integrity: sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==, } cpu: [arm64] os: [linux] - "@rollup/rollup-linux-arm64-musl@4.22.5": + "@rollup/rollup-linux-arm64-musl@4.14.3": resolution: { - integrity: sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==, + integrity: sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==, } cpu: [arm64] os: [linux] - "@rollup/rollup-linux-powerpc64le-gnu@4.22.5": + "@rollup/rollup-linux-powerpc64le-gnu@4.14.3": resolution: { - integrity: sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==, + integrity: sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==, } cpu: [ppc64] os: [linux] - "@rollup/rollup-linux-riscv64-gnu@4.22.5": + "@rollup/rollup-linux-riscv64-gnu@4.14.3": resolution: { - integrity: sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==, + integrity: sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==, } cpu: [riscv64] os: [linux] - "@rollup/rollup-linux-s390x-gnu@4.22.5": + "@rollup/rollup-linux-s390x-gnu@4.14.3": resolution: { - integrity: sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==, + integrity: sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==, } cpu: [s390x] os: [linux] - "@rollup/rollup-linux-x64-gnu@4.22.5": + "@rollup/rollup-linux-x64-gnu@4.14.3": resolution: { - integrity: sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==, + integrity: sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==, } cpu: [x64] os: [linux] - "@rollup/rollup-linux-x64-musl@4.22.5": + "@rollup/rollup-linux-x64-musl@4.14.3": resolution: { - integrity: sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==, + integrity: sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==, } cpu: [x64] os: [linux] - "@rollup/rollup-win32-arm64-msvc@4.22.5": + "@rollup/rollup-win32-arm64-msvc@4.14.3": resolution: { - integrity: sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==, + integrity: sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==, } cpu: [arm64] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.22.5": + "@rollup/rollup-win32-ia32-msvc@4.14.3": resolution: { - integrity: sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==, + integrity: sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==, } cpu: [ia32] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.22.5": + "@rollup/rollup-win32-x64-msvc@4.14.3": resolution: { - integrity: sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==, + integrity: sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==, } cpu: [x64] os: [win32] @@ -1147,10 +1153,10 @@ packages: } engines: { node: ">=18" } - "@spectrum-css/icon@7.1.4": + "@spectrum-css/icon@7.1.1": resolution: { - integrity: sha512-LawscsP5z7LJW2rK8mCBIqPhJeLoXZySAldcsII4HkvE0a8FUztzTyhwXs5jmNz+/1ldZrAWe36pxsHxm8YRlg==, + integrity: sha512-6OL0E4BI38jIZYmNCjSBcl4gyp3yl/RA2bFHD2nbB5M5qOdnWFpW8Y3epmhaSnCLIa8E3bPAhI8MU5Dud25ZUA==, } peerDependencies: "@spectrum-css/tokens": ">=14" @@ -1216,184 +1222,184 @@ packages: peerDependencies: "@spectrum-css/tokens": ">=13" - "@spectrum-web-components/action-button@0.42.5": + "@spectrum-web-components/action-button@0.42.2": resolution: { - integrity: sha512-kQG+fdZE0NN6ggso8rnYplPbZ+2pj7q2OmqqH1TpJKBDiQogGKr4Wp4GoODVlWAU4AyLs6DDUFZj7y0lj7lVvA==, + integrity: sha512-DtuqVNlit/zZO4MahSxRc/LbkufCWawAK+p15Shh1yPvGRCItkXa6UqtTtlmEBYvGpk0JvLhRvkPCxLdrDze3w==, } - "@spectrum-web-components/base@0.42.5": + "@spectrum-web-components/base@0.42.2": resolution: { - integrity: sha512-0Xbn8HOVh1qLf90RGKpj49Bu0kMe2tu1bWmKAOM6JC5NgIefjXl+Fq5lxF3QRgHQ1l0ZjKjqBFGrMqBTptWlZw==, + integrity: sha512-S29lGnisgRe/awaWM1Rkte/Qs7RgKZNMzLpP7rF+/1L3ohSzaWTz1nndx/lYbYKDFxqH43jz+i4dHK9HWWcSYg==, } - "@spectrum-web-components/button-group@0.42.5": + "@spectrum-web-components/button-group@0.42.2": resolution: { - integrity: sha512-TgtdzOcWGnRdfe7EJJX9H7/8TeJhHT9jHrmtLnyUzegeW5odeemn/Smr+RAemIuT4iJQOJT6QRD4FrqIIkld1A==, + integrity: sha512-ki3HDMLp+neAF44k/hBcgX59YToQ1QqsHIt9llE8fuLMcRTBVrx5OjKRcBKUeu3F4AHTVVCbjM8CE3wMfMpeXw==, } - "@spectrum-web-components/button@0.42.5": + "@spectrum-web-components/button@0.42.2": resolution: { - integrity: sha512-+mOOLd/GerTjkqfTQFXcqenD27cqdecQyuDacLyZ8Mx/CNJ9gUSD4cpkcUiItIUJsS2NytjTVWCa9ucQ89fD8Q==, + integrity: sha512-DwMaJAHV8CgHsjUMOfMaV6W4mCU6WMX7Oey2peNwHp552C6ZWkmX9RwXL+e6A3X9wxYiiUM4VlJr7YA+y/DNCw==, } - "@spectrum-web-components/checkbox@0.42.5": + "@spectrum-web-components/checkbox@0.42.2": resolution: { - integrity: sha512-nAb3cym+sN2CNt89l7YFuLNnRUKASLjV7X9Afhi49arU1gmdJ9qLFKsYrMBcTmLpkIChqFkaKsGRM2dBB5F4Vg==, + integrity: sha512-iaJCxB/2mv9f+6Ch7qJC+qaqIzMys8hnmOaBGPyssmlqQjYgDsxv0nXUPGUGpgNJ0LlLC03xg6LhXlu4fUa63A==, } - "@spectrum-web-components/clear-button@0.42.5": + "@spectrum-web-components/clear-button@0.42.2": resolution: { - integrity: sha512-5ikX6mviAfh40LpXKqBUvx4nH3bNU5bMIbicSaroJVC5t1x+p1Y/nUBppbl3t9unXvjcAqQiUCbmz0bVVIFPWQ==, + integrity: sha512-tTRCYDq2PHc+DLUkmTwQvskgGhsfFBiMc/zVJ/zy1/21cMy462nCYK/kJtEjOlV7GdKXTIzEFbwUxQrJ7gzh6Q==, } - "@spectrum-web-components/close-button@0.42.5": + "@spectrum-web-components/close-button@0.42.2": resolution: { - integrity: sha512-sfq43FOTzxim8XlpK+Vad0v1qcIaLQEKMD/5oJ0pDGHIe34dtGYswpJA9Qe5g2ZYZQks29JIdWZGCX4YkVNUTw==, + integrity: sha512-wucYSZKXefwgUosQag3yk/+sPTyhxkZzmg6h7AeMHAXMhQN7w9bgUY29ar2tE5rVMBQRcPZsQ+vEoLZ7vPq3wg==, } - "@spectrum-web-components/field-group@0.42.5": + "@spectrum-web-components/field-group@0.42.2": resolution: { - integrity: sha512-8Jp1uUW1a3SVE9TBKi8tSVcyu6oH6aRRBXO+2K9F66DyLtdBZ5j4U42nYhLsHYQs6CHYR422+0o/2w0umU89fA==, + integrity: sha512-kD67/l3tcvI13sEtDUGBa+FhD+rEodGOPEuqosfbcmFg/CeHKd5+qMBfBbgDwHoQrkEPTAoQGYJ+aCJgr2uEMA==, } - "@spectrum-web-components/field-label@0.42.5": + "@spectrum-web-components/field-label@0.42.2": resolution: { - integrity: sha512-HSainInLkjVutscF9ms33i5WKIlbMoDfkhZ2nRECOjfUP73O4tKsi/wAAkXxcIwlwekLATOaehG8//mKJIzbJQ==, + integrity: sha512-+tdnrRFDJ3zOmLXplkss/9byC6r7QS9wLlBnEpkPZy678RhS90WbjXew9hG6stURKoINoA3236MgVci1HXRbIg==, } - "@spectrum-web-components/help-text@0.42.5": + "@spectrum-web-components/help-text@0.42.2": resolution: { - integrity: sha512-3TCnVJE3awymYuZ7SvHQuY2TiKm514agRsDWvEcQI4DXzMZl3zaNs9h/C88qBnemfGt7EIfA+EvmL4SezKE9xg==, + integrity: sha512-YlC89KHIC8wihnyHqthgX3dOc0ecdyIs2UV/68JSeeX9cYpr7y2vBVPX9NCNdPomqMfumWTi8fSZ/AXpwJZDgg==, } - "@spectrum-web-components/icon@0.42.5": + "@spectrum-web-components/icon@0.42.2": resolution: { - integrity: sha512-7fECP297EgEu1XvBPLxfPRSuEM6dmkkEeuPpHXwhjbicqiOsAFVDLALB/LUghOhQBXI7Hd7Vl1eQiYYaVLKKfw==, + integrity: sha512-6ghFpgM+q7EBjA8lUmxZHULRKjEsJIs0Ga+Y4fAQTE8thKVMJGzOWzcFziHFf/jeUzju9HGAezAg8KkqX1klEg==, } - "@spectrum-web-components/icons-ui@0.42.5": + "@spectrum-web-components/icons-ui@0.42.2": resolution: { - integrity: sha512-Jif910xJFC0JhmeCYWQUubI/C3kB2INHomNye2y4rWYatVE/ZMjJc4BLcs2RTRYRvt/2yJ7LUwi2SZi7q3eJmQ==, + integrity: sha512-EIXwuLm7PYTxy8c/2ODlrypwcSHn6Q/MWceibEN2g06/dvmWr1lmhsUfpdAFAFGCt9PB/XYL/AeuPerPri/0+A==, } - "@spectrum-web-components/icons-workflow@0.42.5": + "@spectrum-web-components/icons-workflow@0.42.2": resolution: { - integrity: sha512-LR9+leTSnTyy8MxVKi+bbC7pBCzNUIq97dcf6MH3smo2Xcrh+W5pIBdw4LIOAt0yzdLRagfQtMFkzQfhH7+9VQ==, + integrity: sha512-QphXWO0Ir2XjtPb/IATVS+/KUWBVJj4D2XndxvH0tJ9H3wMBX+WK+5ztaCDKDB6HNDJYjh9W+L3rj9o+kuJKEg==, } - "@spectrum-web-components/iconset@0.42.5": + "@spectrum-web-components/iconset@0.42.2": resolution: { - integrity: sha512-jdmydViHhSXVStfpweFgTyU5bC9KmX1rC03eN4fyUI/E7JES22V+SMi2jvT71gb7MHswqsS7mlPyUBlcJGrz1Q==, + integrity: sha512-PJeEa+Qt0O02U1h6nkljTfnKHI4+7ZNGBSlDpG+BsJ6OCur8iRbGQY0E5QpKOcRduYP6J2Hw/qp4DtetqWEr7w==, } - "@spectrum-web-components/infield-button@0.42.5": + "@spectrum-web-components/infield-button@0.42.2": resolution: { - integrity: sha512-AiDspP53+7kFX/OGT4gi1mW6DBBRhYN1XOehWGl8YIYpkjlUrNl/xhKmNbYFIkeSawGXrxaRfqFHgWfRhL9c2A==, + integrity: sha512-kQAVSdZ1iF+hrzAFbCRKIP8+DhTeY37MoWyYFu5uUw6nVOJUKp4AYDawmPv5zkAColhk5VwUpMbAb2FvwHR+1Q==, } - "@spectrum-web-components/link@0.42.5": + "@spectrum-web-components/link@0.42.2": resolution: { - integrity: sha512-HQUHX8mwmZrQYgUXMfuwZUP3DDOC7scmGqEh4/mgaG5rGoSXNJGpJvEbKHSeIzxS2Gtf0mlHrtYTXFAiWUHMMg==, + integrity: sha512-H0s6+tb9ajHvfZEt/86wr01dhUK44eWjAXolG/Afu1iJ4MkeIOw1MXf51msXVII80Wj+lf4a0qDzfpugIDCG0w==, } - "@spectrum-web-components/number-field@0.42.5": + "@spectrum-web-components/number-field@0.42.2": resolution: { - integrity: sha512-ZbpXwFdy13HzUz9C8CG7qsFYnogtefziR2S+oF9G8EJirl0kio3LF07KCTzPoN/ptm6EeWQ4IeHOA7Ztx2pt/w==, + integrity: sha512-9tLL0eVN88DzRF6Yws2qW/MftJxSfcp8veXAQlh5m4Um2LDIcTBqxijzfi8JR5b/7dqUsaKvTELzpApSgoncnA==, } - "@spectrum-web-components/overlay@0.42.5": + "@spectrum-web-components/overlay@0.42.2": resolution: { - integrity: sha512-SFD0wyTUWglPW9Hth3pT17xQLdcggWOw8EkiYoOp0Eth6/LKCcJ0a63EFlzEXyY/DqgC24/KzE+mF2Kqcne01A==, + integrity: sha512-uLisZaTyLOjtymTIdOHXdE4bbwjSEq8mtyiW7O69fJY7lyvaqt3bMP+xKAAd3JIubgGoS2OxQi0Wwi6RsK5Rlw==, } - "@spectrum-web-components/popover@0.42.5": + "@spectrum-web-components/popover@0.42.2": resolution: { - integrity: sha512-4A5IcPAzS8NjfSkZYq4P1baIVG3bM983SCTrR0GlLKvH/XYW07idUYiw2R9N/0DEDzY0c+u9U29Iec4o4CSLEw==, + integrity: sha512-kvqftomKwOcUA7t4zajsl+SmNoUQ9bm9zpGnXXEaX/MIY9xeCEvLzrl7ItL/A3CAysEddimb13kV27kgmhgLxg==, } - "@spectrum-web-components/progress-circle@0.42.5": + "@spectrum-web-components/progress-circle@0.42.2": resolution: { - integrity: sha512-XROdnKCYjkKP0Fzoa21zzAqr/xwJ6dyQRgBafw1aMpA8gMVlcW0JHz6ZPAukWTMV6szIfU3DjP0eLmMdMPqDwg==, + integrity: sha512-1u39HoHXTc7WsdBuqnr02ScJeloQaZzUI92qVkOmU7zUDFmYz+jVsQNumQjAhkqP3RoLJypWu/sjYBfhWiaN1g==, } - "@spectrum-web-components/reactive-controllers@0.42.5": + "@spectrum-web-components/reactive-controllers@0.42.2": resolution: { - integrity: sha512-xKg1rhGklcZ6TwYlSmtwCaLiITb6Tdl3vKkLEzCe4dfYDD0FO0kIUuI9uCVonTz6bVBTtEd1/taXJCSneUuDJg==, + integrity: sha512-4I+AiF7WSVvBjenC5iA7LzdTUq4SByfd7ELlTEIQsLlx4B4+el/c54xQ2DAgqdekXMLHO6sK1kHVQnxfs2EREg==, } - "@spectrum-web-components/search@0.42.5": + "@spectrum-web-components/search@0.42.2": resolution: { - integrity: sha512-XCXafVaAc5Q1pdSowtZHE+i/p+PWDnPztpPjo09wzarveX2mrhVHjYl1BU8dfrYh8PBkOTbsEPXy10bdfEH1GQ==, + integrity: sha512-v2rxF2wX5Rzelq/QNEHisn865zMHMYUzYdnwtvRsBkeZGiO3xRwnvm0eU1LsnBKBEQSNFZ3/XdWsAVCsHbijdQ==, } - "@spectrum-web-components/shared@0.42.5": + "@spectrum-web-components/shared@0.42.2": resolution: { - integrity: sha512-daqAnp1KBJ/j0P3I30Z1wuK6wu7p5Bij+0ofCdopo4DK4F3GntfUmRb6a9C4TNV+mWP4K+VxMtZ55aHuLG99Gw==, + integrity: sha512-wULSKIpKhI51za5U2aoEC1XMDUtJy5ekoc9jMgHc/9R2vbaCU1guPaEfLDc8kSv+C4ulmO/mIslTMEz7CuCXBA==, } - "@spectrum-web-components/slider@0.42.5": + "@spectrum-web-components/slider@0.42.2": resolution: { - integrity: sha512-tHjNLSwdvVuup35vTVEA3FwVC0QKkK13R1ZmxhM3EVu0DVoh9BnK1aOz/Z1XnHj3jfFZ7d7yjRkkzG3z8Qr11w==, + integrity: sha512-rbA1R+TGtbkz1CEW5Ncd3TW+R81v63zgD/Nl1aFlj8d/pJPheLuOfp6+TDeSRiB0XNBtLMTFkQe6n0gtZYjRfw==, } - "@spectrum-web-components/styles@0.42.5": + "@spectrum-web-components/styles@0.42.2": resolution: { - integrity: sha512-e2ZFmMTAUMg4VZVR3CpqdeZoLhqu6SN+FiQE7bDspdOAE9V4vIM4nFHVq7FntxEZYjWge3LWqHdOT75BhYG9lQ==, + integrity: sha512-2L1UrHvdwqacNFj7Fa5ITtOZpGFsaXeSnNP/qh8yonk+3WoBaVzgKfR5Rbv68e95ck+VYhHueHrtDq049lTJVw==, } - "@spectrum-web-components/switch@0.42.5": + "@spectrum-web-components/switch@0.42.2": resolution: { - integrity: sha512-ISwhhci60oskx5F5nx1xdiyB2bL85dUrEG1N/TtvNAgwCZm6FENAiihXyvO2dYYg0+GDW/it0sXgl/jVhD08Xw==, + integrity: sha512-2o5XKAC46PfvjsHEPJ9klyYih0SytZKFgr8VdM75jHtlpMRap+Pn55FqfDXmagMUZcWZDnng24aqCl2C0Rn8EQ==, } - "@spectrum-web-components/textfield@0.42.5": + "@spectrum-web-components/textfield@0.42.2": resolution: { - integrity: sha512-79EFHUXqDaPG870pwtUQ+gxLvYp0cDetDRcCgyiccChJkSd3/LXH6kz2XwNjCCGsIDVfjNg7kdEKGSRNTBV2hw==, + integrity: sha512-/q6XZbceAek10/qQcuqVa31dJQBDKimnmRhdsOGNGBvNdWktRdN1LQSWHWgwTAbiGNQl2DLrJf2V9pR1JuJxsw==, } - "@spectrum-web-components/theme@0.42.5": + "@spectrum-web-components/theme@0.42.2": resolution: { - integrity: sha512-6E+j4RfHRlxwrK+t6Sy7az2Pw2N0AaYidcJbXcZZw/luYr1NtvNWMuJq6Jg5bbusTSSNSrAXDgsi4e09MVHuNg==, + integrity: sha512-4Kc7AZPtcYRXyrbM3hwVEKjv9IgScPzdnpN9aj8y1TEHY2lv9vbiAdPH57CoqTd4qjXFGT/h832jE3Qxjw2Q+A==, } - "@spectrum-web-components/toast@0.42.5": + "@spectrum-web-components/toast@0.42.2": resolution: { - integrity: sha512-FBS+OxtmEWILLdXyM0MRKHidU7ZYB21vGgx3rRx/XfzCpZ9Dj0EzLfECLJ2zP5M20wfrSmamIFyPuz0exoG0RA==, + integrity: sha512-GGedn1cq8f2mUfy1DVoHwMoQzBgowFIjNk1Nas7xa1k/C950E7GjKb+Bs+SVXiQtyJqMWF7xEp7om49v4pusDw==, } - "@spectrum-web-components/tooltip@0.42.5": + "@spectrum-web-components/tooltip@0.42.2": resolution: { - integrity: sha512-x+tiVnmgdi1mnlOX2vWlEXW9gl2Sj7f9xzb752JJsEKLkggCP19ldXtuapOzr7clT9Ke1cBrQ/ZrBKoDRuQXJQ==, + integrity: sha512-fViMfRKjGG3+dwzn/Hm7x69gqCz0+cNmyayGrb2iWWDlXJoiA2N5HMLY4zfPSM6BXnzaz15xod1xgebmr0O34Q==, } "@swc/counter@0.1.3": @@ -1420,10 +1426,10 @@ packages: integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==, } - "@types/estree@1.0.6": + "@types/estree@1.0.5": resolution: { - integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, + integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, } "@types/istanbul-lib-coverage@2.0.6": @@ -1438,16 +1444,10 @@ packages: integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, } - "@types/node@20.16.10": + "@types/node@20.14.9": resolution: { - integrity: sha512-vQUKgWTjEIRFCvK6CyriPH3MZYiYlNy0fKiEYHWbcoWLEgs4opurGGKlebrTLqdSMIbXImH6XExNiIyNUv3WpA==, - } - - "@types/node@22.7.4": - resolution: - { - integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==, + integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==, } "@types/semver@7.5.8": @@ -1491,17 +1491,17 @@ packages: peerDependencies: acorn: ^8 - acorn-walk@8.3.4: + acorn-walk@8.3.3: resolution: { - integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==, + integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==, } engines: { node: ">=0.4.0" } - acorn@8.12.1: + acorn@8.12.0: resolution: { - integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==, + integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==, } engines: { node: ">=0.4.0" } hasBin: true @@ -1558,10 +1558,10 @@ packages: } engines: { node: ">=8" } - ansi-regex@6.1.0: + ansi-regex@6.0.1: resolution: { - integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, + integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, } engines: { node: ">=12" } @@ -1769,10 +1769,10 @@ packages: } engines: { node: ">=6" } - callsites@4.2.0: + callsites@4.1.0: resolution: { - integrity: sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==, + integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==, } engines: { node: ">=12.20" } @@ -2242,10 +2242,10 @@ packages: } engines: { node: ">=14.16" } - emoji-regex@10.4.0: + emoji-regex@10.3.0: resolution: { - integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==, + integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, } emoji-regex@8.0.0: @@ -2299,18 +2299,18 @@ packages: integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, } - esbuild@0.21.5: + esbuild@0.20.2: resolution: { - integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, + integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==, } engines: { node: ">=12" } hasBin: true - escalade@3.2.0: + escalade@3.1.2: resolution: { - integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, + integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, } engines: { node: ">=6" } @@ -2475,16 +2475,16 @@ packages: } engines: { node: ">=18" } - focus-visible@5.2.1: + focus-visible@5.2.0: resolution: { - integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==, + integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==, } - foreground-child@3.3.0: + foreground-child@3.2.1: resolution: { - integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, + integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==, } engines: { node: ">=14" } @@ -2574,11 +2574,12 @@ packages: } engines: { node: ">= 6" } - glob@10.4.5: + glob@10.4.2: resolution: { - integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, + integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==, } + engines: { node: ">=16 || 14 >=14.18" } hasBin: true glob@11.0.0: @@ -2610,10 +2611,10 @@ packages: } engines: { node: ">=10" } - globby@14.0.2: + globby@14.0.1: resolution: { - integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==, + integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==, } engines: { node: ">=18" } @@ -2703,10 +2704,10 @@ packages: } engines: { node: ">=10 <11 || >=12 <13 || >=14" } - ignore@5.3.2: + ignore@5.3.1: resolution: { - integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, + integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, } engines: { node: ">= 4" } @@ -2757,10 +2758,10 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - inquirer@9.3.7: + inquirer@9.3.6: resolution: { - integrity: sha512-LJKFHCSeIRq9hanN14IlOtPSTe3lNES7TYDTE2xxdAy1LS5rYphajK1qtwvj3YmQXvvk0U2Vbmcni8P9EIQW9w==, + integrity: sha512-riK/iQB2ctwkpWYgjjWIRv3MBLt2gzb2Sj0JNQNbyTXgyXsLWcDPJ5WS5ZDTCx7BRFnJsARtYh+58fjP5M2Y0Q==, } engines: { node: ">=18" } @@ -2874,10 +2875,10 @@ packages: } engines: { node: ">=10" } - is-unicode-supported@2.1.0: + is-unicode-supported@2.0.0: resolution: { - integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==, + integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==, } engines: { node: ">=18" } @@ -2915,11 +2916,12 @@ packages: } engines: { node: ">=8" } - jackspeak@3.4.3: + jackspeak@3.4.0: resolution: { - integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, + integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==, } + engines: { node: ">=14" } jackspeak@4.0.2: resolution: @@ -2982,10 +2984,10 @@ packages: engines: { node: ">=6" } hasBin: true - jsonc-parser@3.3.1: + jsonc-parser@3.2.1: resolution: { - integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==, + integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==, } jsonfile@4.0.0: @@ -3043,22 +3045,40 @@ packages: } engines: { node: ">=18.0.0" } - lit-element@4.1.0: + lit-element@3.3.3: + resolution: + { + integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==, + } + + lit-element@4.0.5: + resolution: + { + integrity: sha512-iTWskWZEtn9SyEf4aBG6rKT8GABZMrTWop1+jopsEOgEcugcXJGKuX5bEbkq9qfzY+XB4MAgCaSPwnNpdsNQ3Q==, + } + + lit-html@2.8.0: resolution: { - integrity: sha512-gSejRUQJuMQjV2Z59KAS/D4iElUhwKpIyJvZ9w+DIagIQjfJnhR20h2Q5ddpzXGS+fF0tMZ/xEYGMnKmaI/iww==, + integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==, } - lit-html@3.2.0: + lit-html@3.1.3: resolution: { - integrity: sha512-pwT/HwoxqI9FggTrYVarkBKFN9MlTUpLrDHubTmW4SrkL3kkqW5gxwbxMMUnbbRHBC0WTZnYHcjDSCM559VyfA==, + integrity: sha512-FwIbqDD8O/8lM4vUZ4KvQZjPPNx7V1VhT7vmRB8RBAO0AU6wuTVdoXiu2CivVjEGdugvcbPNBLtPE1y0ifplHA==, } - lit@3.2.0: + lit@2.8.0: resolution: { - integrity: sha512-s6tI33Lf6VpDu7u4YqsSX78D28bYQulM+VAzsGch4fx2H0eLZnJsUBsPWmGYSGoKDNbjtRv02rio1o+UdPVwvw==, + integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==, + } + + lit@3.1.3: + resolution: + { + integrity: sha512-l4slfspEsnCcHVRTvaP7YnkTZEZggNFywLEIhQaGhYDczG+tu/vlgm/KaWIEjIp+ZyV20r2JnZctMb8LeLCG7Q==, } load-json-file@7.0.1: @@ -3176,11 +3196,12 @@ packages: integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, } - lru-cache@10.4.3: + lru-cache@10.3.0: resolution: { - integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + integrity: sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==, } + engines: { node: 14 || >=16.14 } lru-cache@11.0.1: resolution: @@ -3383,10 +3404,10 @@ packages: engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true - next@14.2.13: + next@14.2.1: resolution: { - integrity: sha512-BseY9YNw8QJSwLYD7hlZzl6QVDoSFHL/URN5K64kVEVpCsSOWeyjbIGK+dZUaRViHTaMQX8aqmnn0PHBbGZezg==, + integrity: sha512-SF3TJnKdH43PMkCcErLPv+x/DY1YCklslk3ZmwaVoyUfDgHKexuKlf9sEfBQ69w+ue8jQ3msLb+hSj1T19hGag==, } engines: { node: ">=18.17.0" } hasBin: true @@ -3435,10 +3456,10 @@ packages: encoding: optional: true - node-gyp-build@4.8.2: + node-gyp-build@4.8.1: resolution: { - integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==, + integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==, } hasBin: true @@ -3602,10 +3623,10 @@ packages: } engines: { node: ">=18" } - package-json-from-dist@1.0.1: + package-json-from-dist@1.0.0: resolution: { - integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==, + integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==, } package-manager-detector@0.2.0: @@ -3765,10 +3786,10 @@ packages: } engines: { node: ^10 || ^12 || >=14 } - postcss@8.4.47: + postcss@8.4.38: resolution: { - integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==, + integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==, } engines: { node: ^10 || ^12 || >=14 } @@ -3788,10 +3809,10 @@ packages: engines: { node: ">=14" } hasBin: true - pretty-ms@9.1.0: + pretty-ms@9.0.0: resolution: { - integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==, + integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==, } engines: { node: ">=18" } @@ -3807,18 +3828,18 @@ packages: integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } - react-dom@18.3.1: + react-dom@18.2.0: resolution: { - integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, } peerDependencies: - react: ^18.3.1 + react: ^18.2.0 - react@18.3.1: + react@18.2.0: resolution: { - integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, } engines: { node: ">=0.10.0" } @@ -3919,17 +3940,18 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@5.0.10: + rimraf@5.0.5: resolution: { - integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==, + integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==, } + engines: { node: ">=14" } hasBin: true - rollup@4.22.5: + rollup@4.14.3: resolution: { - integrity: sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==, + integrity: sha512-ag5tTQKYsj1bhrFC9+OEWqb5O6VYgtQDO9hPDBMmIbePwhfSr+ExlcU741t8Dhw5DkPCQf6noz0jb36D6W9/hw==, } engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true @@ -3965,10 +3987,10 @@ packages: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - scheduler@0.23.2: + scheduler@0.23.0: resolution: { - integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, } semver@6.3.1: @@ -3978,10 +4000,10 @@ packages: } hasBin: true - semver@7.6.3: + semver@7.6.2: resolution: { - integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, + integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, } engines: { node: ">=10" } hasBin: true @@ -4093,10 +4115,10 @@ packages: integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, } - source-map-js@1.2.1: + source-map-js@1.2.0: resolution: { - integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, + integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==, } engines: { node: ">=0.10.0" } @@ -4154,10 +4176,10 @@ packages: } engines: { node: ">=12" } - string-width@7.2.0: + string-width@7.1.0: resolution: { - integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, + integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==, } engines: { node: ">=18" } @@ -4353,10 +4375,10 @@ packages: integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, } - tslib@2.7.0: + tslib@2.6.2: resolution: { - integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==, + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, } type-fest@0.13.1: @@ -4373,10 +4395,10 @@ packages: } engines: { node: ">=10" } - typescript@5.6.2: + typescript@5.5.2: resolution: { - integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==, + integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==, } engines: { node: ">=14.17" } hasBin: true @@ -4395,10 +4417,10 @@ packages: } engines: { node: ">=8" } - undici-types@6.19.8: + undici-types@5.26.5: resolution: { - integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==, + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, } unicode-emoji-modifier-base@1.0.0: @@ -4454,10 +4476,10 @@ packages: } engines: { node: ">=10.12.0" } - vite@5.4.8: + vite@5.2.9: resolution: { - integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==, + integrity: sha512-uOQWfuZBlc6Y3W/DTuQ1Sr+oIXWvqljLvS881SVmAj00d5RdgShLcuXWxseWPd4HXwiYBFW/vXHfKFeqj9uQnw==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true @@ -4466,7 +4488,6 @@ packages: less: "*" lightningcss: ^1.21.0 sass: "*" - sass-embedded: "*" stylus: "*" sugarss: "*" terser: ^5.4.0 @@ -4479,8 +4500,6 @@ packages: optional: true sass: optional: true - sass-embedded: - optional: true stylus: optional: true sugarss: @@ -4637,10 +4656,10 @@ packages: } engines: { node: ">=10" } - yocto-queue@1.1.1: + yocto-queue@1.0.0: resolution: { - integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, + integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, } engines: { node: ">=12.20" } @@ -4668,7 +4687,7 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.0 - "@babel/runtime@7.25.6": + "@babel/runtime@7.24.7": dependencies: regenerator-runtime: 0.14.1 @@ -4688,7 +4707,7 @@ snapshots: outdent: 0.5.0 prettier: 2.8.8 resolve-from: 5.0.0 - semver: 7.6.3 + semver: 7.6.2 "@changesets/assemble-release-plan@6.0.4": dependencies: @@ -4697,7 +4716,7 @@ snapshots: "@changesets/should-skip-package": 0.1.1 "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 - semver: 7.6.3 + semver: 7.6.2 "@changesets/changelog-git@0.2.0": dependencies: @@ -4740,7 +4759,7 @@ snapshots: package-manager-detector: 0.2.0 picocolors: 1.1.0 resolve-from: 5.0.0 - semver: 7.6.3 + semver: 7.6.2 spawndamnit: 2.0.0 term-size: 2.2.1 @@ -4763,7 +4782,7 @@ snapshots: "@changesets/types": 6.0.0 "@manypkg/get-packages": 1.1.3 picocolors: 1.1.0 - semver: 7.6.3 + semver: 7.6.2 "@changesets/get-github-info@0.6.0": dependencies: @@ -4833,11 +4852,11 @@ snapshots: human-id: 1.0.2 prettier: 2.8.8 - "@commitlint/cli@19.5.0(@types/node@22.7.4)(typescript@5.6.2)": + "@commitlint/cli@19.5.0(@types/node@20.14.9)(typescript@5.5.2)": dependencies: "@commitlint/format": 19.5.0 "@commitlint/lint": 19.5.0 - "@commitlint/load": 19.5.0(@types/node@22.7.4)(typescript@5.6.2) + "@commitlint/load": 19.5.0(@types/node@20.14.9)(typescript@5.5.2) "@commitlint/read": 19.5.0 "@commitlint/types": 19.5.0 tinyexec: 0.3.0 @@ -4875,7 +4894,7 @@ snapshots: "@commitlint/is-ignored@19.5.0": dependencies: "@commitlint/types": 19.5.0 - semver: 7.6.3 + semver: 7.6.2 "@commitlint/lint@19.5.0": dependencies: @@ -4884,15 +4903,15 @@ snapshots: "@commitlint/rules": 19.5.0 "@commitlint/types": 19.5.0 - "@commitlint/load@19.5.0(@types/node@22.7.4)(typescript@5.6.2)": + "@commitlint/load@19.5.0(@types/node@20.14.9)(typescript@5.5.2)": dependencies: "@commitlint/config-validator": 19.5.0 "@commitlint/execute-rule": 19.5.0 "@commitlint/resolve-extends": 19.5.0 "@commitlint/types": 19.5.0 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.6.2) - cosmiconfig-typescript-loader: 5.0.0(@types/node@22.7.4)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2) + cosmiconfig: 9.0.0(typescript@5.5.2) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -4943,73 +4962,73 @@ snapshots: "@types/conventional-commits-parser": 5.0.0 chalk: 5.3.0 - "@esbuild/aix-ppc64@0.21.5": + "@esbuild/aix-ppc64@0.20.2": optional: true - "@esbuild/android-arm64@0.21.5": + "@esbuild/android-arm64@0.20.2": optional: true - "@esbuild/android-arm@0.21.5": + "@esbuild/android-arm@0.20.2": optional: true - "@esbuild/android-x64@0.21.5": + "@esbuild/android-x64@0.20.2": optional: true - "@esbuild/darwin-arm64@0.21.5": + "@esbuild/darwin-arm64@0.20.2": optional: true - "@esbuild/darwin-x64@0.21.5": + "@esbuild/darwin-x64@0.20.2": optional: true - "@esbuild/freebsd-arm64@0.21.5": + "@esbuild/freebsd-arm64@0.20.2": optional: true - "@esbuild/freebsd-x64@0.21.5": + "@esbuild/freebsd-x64@0.20.2": optional: true - "@esbuild/linux-arm64@0.21.5": + "@esbuild/linux-arm64@0.20.2": optional: true - "@esbuild/linux-arm@0.21.5": + "@esbuild/linux-arm@0.20.2": optional: true - "@esbuild/linux-ia32@0.21.5": + "@esbuild/linux-ia32@0.20.2": optional: true - "@esbuild/linux-loong64@0.21.5": + "@esbuild/linux-loong64@0.20.2": optional: true - "@esbuild/linux-mips64el@0.21.5": + "@esbuild/linux-mips64el@0.20.2": optional: true - "@esbuild/linux-ppc64@0.21.5": + "@esbuild/linux-ppc64@0.20.2": optional: true - "@esbuild/linux-riscv64@0.21.5": + "@esbuild/linux-riscv64@0.20.2": optional: true - "@esbuild/linux-s390x@0.21.5": + "@esbuild/linux-s390x@0.20.2": optional: true - "@esbuild/linux-x64@0.21.5": + "@esbuild/linux-x64@0.20.2": optional: true - "@esbuild/netbsd-x64@0.21.5": + "@esbuild/netbsd-x64@0.20.2": optional: true - "@esbuild/openbsd-x64@0.21.5": + "@esbuild/openbsd-x64@0.20.2": optional: true - "@esbuild/sunos-x64@0.21.5": + "@esbuild/sunos-x64@0.20.2": optional: true - "@esbuild/win32-arm64@0.21.5": + "@esbuild/win32-arm64@0.20.2": optional: true - "@esbuild/win32-ia32@0.21.5": + "@esbuild/win32-ia32@0.20.2": optional: true - "@esbuild/win32-x64@0.21.5": + "@esbuild/win32-x64@0.20.2": optional: true "@floating-ui/core@1.6.0": @@ -5023,7 +5042,7 @@ snapshots: "@floating-ui/utils@0.2.1": {} - "@inquirer/figures@1.0.6": {} + "@inquirer/figures@1.0.5": {} "@internationalized/number@3.5.1": dependencies: @@ -5038,7 +5057,7 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - "@isaacs/fs-minipass@4.0.1": + "@isaacs/fs-minipass@4.0.0": dependencies: minipass: 7.1.2 @@ -5053,27 +5072,30 @@ snapshots: "@jridgewell/resolve-uri": 3.1.2 "@jridgewell/sourcemap-codec": 1.5.0 - "@lit-labs/observers@2.0.3": + "@lit-labs/observers@2.0.2": dependencies: "@lit/reactive-element": 2.0.4 - lit-html: 3.2.0 - "@lit-labs/ssr-dom-shim@1.2.1": {} + "@lit-labs/ssr-dom-shim@1.2.0": {} + + "@lit/reactive-element@1.6.3": + dependencies: + "@lit-labs/ssr-dom-shim": 1.2.0 "@lit/reactive-element@2.0.4": dependencies: - "@lit-labs/ssr-dom-shim": 1.2.1 + "@lit-labs/ssr-dom-shim": 1.2.0 "@manypkg/find-root@1.1.0": dependencies: - "@babel/runtime": 7.25.6 + "@babel/runtime": 7.24.7 "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 "@manypkg/get-packages@1.1.3": dependencies: - "@babel/runtime": 7.25.6 + "@babel/runtime": 7.24.7 "@changesets/types": 4.1.0 "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 @@ -5089,7 +5111,7 @@ snapshots: nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 - semver: 7.6.3 + semver: 7.6.2 tar: 6.2.1 transitivePeerDependencies: - encoding @@ -5128,33 +5150,33 @@ snapshots: "@moonrepo/core-windows-x64-msvc@1.28.3": optional: true - "@next/env@14.2.13": {} + "@next/env@14.2.1": {} - "@next/swc-darwin-arm64@14.2.13": + "@next/swc-darwin-arm64@14.2.1": optional: true - "@next/swc-darwin-x64@14.2.13": + "@next/swc-darwin-x64@14.2.1": optional: true - "@next/swc-linux-arm64-gnu@14.2.13": + "@next/swc-linux-arm64-gnu@14.2.1": optional: true - "@next/swc-linux-arm64-musl@14.2.13": + "@next/swc-linux-arm64-musl@14.2.1": optional: true - "@next/swc-linux-x64-gnu@14.2.13": + "@next/swc-linux-x64-gnu@14.2.1": optional: true - "@next/swc-linux-x64-musl@14.2.13": + "@next/swc-linux-x64-musl@14.2.1": optional: true - "@next/swc-win32-arm64-msvc@14.2.13": + "@next/swc-win32-arm64-msvc@14.2.1": optional: true - "@next/swc-win32-ia32-msvc@14.2.13": + "@next/swc-win32-ia32-msvc@14.2.1": optional: true - "@next/swc-win32-x64-msvc@14.2.13": + "@next/swc-win32-x64-msvc@14.2.1": optional: true "@nodelib/fs.scandir@2.1.5": @@ -5177,59 +5199,59 @@ snapshots: estree-walker: 2.0.2 picomatch: 2.3.1 - "@rollup/rollup-android-arm-eabi@4.22.5": + "@rollup/rollup-android-arm-eabi@4.14.3": optional: true - "@rollup/rollup-android-arm64@4.22.5": + "@rollup/rollup-android-arm64@4.14.3": optional: true - "@rollup/rollup-darwin-arm64@4.22.5": + "@rollup/rollup-darwin-arm64@4.14.3": optional: true - "@rollup/rollup-darwin-x64@4.22.5": + "@rollup/rollup-darwin-x64@4.14.3": optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.22.5": + "@rollup/rollup-linux-arm-gnueabihf@4.14.3": optional: true - "@rollup/rollup-linux-arm-musleabihf@4.22.5": + "@rollup/rollup-linux-arm-musleabihf@4.14.3": optional: true - "@rollup/rollup-linux-arm64-gnu@4.22.5": + "@rollup/rollup-linux-arm64-gnu@4.14.3": optional: true - "@rollup/rollup-linux-arm64-musl@4.22.5": + "@rollup/rollup-linux-arm64-musl@4.14.3": optional: true - "@rollup/rollup-linux-powerpc64le-gnu@4.22.5": + "@rollup/rollup-linux-powerpc64le-gnu@4.14.3": optional: true - "@rollup/rollup-linux-riscv64-gnu@4.22.5": + "@rollup/rollup-linux-riscv64-gnu@4.14.3": optional: true - "@rollup/rollup-linux-s390x-gnu@4.22.5": + "@rollup/rollup-linux-s390x-gnu@4.14.3": optional: true - "@rollup/rollup-linux-x64-gnu@4.22.5": + "@rollup/rollup-linux-x64-gnu@4.14.3": optional: true - "@rollup/rollup-linux-x64-musl@4.22.5": + "@rollup/rollup-linux-x64-musl@4.14.3": optional: true - "@rollup/rollup-win32-arm64-msvc@4.22.5": + "@rollup/rollup-win32-arm64-msvc@4.14.3": optional: true - "@rollup/rollup-win32-ia32-msvc@4.22.5": + "@rollup/rollup-win32-ia32-msvc@4.14.3": optional: true - "@rollup/rollup-win32-x64-msvc@4.22.5": + "@rollup/rollup-win32-x64-msvc@4.14.3": optional: true "@sindresorhus/is@4.6.0": {} "@sindresorhus/merge-streams@2.3.0": {} - "@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0)": dependencies: "@spectrum-css/tokens": 13.2.0 @@ -5241,15 +5263,15 @@ snapshots: dependencies: "@spectrum-css/tokens": 13.2.0 - "@spectrum-css/sidenav@4.2.4(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/sidenav@4.2.4(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": dependencies: "@spectrum-css/tokens": 13.2.0 optionalDependencies: - "@spectrum-css/icon": 7.1.4(@spectrum-css/tokens@13.2.0) + "@spectrum-css/icon": 7.1.1(@spectrum-css/tokens@13.2.0) - "@spectrum-css/table@5.2.5(@spectrum-css/icon@7.1.4(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": + "@spectrum-css/table@5.2.5(@spectrum-css/icon@7.1.1(@spectrum-css/tokens@13.2.0))(@spectrum-css/tokens@13.2.0)": dependencies: - "@spectrum-css/icon": 7.1.4(@spectrum-css/tokens@13.2.0) + "@spectrum-css/icon": 7.1.1(@spectrum-css/tokens@13.2.0) "@spectrum-css/tokens": 13.2.0 "@spectrum-css/tokens@13.2.0": {} @@ -5258,223 +5280,219 @@ snapshots: dependencies: "@spectrum-css/tokens": 13.2.0 - "@spectrum-web-components/action-button@0.42.5": + "@spectrum-web-components/action-button@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/button": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-ui": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/button": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-ui": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/base@0.42.5": + "@spectrum-web-components/base@0.42.2": dependencies: - lit: 3.2.0 + lit: 2.8.0 - "@spectrum-web-components/button-group@0.42.5": + "@spectrum-web-components/button-group@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/button": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/button": 0.42.2 - "@spectrum-web-components/button@0.42.5": + "@spectrum-web-components/button@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/clear-button": 0.42.5 - "@spectrum-web-components/close-button": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-ui": 0.42.5 - "@spectrum-web-components/progress-circle": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/clear-button": 0.42.2 + "@spectrum-web-components/close-button": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-ui": 0.42.2 + "@spectrum-web-components/progress-circle": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/checkbox@0.42.5": + "@spectrum-web-components/checkbox@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-ui": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-ui": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/clear-button@0.42.5": + "@spectrum-web-components/clear-button@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/close-button@0.42.5": + "@spectrum-web-components/close-button@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/field-group@0.42.5": + "@spectrum-web-components/field-group@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/help-text": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/help-text": 0.42.2 - "@spectrum-web-components/field-label@0.42.5": + "@spectrum-web-components/field-label@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-ui": 0.42.5 - "@spectrum-web-components/reactive-controllers": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-ui": 0.42.2 + "@spectrum-web-components/reactive-controllers": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/help-text@0.42.5": + "@spectrum-web-components/help-text@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/icons-workflow": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/icons-workflow": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/icon@0.42.5": + "@spectrum-web-components/icon@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/iconset": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/iconset": 0.42.2 - "@spectrum-web-components/icons-ui@0.42.5": + "@spectrum-web-components/icons-ui@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/iconset": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/iconset": 0.42.2 - "@spectrum-web-components/icons-workflow@0.42.5": + "@spectrum-web-components/icons-workflow@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 - "@spectrum-web-components/iconset@0.42.5": + "@spectrum-web-components/iconset@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/infield-button@0.42.5": + "@spectrum-web-components/infield-button@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/button": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/button": 0.42.2 - "@spectrum-web-components/link@0.42.5": + "@spectrum-web-components/link@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/number-field@0.42.5": + "@spectrum-web-components/number-field@0.42.2": dependencies: "@internationalized/number": 3.5.1 - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-ui": 0.42.5 - "@spectrum-web-components/infield-button": 0.42.5 - "@spectrum-web-components/reactive-controllers": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/textfield": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-ui": 0.42.2 + "@spectrum-web-components/infield-button": 0.42.2 + "@spectrum-web-components/reactive-controllers": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/textfield": 0.42.2 - "@spectrum-web-components/overlay@0.42.5": + "@spectrum-web-components/overlay@0.42.2": dependencies: "@floating-ui/dom": 1.6.3 "@floating-ui/utils": 0.2.1 - "@spectrum-web-components/action-button": 0.42.5 - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/reactive-controllers": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/theme": 0.42.5 + "@spectrum-web-components/action-button": 0.42.2 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/reactive-controllers": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/theme": 0.42.2 - "@spectrum-web-components/popover@0.42.5": + "@spectrum-web-components/popover@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/overlay": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/overlay": 0.42.2 - "@spectrum-web-components/progress-circle@0.42.5": + "@spectrum-web-components/progress-circle@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/reactive-controllers@0.42.5": + "@spectrum-web-components/reactive-controllers@0.42.2": dependencies: - lit: 3.2.0 + lit: 2.8.0 - "@spectrum-web-components/search@0.42.5": + "@spectrum-web-components/search@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/button": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-workflow": 0.42.5 - "@spectrum-web-components/textfield": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/button": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-workflow": 0.42.2 + "@spectrum-web-components/textfield": 0.42.2 - "@spectrum-web-components/shared@0.42.5": + "@spectrum-web-components/shared@0.42.2": dependencies: - "@lit-labs/observers": 2.0.3 - "@spectrum-web-components/base": 0.42.5 - focus-visible: 5.2.1 + "@lit-labs/observers": 2.0.2 + "@spectrum-web-components/base": 0.42.2 + focus-visible: 5.2.0 - "@spectrum-web-components/slider@0.42.5": + "@spectrum-web-components/slider@0.42.2": dependencies: "@internationalized/number": 3.5.1 - "@lit-labs/observers": 2.0.3 - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/field-label": 0.42.5 - "@spectrum-web-components/number-field": 0.42.5 - "@spectrum-web-components/reactive-controllers": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 - "@spectrum-web-components/theme": 0.42.5 + "@lit-labs/observers": 2.0.2 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/field-label": 0.42.2 + "@spectrum-web-components/number-field": 0.42.2 + "@spectrum-web-components/reactive-controllers": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 + "@spectrum-web-components/theme": 0.42.2 - "@spectrum-web-components/styles@0.42.5": + "@spectrum-web-components/styles@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 + "@spectrum-web-components/base": 0.42.2 - "@spectrum-web-components/switch@0.42.5": + "@spectrum-web-components/switch@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/checkbox": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/checkbox": 0.42.2 - "@spectrum-web-components/textfield@0.42.5": + "@spectrum-web-components/textfield@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/help-text": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-ui": 0.42.5 - "@spectrum-web-components/icons-workflow": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/help-text": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-ui": 0.42.2 + "@spectrum-web-components/icons-workflow": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/theme@0.42.5": + "@spectrum-web-components/theme@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/styles": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/styles": 0.42.2 - "@spectrum-web-components/toast@0.42.5": + "@spectrum-web-components/toast@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/button": 0.42.5 - "@spectrum-web-components/icon": 0.42.5 - "@spectrum-web-components/icons-workflow": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/button": 0.42.2 + "@spectrum-web-components/icon": 0.42.2 + "@spectrum-web-components/icons-workflow": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 - "@spectrum-web-components/tooltip@0.42.5": + "@spectrum-web-components/tooltip@0.42.2": dependencies: - "@spectrum-web-components/base": 0.42.5 - "@spectrum-web-components/overlay": 0.42.5 - "@spectrum-web-components/reactive-controllers": 0.42.5 - "@spectrum-web-components/shared": 0.42.5 + "@spectrum-web-components/base": 0.42.2 + "@spectrum-web-components/overlay": 0.42.2 + "@spectrum-web-components/reactive-controllers": 0.42.2 + "@spectrum-web-components/shared": 0.42.2 "@swc/counter@0.1.3": {} "@swc/helpers@0.5.10": dependencies: - tslib: 2.7.0 + tslib: 2.6.2 "@swc/helpers@0.5.5": dependencies: "@swc/counter": 0.1.3 - tslib: 2.7.0 + tslib: 2.6.2 "@types/conventional-commits-parser@5.0.0": dependencies: - "@types/node": 20.16.10 + "@types/node": 20.14.9 - "@types/estree@1.0.6": {} + "@types/estree@1.0.5": {} "@types/istanbul-lib-coverage@2.0.6": {} "@types/node@12.20.55": {} - "@types/node@20.16.10": + "@types/node@20.14.9": dependencies: - undici-types: 6.19.8 - - "@types/node@22.7.4": - dependencies: - undici-types: 6.19.8 + undici-types: 5.26.5 "@types/semver@7.5.8": {} @@ -5484,15 +5502,15 @@ snapshots: dependencies: "@mapbox/node-pre-gyp": 1.0.11 "@rollup/pluginutils": 4.2.1 - acorn: 8.12.1 - acorn-import-attributes: 1.9.5(acorn@8.12.1) + acorn: 8.12.0 + acorn-import-attributes: 1.9.5(acorn@8.12.0) async-sema: 3.1.1 bindings: 1.5.0 estree-walker: 2.0.2 glob: 7.2.3 graceful-fs: 4.2.11 micromatch: 4.0.8 - node-gyp-build: 4.8.2 + node-gyp-build: 4.8.1 resolve-from: 5.0.0 transitivePeerDependencies: - encoding @@ -5505,15 +5523,15 @@ snapshots: abbrev@1.1.1: {} - acorn-import-attributes@1.9.5(acorn@8.12.1): + acorn-import-attributes@1.9.5(acorn@8.12.0): dependencies: - acorn: 8.12.1 + acorn: 8.12.0 - acorn-walk@8.3.4: + acorn-walk@8.3.3: dependencies: - acorn: 8.12.1 + acorn: 8.12.0 - acorn@8.12.1: {} + acorn@8.12.0: {} agent-base@6.0.2: dependencies: @@ -5544,7 +5562,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.1.0: {} + ansi-regex@6.0.1: {} ansi-styles@3.2.1: dependencies: @@ -5590,12 +5608,12 @@ snapshots: ava@6.1.3: dependencies: "@vercel/nft": 0.26.5 - acorn: 8.12.1 - acorn-walk: 8.3.4 + acorn: 8.12.0 + acorn-walk: 8.3.3 ansi-styles: 6.2.1 arrgv: 1.0.2 arrify: 3.0.0 - callsites: 4.2.0 + callsites: 4.1.0 cbor: 9.0.2 chalk: 5.3.0 chunkd: 2.0.1 @@ -5609,7 +5627,7 @@ snapshots: debug: 4.3.7 emittery: 1.0.3 figures: 6.1.0 - globby: 14.0.2 + globby: 14.0.1 ignore-by-default: 2.1.0 indent-string: 5.0.0 is-plain-object: 5.0.0 @@ -5621,7 +5639,7 @@ snapshots: package-config: 5.0.0 picomatch: 3.0.1 plur: 5.1.0 - pretty-ms: 9.1.0 + pretty-ms: 9.0.0 resolve-cwd: 3.0.0 stack-utils: 2.0.6 strip-ansi: 7.1.0 @@ -5680,7 +5698,7 @@ snapshots: "@bcoe/v8-coverage": 0.2.3 "@istanbuljs/schema": 0.1.3 find-up: 5.0.0 - foreground-child: 3.3.0 + foreground-child: 3.2.1 istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 istanbul-reports: 3.1.7 @@ -5691,19 +5709,19 @@ snapshots: callsites@3.1.0: {} - callsites@4.2.0: {} + callsites@4.1.0: {} camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.7.0 + tslib: 2.6.2 caniuse-lite@1.0.30001610: {} capital-case@1.0.4: dependencies: no-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 upper-case-first: 2.0.2 cbor@9.0.2: @@ -5736,7 +5754,7 @@ snapshots: path-case: 3.0.4 sentence-case: 3.0.4 snake-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 char-regex@1.0.2: {} @@ -5767,7 +5785,7 @@ snapshots: cli-truncate@4.0.0: dependencies: slice-ansi: 5.0.0 - string-width: 7.2.0 + string-width: 7.1.0 cli-width@4.1.0: {} @@ -5836,7 +5854,7 @@ snapshots: js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.6.3 + semver: 7.6.2 well-known-symbols: 2.0.0 console-control-strings@1.1.0: {} @@ -5844,7 +5862,7 @@ snapshots: constant-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 upper-case: 2.0.2 conventional-changelog-angular@7.0.0: @@ -5866,21 +5884,21 @@ snapshots: convert-to-spaces@2.0.1: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@22.7.4)(cosmiconfig@9.0.0(typescript@5.6.2))(typescript@5.6.2): + cosmiconfig-typescript-loader@5.0.0(@types/node@20.14.9)(cosmiconfig@9.0.0(typescript@5.5.2))(typescript@5.5.2): dependencies: - "@types/node": 22.7.4 - cosmiconfig: 9.0.0(typescript@5.6.2) + "@types/node": 20.14.9 + cosmiconfig: 9.0.0(typescript@5.5.2) jiti: 1.21.6 - typescript: 5.6.2 + typescript: 5.5.2 - cosmiconfig@9.0.0(typescript@5.6.2): + cosmiconfig@9.0.0(typescript@5.5.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.6.2 + typescript: 5.5.2 cross-spawn@5.1.0: dependencies: @@ -5933,7 +5951,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 dot-prop@5.3.0: dependencies: @@ -5945,7 +5963,7 @@ snapshots: emittery@1.0.3: {} - emoji-regex@10.4.0: {} + emoji-regex@10.3.0: {} emoji-regex@8.0.0: {} @@ -5968,33 +5986,33 @@ snapshots: dependencies: is-arrayish: 0.2.1 - esbuild@0.21.5: + esbuild@0.20.2: optionalDependencies: - "@esbuild/aix-ppc64": 0.21.5 - "@esbuild/android-arm": 0.21.5 - "@esbuild/android-arm64": 0.21.5 - "@esbuild/android-x64": 0.21.5 - "@esbuild/darwin-arm64": 0.21.5 - "@esbuild/darwin-x64": 0.21.5 - "@esbuild/freebsd-arm64": 0.21.5 - "@esbuild/freebsd-x64": 0.21.5 - "@esbuild/linux-arm": 0.21.5 - "@esbuild/linux-arm64": 0.21.5 - "@esbuild/linux-ia32": 0.21.5 - "@esbuild/linux-loong64": 0.21.5 - "@esbuild/linux-mips64el": 0.21.5 - "@esbuild/linux-ppc64": 0.21.5 - "@esbuild/linux-riscv64": 0.21.5 - "@esbuild/linux-s390x": 0.21.5 - "@esbuild/linux-x64": 0.21.5 - "@esbuild/netbsd-x64": 0.21.5 - "@esbuild/openbsd-x64": 0.21.5 - "@esbuild/sunos-x64": 0.21.5 - "@esbuild/win32-arm64": 0.21.5 - "@esbuild/win32-ia32": 0.21.5 - "@esbuild/win32-x64": 0.21.5 - - escalade@3.2.0: {} + "@esbuild/aix-ppc64": 0.20.2 + "@esbuild/android-arm": 0.20.2 + "@esbuild/android-arm64": 0.20.2 + "@esbuild/android-x64": 0.20.2 + "@esbuild/darwin-arm64": 0.20.2 + "@esbuild/darwin-x64": 0.20.2 + "@esbuild/freebsd-arm64": 0.20.2 + "@esbuild/freebsd-x64": 0.20.2 + "@esbuild/linux-arm": 0.20.2 + "@esbuild/linux-arm64": 0.20.2 + "@esbuild/linux-ia32": 0.20.2 + "@esbuild/linux-loong64": 0.20.2 + "@esbuild/linux-mips64el": 0.20.2 + "@esbuild/linux-ppc64": 0.20.2 + "@esbuild/linux-riscv64": 0.20.2 + "@esbuild/linux-s390x": 0.20.2 + "@esbuild/linux-x64": 0.20.2 + "@esbuild/netbsd-x64": 0.20.2 + "@esbuild/openbsd-x64": 0.20.2 + "@esbuild/sunos-x64": 0.20.2 + "@esbuild/win32-arm64": 0.20.2 + "@esbuild/win32-ia32": 0.20.2 + "@esbuild/win32-x64": 0.20.2 + + escalade@3.1.2: {} escape-string-regexp@1.0.5: {} @@ -6050,7 +6068,7 @@ snapshots: figures@6.1.0: dependencies: - is-unicode-supported: 2.1.0 + is-unicode-supported: 2.0.0 file-uri-to-path@1.0.0: {} @@ -6086,9 +6104,9 @@ snapshots: path-exists: 5.0.0 unicorn-magic: 0.1.0 - focus-visible@5.2.1: {} + focus-visible@5.2.0: {} - foreground-child@3.3.0: + foreground-child@3.2.1: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 @@ -6148,22 +6166,22 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.4.5: + glob@10.4.2: dependencies: - foreground-child: 3.3.0 - jackspeak: 3.4.3 + foreground-child: 3.2.1 + jackspeak: 3.4.0 minimatch: 9.0.5 minipass: 7.1.2 - package-json-from-dist: 1.0.1 + package-json-from-dist: 1.0.0 path-scurry: 1.11.1 glob@11.0.0: dependencies: - foreground-child: 3.3.0 + foreground-child: 3.2.1 jackspeak: 4.0.2 minimatch: 10.0.1 minipass: 7.1.2 - package-json-from-dist: 1.0.1 + package-json-from-dist: 1.0.0 path-scurry: 2.0.0 glob@7.2.3: @@ -6184,15 +6202,15 @@ snapshots: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.2 - ignore: 5.3.2 + ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 - globby@14.0.2: + globby@14.0.1: dependencies: "@sindresorhus/merge-streams": 2.3.0 fast-glob: 3.3.2 - ignore: 5.3.2 + ignore: 5.3.1 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -6208,7 +6226,7 @@ snapshots: header-case@2.0.4: dependencies: capital-case: 1.0.4 - tslib: 2.7.0 + tslib: 2.6.2 html-escaper@2.0.2: {} @@ -6233,7 +6251,7 @@ snapshots: ignore-by-default@2.1.0: {} - ignore@5.3.2: {} + ignore@5.3.1: {} import-fresh@3.3.0: dependencies: @@ -6255,9 +6273,9 @@ snapshots: ini@4.1.1: {} - inquirer@9.3.7: + inquirer@9.3.6: dependencies: - "@inquirer/figures": 1.0.6 + "@inquirer/figures": 1.0.5 ansi-escapes: 4.3.2 cli-width: 4.1.0 external-editor: 3.1.0 @@ -6310,7 +6328,7 @@ snapshots: is-unicode-supported@0.1.0: {} - is-unicode-supported@2.1.0: {} + is-unicode-supported@2.0.0: {} is-windows@1.0.2: {} @@ -6329,7 +6347,7 @@ snapshots: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - jackspeak@3.4.3: + jackspeak@3.4.0: dependencies: "@isaacs/cliui": 8.0.2 optionalDependencies: @@ -6360,7 +6378,7 @@ snapshots: json5@2.2.3: {} - jsonc-parser@3.3.1: {} + jsonc-parser@3.2.1: {} jsonfile@4.0.0: optionalDependencies: @@ -6404,21 +6422,37 @@ snapshots: rfdc: 1.4.1 wrap-ansi: 9.0.0 - lit-element@4.1.0: + lit-element@3.3.3: dependencies: - "@lit-labs/ssr-dom-shim": 1.2.1 + "@lit-labs/ssr-dom-shim": 1.2.0 + "@lit/reactive-element": 1.6.3 + lit-html: 2.8.0 + + lit-element@4.0.5: + dependencies: + "@lit-labs/ssr-dom-shim": 1.2.0 "@lit/reactive-element": 2.0.4 - lit-html: 3.2.0 + lit-html: 3.1.3 - lit-html@3.2.0: + lit-html@2.8.0: dependencies: "@types/trusted-types": 2.0.7 - lit@3.2.0: + lit-html@3.1.3: + dependencies: + "@types/trusted-types": 2.0.7 + + lit@2.8.0: + dependencies: + "@lit/reactive-element": 1.6.3 + lit-element: 3.3.3 + lit-html: 2.8.0 + + lit@3.1.3: dependencies: "@lit/reactive-element": 2.0.4 - lit-element: 4.1.0 - lit-html: 3.2.0 + lit-element: 4.0.5 + lit-html: 3.1.3 load-json-file@7.0.1: {} @@ -6473,9 +6507,9 @@ snapshots: lower-case@2.0.2: dependencies: - tslib: 2.7.0 + tslib: 2.6.2 - lru-cache@10.4.3: {} + lru-cache@10.3.0: {} lru-cache@11.0.1: {} @@ -6490,7 +6524,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.6.3 + semver: 7.6.2 matcher@5.0.0: dependencies: @@ -6551,7 +6585,7 @@ snapshots: minizlib@3.0.1: dependencies: minipass: 7.1.2 - rimraf: 5.0.10 + rimraf: 5.0.5 mkdirp@1.0.4: {} @@ -6565,27 +6599,27 @@ snapshots: nanoid@3.3.7: {} - next@14.2.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@14.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@next/env": 14.2.13 + "@next/env": 14.2.1 "@swc/helpers": 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001610 graceful-fs: 4.2.11 postcss: 8.4.31 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(react@18.3.1) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: - "@next/swc-darwin-arm64": 14.2.13 - "@next/swc-darwin-x64": 14.2.13 - "@next/swc-linux-arm64-gnu": 14.2.13 - "@next/swc-linux-arm64-musl": 14.2.13 - "@next/swc-linux-x64-gnu": 14.2.13 - "@next/swc-linux-x64-musl": 14.2.13 - "@next/swc-win32-arm64-msvc": 14.2.13 - "@next/swc-win32-ia32-msvc": 14.2.13 - "@next/swc-win32-x64-msvc": 14.2.13 + "@next/swc-darwin-arm64": 14.2.1 + "@next/swc-darwin-x64": 14.2.1 + "@next/swc-linux-arm64-gnu": 14.2.1 + "@next/swc-linux-arm64-musl": 14.2.1 + "@next/swc-linux-x64-gnu": 14.2.1 + "@next/swc-linux-x64-musl": 14.2.1 + "@next/swc-win32-arm64-msvc": 14.2.1 + "@next/swc-win32-ia32-msvc": 14.2.1 + "@next/swc-win32-x64-msvc": 14.2.1 transitivePeerDependencies: - "@babel/core" - babel-plugin-macros @@ -6599,7 +6633,7 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.7.0 + tslib: 2.6.2 node-emoji@2.1.3: dependencies: @@ -6612,7 +6646,7 @@ snapshots: dependencies: whatwg-url: 5.0.0 - node-gyp-build@4.8.2: {} + node-gyp-build@4.8.1: {} nofilter@3.1.0: {} @@ -6679,7 +6713,7 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.1.1 + yocto-queue: 1.0.0 p-locate@4.1.0: dependencies: @@ -6704,14 +6738,14 @@ snapshots: find-up-simple: 1.0.0 load-json-file: 7.0.1 - package-json-from-dist@1.0.1: {} + package-json-from-dist@1.0.0: {} package-manager-detector@0.2.0: {} param-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 parent-module@1.0.1: dependencies: @@ -6729,12 +6763,12 @@ snapshots: pascal-case@3.1.2: dependencies: no-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 path-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 path-exists@4.0.0: {} @@ -6748,7 +6782,7 @@ snapshots: path-scurry@1.11.1: dependencies: - lru-cache: 10.4.3 + lru-cache: 10.3.0 minipass: 7.1.2 path-scurry@2.0.0: @@ -6778,19 +6812,19 @@ snapshots: dependencies: nanoid: 3.3.7 picocolors: 1.1.0 - source-map-js: 1.2.1 + source-map-js: 1.2.0 - postcss@8.4.47: + postcss@8.4.38: dependencies: nanoid: 3.3.7 picocolors: 1.1.0 - source-map-js: 1.2.1 + source-map-js: 1.2.0 prettier@2.8.8: {} prettier@3.3.3: {} - pretty-ms@9.1.0: + pretty-ms@9.0.0: dependencies: parse-ms: 4.0.0 @@ -6798,13 +6832,13 @@ snapshots: queue-microtask@1.2.3: {} - react-dom@18.3.1(react@18.3.1): + react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 - react: 18.3.1 - scheduler: 0.23.2 + react: 18.2.0 + scheduler: 0.23.0 - react@18.3.1: + react@18.2.0: dependencies: loose-envify: 1.4.0 @@ -6855,30 +6889,30 @@ snapshots: dependencies: glob: 7.2.3 - rimraf@5.0.10: + rimraf@5.0.5: dependencies: - glob: 10.4.5 + glob: 10.4.2 - rollup@4.22.5: + rollup@4.14.3: dependencies: - "@types/estree": 1.0.6 + "@types/estree": 1.0.5 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.22.5 - "@rollup/rollup-android-arm64": 4.22.5 - "@rollup/rollup-darwin-arm64": 4.22.5 - "@rollup/rollup-darwin-x64": 4.22.5 - "@rollup/rollup-linux-arm-gnueabihf": 4.22.5 - "@rollup/rollup-linux-arm-musleabihf": 4.22.5 - "@rollup/rollup-linux-arm64-gnu": 4.22.5 - "@rollup/rollup-linux-arm64-musl": 4.22.5 - "@rollup/rollup-linux-powerpc64le-gnu": 4.22.5 - "@rollup/rollup-linux-riscv64-gnu": 4.22.5 - "@rollup/rollup-linux-s390x-gnu": 4.22.5 - "@rollup/rollup-linux-x64-gnu": 4.22.5 - "@rollup/rollup-linux-x64-musl": 4.22.5 - "@rollup/rollup-win32-arm64-msvc": 4.22.5 - "@rollup/rollup-win32-ia32-msvc": 4.22.5 - "@rollup/rollup-win32-x64-msvc": 4.22.5 + "@rollup/rollup-android-arm-eabi": 4.14.3 + "@rollup/rollup-android-arm64": 4.14.3 + "@rollup/rollup-darwin-arm64": 4.14.3 + "@rollup/rollup-darwin-x64": 4.14.3 + "@rollup/rollup-linux-arm-gnueabihf": 4.14.3 + "@rollup/rollup-linux-arm-musleabihf": 4.14.3 + "@rollup/rollup-linux-arm64-gnu": 4.14.3 + "@rollup/rollup-linux-arm64-musl": 4.14.3 + "@rollup/rollup-linux-powerpc64le-gnu": 4.14.3 + "@rollup/rollup-linux-riscv64-gnu": 4.14.3 + "@rollup/rollup-linux-s390x-gnu": 4.14.3 + "@rollup/rollup-linux-x64-gnu": 4.14.3 + "@rollup/rollup-linux-x64-musl": 4.14.3 + "@rollup/rollup-win32-arm64-msvc": 4.14.3 + "@rollup/rollup-win32-ia32-msvc": 4.14.3 + "@rollup/rollup-win32-x64-msvc": 4.14.3 fsevents: 2.3.3 run-async@3.0.0: {} @@ -6889,24 +6923,24 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.7.0 + tslib: 2.6.2 safe-buffer@5.2.1: {} safer-buffer@2.1.2: {} - scheduler@0.23.2: + scheduler@0.23.0: dependencies: loose-envify: 1.4.0 semver@6.3.1: {} - semver@7.6.3: {} + semver@7.6.2: {} sentence-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 upper-case-first: 2.0.2 serialize-error@7.0.1: @@ -6954,9 +6988,9 @@ snapshots: snake-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.7.0 + tslib: 2.6.2 - source-map-js@1.2.1: {} + source-map-js@1.2.0: {} spawndamnit@2.0.0: dependencies: @@ -6987,9 +7021,9 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string-width@7.2.0: + string-width@7.1.0: dependencies: - emoji-regex: 10.4.0 + emoji-regex: 10.3.0 get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 @@ -7003,7 +7037,7 @@ snapshots: strip-ansi@7.1.0: dependencies: - ansi-regex: 6.1.0 + ansi-regex: 6.0.1 strip-bom@3.0.0: {} @@ -7019,16 +7053,16 @@ snapshots: change-case: 4.1.2 commander: 8.3.0 fs-extra: 10.1.0 - glob: 10.4.5 + glob: 10.4.2 json5: 2.2.3 - jsonc-parser: 3.3.1 + jsonc-parser: 3.2.1 lodash: 4.17.21 tinycolor2: 1.6.0 - styled-jsx@5.1.1(react@18.3.1): + styled-jsx@5.1.1(react@18.2.0): dependencies: client-only: 0.0.1 - react: 18.3.1 + react: 18.2.0 supertap@3.0.1: dependencies: @@ -7063,7 +7097,7 @@ snapshots: tar@7.4.3: dependencies: - "@isaacs/fs-minipass": 4.0.1 + "@isaacs/fs-minipass": 4.0.0 chownr: 3.0.0 minipass: 7.1.2 minizlib: 3.0.1 @@ -7106,19 +7140,19 @@ snapshots: tr46@0.0.3: {} - tslib@2.7.0: {} + tslib@2.6.2: {} type-fest@0.13.1: {} type-fest@0.21.3: {} - typescript@5.6.2: {} + typescript@5.5.2: {} typical@4.0.0: {} typical@5.2.0: {} - undici-types@6.19.8: {} + undici-types@5.26.5: {} unicode-emoji-modifier-base@1.0.0: {} @@ -7130,11 +7164,11 @@ snapshots: upper-case-first@2.0.2: dependencies: - tslib: 2.7.0 + tslib: 2.6.2 upper-case@2.0.2: dependencies: - tslib: 2.7.0 + tslib: 2.6.2 util-deprecate@1.0.2: {} @@ -7144,13 +7178,13 @@ snapshots: "@types/istanbul-lib-coverage": 2.0.6 convert-source-map: 2.0.0 - vite@5.4.8(@types/node@20.16.10): + vite@5.2.9(@types/node@20.14.9): dependencies: - esbuild: 0.21.5 - postcss: 8.4.47 - rollup: 4.22.5 + esbuild: 0.20.2 + postcss: 8.4.38 + rollup: 4.14.3 optionalDependencies: - "@types/node": 20.16.10 + "@types/node": 20.14.9 fsevents: 2.3.3 wcwidth@1.0.1: @@ -7204,7 +7238,7 @@ snapshots: wrap-ansi@9.0.0: dependencies: ansi-styles: 6.2.1 - string-width: 7.2.0 + string-width: 7.1.0 strip-ansi: 7.1.0 wrappy@1.0.2: {} @@ -7229,7 +7263,7 @@ snapshots: yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.2.0 + escalade: 3.1.2 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 @@ -7238,6 +7272,6 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.1.1: {} + yocto-queue@1.0.0: {} yoctocolors-cjs@2.1.2: {} From 347c43c3bfe873ddf88d81d3e11f001f36b6d11b Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Thu, 3 Oct 2024 21:12:11 +0000 Subject: [PATCH 244/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 15 + packages/tokens/src/color-palette.json | 50 ++ packages/tokens/src/layout-component.json | 793 +++++++++++++++++++++- packages/tokens/src/typography.json | 12 +- 4 files changed, 833 insertions(+), 37 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index c7c9bdad..22f87518 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -429,5 +429,20 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "71840c7b-acdd-45b9-a228-5091591f5405" + }, + "bar-panel-gripper-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-200}", + "uuid": "5a46c025-32b4-4bda-bab0-5ab0fb69ca8e" + }, + "bar-panel-gripper-color-drag": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "16431c28-23e4-4077-bcfa-138f90583282" + }, + "select-box-selected-border-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-800}", + "uuid": "4bbb81b1-09fb-4ebe-80b5-cebb75c13839" } } \ No newline at end of file diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index 413b2369..b6a08fd0 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -6487,5 +6487,55 @@ } }, "private": true + }, + "static-blue-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(59, 99, 251)", + "uuid": "e193b8bb-6a0b-4c23-9851-83634f3797f8" + }, + "static-blue-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(39, 77, 234)", + "uuid": "8402b6ad-f3da-4ea2-8b55-174a9794950d" + }, + "static-fuchsia-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(181, 57, 200)", + "uuid": "7629af9c-2f91-449e-a82f-c60a771b0e6f" + }, + "static-fuchsia-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(156, 40, 175)", + "uuid": "0aee9ad6-2d79-4479-bdb6-aafa07a98673" + }, + "static-indigo-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(113, 85, 250)", + "uuid": "970ddf30-3683-4f48-9ac7-8a9e42902fd3" + }, + "static-indigo-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(99, 56, 238)", + "uuid": "fb3003ec-6793-47b0-947d-a89e642652fc" + }, + "static-magenta-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(217, 35, 97)", + "uuid": "5b34bb1d-a23e-4799-ad59-8fa8f51d3726" + }, + "static-magenta-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(186, 22, 80)", + "uuid": "058a8ff9-740d-4e11-bdb6-7473a77f872b" + }, + "static-red-900": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(215, 50, 32)", + "uuid": "d31011ef-7270-4c83-802d-05701ae9a3c8" + }, + "static-red-1000": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", + "value": "rgb(183, 40, 24)", + "uuid": "3a65213c-4d36-48ec-8bf9-1b163a81299d" } } \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 7677283c..5de114c7 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -1792,7 +1792,8 @@ "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", - "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b" + "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b", + "deprecated": true }, "slider-control-height-small": { "component": "slider", @@ -1873,12 +1874,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "14px", - "uuid": "1384d419-bfad-44d7-847c-a0f2c195fb93" + "uuid": "1384d419-bfad-44d7-847c-a0f2c195fb93", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", - "uuid": "7feb3d57-59fb-4095-966e-e8ca0e91442f" + "uuid": "7feb3d57-59fb-4095-966e-e8ca0e91442f", + "deprecated": true } } }, @@ -1889,12 +1892,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", - "uuid": "a8a02181-c797-461d-a666-a63f7535a096" + "uuid": "a8a02181-c797-461d-a666-a63f7535a096", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", - "uuid": "278fc618-f6c1-4d30-bf85-075654079003" + "uuid": "278fc618-f6c1-4d30-bf85-075654079003", + "deprecated": true } } }, @@ -1905,12 +1910,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", - "uuid": "3df3c866-faf0-43db-8c18-f442e7f94822" + "uuid": "3df3c866-faf0-43db-8c18-f442e7f94822", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", - "uuid": "2a3fb9b0-d701-4e86-8180-9d81f68e91d5" + "uuid": "2a3fb9b0-d701-4e86-8180-9d81f68e91d5", + "deprecated": true } } }, @@ -1921,12 +1928,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", - "uuid": "10ccce0d-5a2c-414e-8055-0be76709c180" + "uuid": "10ccce0d-5a2c-414e-8055-0be76709c180", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "26px", - "uuid": "413dc697-1f14-47c8-a7f2-e52254513e6e" + "uuid": "413dc697-1f14-47c8-a7f2-e52254513e6e", + "deprecated": true } } }, @@ -1937,12 +1946,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", - "uuid": "c9b7d8d9-c5ba-4d97-a03b-a214104ede23" + "uuid": "c9b7d8d9-c5ba-4d97-a03b-a214104ede23", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", - "uuid": "683fb538-290c-423f-990b-d7134e485f51" + "uuid": "683fb538-290c-423f-990b-d7134e485f51", + "deprecated": true } } }, @@ -1953,12 +1964,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", - "uuid": "63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25" + "uuid": "63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", - "uuid": "25959ff8-6c2f-4612-8d69-b95bfe485ce4" + "uuid": "25959ff8-6c2f-4612-8d69-b95bfe485ce4", + "deprecated": true } } }, @@ -1969,12 +1982,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "7px", - "uuid": "525e7d74-2bc0-48ac-85ca-b07335819a31" + "uuid": "525e7d74-2bc0-48ac-85ca-b07335819a31", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "9px", - "uuid": "3bf8805b-b4f7-4d0d-af85-d227d6380539" + "uuid": "3bf8805b-b4f7-4d0d-af85-d227d6380539", + "deprecated": true } } }, @@ -1985,12 +2000,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "8px", - "uuid": "47d025e2-0b26-4ebc-9b46-3cd1e470b9bc" + "uuid": "47d025e2-0b26-4ebc-9b46-3cd1e470b9bc", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "11px", - "uuid": "feac9f02-b52a-4694-a5d4-4b1930ab4f07" + "uuid": "feac9f02-b52a-4694-a5d4-4b1930ab4f07", + "deprecated": true } } }, @@ -1998,7 +2015,8 @@ "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", - "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42" + "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42", + "deprecated": true }, "slider-bottom-to-handle-small": { "component": "slider", @@ -2078,12 +2096,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", + "value": "-4px", "uuid": "cbf9c42b-c14e-440d-97ad-3c937c464446" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", + "value": "-8px", "uuid": "d20768dd-dbf4-48a9-8cc8-3370fa6ef810" } } @@ -2094,12 +2112,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", + "value": "-12px", "uuid": "b257bf97-d632-4488-a954-57b16bcf18b9" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", + "value": "-16px", "uuid": "20a8d579-038e-4432-b271-8e44b83a9aa1" } } @@ -2110,12 +2128,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", + "value": "-16px", "uuid": "a4be5828-2176-42e7-97de-1f80e7dc08bb" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", + "value": "-20px", "uuid": "f4fc7ec7-cc02-4ff4-bd9a-f05f9bd59c1d" } } @@ -2126,12 +2144,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", + "value": "-20px", "uuid": "309b149c-306a-49ee-b14c-a0eb4826e3b1" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", + "value": "-28px", "uuid": "9be47810-7a07-4885-a86d-647f5f36d7e5" } } @@ -3177,12 +3195,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "18px", - "uuid": "f0958cee-9688-43db-9542-1aef164f9dfe" + "uuid": "f0958cee-9688-43db-9542-1aef164f9dfe", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "22px", - "uuid": "dce9ff1e-06d1-49a5-817f-5319f4ab15e2" + "uuid": "dce9ff1e-06d1-49a5-817f-5319f4ab15e2", + "deprecated": true } } }, @@ -3193,12 +3213,14 @@ "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", - "uuid": "b132d948-bec9-4a29-b281-e77801ce5a7c" + "uuid": "b132d948-bec9-4a29-b281-e77801ce5a7c", + "deprecated": true }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "5px", - "uuid": "8e13ea1d-8000-485e-8700-5522cc71b95c" + "uuid": "8e13ea1d-8000-485e-8700-5522cc71b95c", + "deprecated": true } } }, @@ -9312,5 +9334,714 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "380px", "uuid": "95c055b0-f688-4405-8426-1b2302e32ebd" + }, + "font-size-25": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "10px", + "uuid": "26ab49ea-7e86-4f0d-812e-ef1ba794c8a8" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "12px", + "uuid": "5946a4e5-8bed-4dd7-aa73-9ebe232f9790" + } + } + }, + "font-size-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "65px", + "uuid": "5af5e5bd-fc76-4688-aae9-6e7528d41341" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "79px", + "uuid": "999b22ec-e19e-4fee-a1db-3cb89c58a51c" + } + } + }, + "font-size-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "73px", + "uuid": "509b3100-9034-4b23-adb0-8c56dbd72a48" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "88px", + "uuid": "94741f6e-8c95-4329-8e06-d6f261e5b0eb" + } + } + }, + "letter-spacing": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0em", + "uuid": "d8caf3aa-1261-411f-b383-18f87334c117" + }, + "body-cjk-size-xxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-500}", + "uuid": "71a41f9e-73da-4632-8877-7af7acf4db03" + }, + "body-cjk-size-xxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-400}", + "uuid": "9aab03eb-c0c1-462c-aa7c-88c93b06f714" + }, + "body-cjk-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-300}", + "uuid": "25d65a6e-e8e1-4849-848a-984373fd9cf9" + }, + "body-cjk-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "9f0e0ddb-a4d2-416e-a425-8d71527f77b2" + }, + "body-cjk-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "7e01bc65-5823-456f-a830-9848a96ad85a" + }, + "body-cjk-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "081aa502-e2f1-4bc8-8fb2-a00dcd4236dd" + }, + "body-cjk-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "ba73926d-2ef4-4d7b-86c2-9044aa1cdf95" + }, + "gradient-stop-1-genai": { + "value": "0", + "uuid": "1b4e100e-3266-4212-84c7-ee6995aaff83" + }, + "gradient-stop-2-genai": { + "value": "0.3333", + "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" + }, + "gradient-stop-3-genai": { + "value": "1", + "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" + }, + "gradient-stop-1-premium": { + "value": "0", + "uuid": "4cb26877-72bd-48e5-8266-6b29b1c2303d" + }, + "gradient-stop-2-premium": { + "value": "0.6666", + "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" + }, + "gradient-stop-3-premium": { + "value": "1", + "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" + }, + "bar-panel-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "56px", + "uuid": "c0e0d08b-e22f-44d3-b547-6bd173d00e1b" + }, + "bar-panel-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "40px", + "uuid": "db0862a7-3a92-4c24-a06a-d20acfd94e1b" + }, + "bar-panel-maximum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "72px", + "uuid": "00c313bf-61be-4f5a-9d26-3e9f1ea0e950" + }, + "bar-panel-spacing-extra-spacious": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "5fbb857b-5703-4e8e-bba4-86720ca261bd" + }, + "rating-top-to-content-area-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-75}", + "uuid": "8cf415d3-57f2-41c6-a175-40c75b58a79e" + }, + "rating-bottom-to-content-area-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-75}", + "uuid": "360ab235-93bf-482c-9ff1-387d69f018e1" + }, + "rating-edge-to-content-area-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-75}", + "uuid": "a2ad2062-a115-4abb-859b-f9d307b44744" + }, + "rating-top-to-content-area-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "6b99f788-336d-4159-819e-29050f8b571a" + }, + "rating-bottom-to-content-area-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "897117a7-4e29-4fc2-85b4-1b2aa882ff7b" + }, + "rating-edge-to-content-area-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "888c8501-b709-4b72-9d19-504e3b0befb4" + }, + "rating-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "104px", + "uuid": "b54da2cd-9d1e-498f-a52c-7be5e825c2a2" + }, + "rating-height-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-height-75}", + "uuid": "7e0c3f30-31f5-4fa2-b353-a739c904d796" + }, + "rating-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "128px", + "uuid": "91a0e740-8f77-4d4a-b34c-d673afc1093b" + }, + "rating-height-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-height-100}", + "uuid": "d7f24ef9-eb71-45e8-96a1-7e48ddc56964" + }, + "select-box-horizontal-minimum-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "80px", + "uuid": "3d6fc9f4-1f22-4e1d-a602-e00079dd2057" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "100px", + "uuid": "c731f83e-152b-44ad-818f-460dc1d29228" + } + } + }, + "select-box-horizontal-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "368px", + "uuid": "04fcbf2f-ffe1-4f26-99d1-59a3deb053ed" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "460px", + "uuid": "d406a096-aea6-4e39-818a-52d82b3c5031" + } + } + }, + "select-box-vertical-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "170px", + "uuid": "fe57d82a-5365-441a-9bd5-8f2c71c2ba83" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "212px", + "uuid": "2a6a9aef-2c75-43e4-856d-c797900c713f" + } + } + }, + "select-box-edge-to-checkbox": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "70a20970-ebd9-48a7-8324-44d352f79978" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "f028974a-20d1-4e03-af77-921b1dfc2469" + } + } + }, + "select-box-horizontal-end-to-content": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "32px", + "uuid": "a99ea589-33e4-4196-8c49-77a0d0d522ed" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "40px", + "uuid": "9c78208b-bb4f-4cda-82f0-a38f68d33172" + } + } + }, + "select-box-horizontal-illustration-to-label": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "b98f3e7a-d30a-49f7-80fd-d793554eaf6d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "6c8580ac-c2c4-4d62-8a9d-b0498dd0b69b" + } + } + }, + "select-box-horizontal-label-to-description": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "94b742aa-bec9-43bc-81ad-a913191481d1" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "255479ac-24f5-4128-bba0-258ec68026af" + } + } + }, + "select-box-horizontal-start-to-content": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "9ab0ef93-1293-48e9-911c-2ea32f15b44b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "009afde4-ea54-4025-aaa0-7df7e5e50229" + } + } + }, + "select-box-horizontal-top-to-content": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "736900ff-ea3c-4c5b-85b6-080524cb78fc" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "75f16efb-6905-4091-bd87-bd08494a92bf" + } + } + }, + "select-box-top-to-checkbox": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "237b6422-31fd-4729-98f1-451b7bd27a4d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "011f2ccf-b2fb-4da8-94c4-29fc0a5b9a71" + } + } + }, + "select-box-vertical-edge-to-content": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "ef9b9dd4-5e45-4c1a-8874-f097fd892352" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "e807df92-1c13-4394-ace9-cb998ada9395" + } + } + }, + "select-box-vertical-illustration-to-label": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "f6a52618-bf5d-4a9d-ac95-e5a6d002851d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "8a805540-3b26-4b50-8a0d-0c7beb13885e" + } + } + }, + "slider-control-to-field-label-editable-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-4px", + "uuid": "882a70c2-afd4-483a-adf5-5437dd34fcba" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-8px", + "uuid": "5816b3c6-937c-47b8-9bdd-ebc69224831b" + } + } + }, + "slider-control-to-field-label-editable-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-12px", + "uuid": "4cdfa762-9580-4fff-a396-1538666ef8d7" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-16px", + "uuid": "a5326ae9-27b6-450c-b88f-d4b89a06502a" + } + } + }, + "slider-control-to-field-label-editable-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-16px", + "uuid": "c849ce3c-0e3a-4882-a061-021eed8d55d8" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-20px", + "uuid": "657325f5-74e4-4d39-8ba4-f480c141da79" + } + } + }, + "slider-control-to-field-label-editable-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-20px", + "uuid": "e82d0719-2d65-438f-a9a6-f61c80a80376" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-24px", + "uuid": "23f0c597-a889-4653-8870-df86101fe544" + } + } + }, + "slider-control-to-field-label-side-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "2d3a0c09-3f66-42da-8276-a7dabc6c4cd3" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "31e670e4-2400-4705-a0e8-cef9cbca9869" + } + } + }, + "slider-control-to-field-label-side-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "8d294c76-353f-42f0-8aa9-8c489a90ac14" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "5d470123-0f06-4319-b299-b8f5d80c7c94" + } + } + }, + "slider-control-to-field-label-side-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "dff9511c-7b97-4cfb-abff-953be7228e28" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "095779c9-64fc-4a51-8a0a-f8b452fb3650" + } + } + }, + "slider-control-to-field-label-side-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "4dc8268e-42c5-4c3c-a17a-fe0f7227facc" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "28px", + "uuid": "19036695-7f27-4c08-babc-45226b7bf920" + } + } + }, + "slider-control-to-text-field-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "52edd5bd-f859-487b-bc89-db09fa523025" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "526c8840-b08c-401b-8242-32c1cb574b58" + } + } + }, + "slider-control-to-text-field-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "600b162b-5a37-4c01-9fa2-05df934433cc" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "a99118fc-9837-4460-b4ae-9c7ffaa20ce0" + } + } + }, + "slider-control-to-text-field-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "281d3ab8-c760-4240-a349-2b9986eeecfe" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "d20985d9-2d46-4744-84a7-21baad0eb8cb" + } + } + }, + "slider-control-to-text-field-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "6c592cd0-9d00-478c-a001-b7d4f3e851f9" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "28px", + "uuid": "41601fb4-8571-4e7d-91b1-ea7b69ca8a1d" + } + } + }, + "segmented-control-selection-border-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{border-width-200}", + "uuid": "10f93760-7b09-4a4e-8cc2-33783e571926" + }, + "slider-handle-height-precision-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "c2e986a2-2b56-4a82-b4a2-87850ca90d8c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "a93712dc-247e-46f4-bb42-d2d1b8896d7e" + } + } + }, + "slider-handle-height-precision-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "0d211640-08bf-4a09-98d8-1398ba70b072" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "26px", + "uuid": "18e1a338-5256-41a4-88f7-76b7fb3911c6" + } + } + }, + "slider-handle-height-precision-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "2305cfb2-f26d-44e0-90ef-3258b8f46e0d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "5aa8e5c5-2156-49e6-9bb8-ad99b4a1b997" + } + } + }, + "slider-handle-height-precision-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "26px", + "uuid": "1aa8c3a6-29ff-44ec-9b11-51c041ef44f1" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "32px", + "uuid": "01ca9561-7b0b-4030-ba1b-85d336537ebc" + } + } + }, + "slider-handle-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "18px", + "uuid": "688b473d-84bc-4964-b985-63cf5fdbf7d4" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "fea1de33-ef0f-4c50-ab19-75542f995d35" + } + } + }, + "slider-handle-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "404ce1f8-593c-4738-b9a6-d1969a95b20e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "b17da639-665a-4a4c-8105-f30503b823a0" + } + } + }, + "slider-handle-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "22px", + "uuid": "920a0f76-d61d-4362-8b50-fb6a98e62229" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "28px", + "uuid": "3f14b28b-1289-4a72-89b0-b2fbcf54325e" + } + } + }, + "slider-handle-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "0b83b5fd-117d-4257-bf77-fce39bfa8e3b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "caa26be5-d26c-4e5a-aae8-87e0380920da" + } + } + }, + "slider-handle-precision-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "94045357-9bb7-4d16-b035-342465834a92" + }, + "slider-track-height-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "c2eb2949-9471-4dc5-b02b-384627dbdea2" + }, + "slider-track-height-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "211a95ca-f83e-4711-83ed-a723258d8336" + }, + "segmented-control-item-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{component-height-100}", + "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" + }, + "text-align-start": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "value": "start", + "uuid": "3a7f9e91-6e1a-4937-a6d2-6c39566dc875" + }, + "text-align-center": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "value": "center", + "uuid": "df252e5a-f115-471d-bb35-c79e733d868b" + }, + "text-align-end": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "value": "end", + "uuid": "a0c425b3-668b-4413-8739-c7844b26ebad" + }, + "body-size-xxs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "3aa79ac7-9e78-4413-b500-b8d1937705cb" + }, + "body-cjk-size-xxs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-25}", + "uuid": "218f04ed-0679-4090-b1ad-76ef062dd07c" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index b8867455..a3bf3358 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -259,7 +259,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "50px", + "value": "51px", "uuid": "b73bfb12-80ef-453f-b7dc-52bf2258ef47" }, "mobile": { @@ -274,7 +274,7 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "60px", + "value": "58px", "uuid": "e8853e10-cc03-47c1-9b66-11755ff513a5" }, "mobile": { @@ -305,8 +305,8 @@ "uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015" }, "cjk-letter-spacing": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0.05em", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{letter-spacing}", "uuid": "12e27721-35f5-4d03-95f3-3fc9e1cf50e4" }, "heading-sans-serif-font-family": { @@ -961,7 +961,7 @@ "body-cjk-strong-font-weight": { "component": "body", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "d79de2c4-ca7c-4316-ac44-fee1a66983d7" }, "body-cjk-strong-font-style": { @@ -1033,7 +1033,7 @@ "body-cjk-strong-emphasized-font-weight": { "component": "body", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "54020791-a975-4e5d-a905-8bffcc9d2d93" }, "body-cjk-strong-emphasized-font-style": { From 805c5fe1e376f5541d04b88159e070b6e85173ad Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 3 Oct 2024 15:45:28 -0600 Subject: [PATCH 245/295] fix: added missing metadata --- .../tokens/schemas/token-types/token.json | 9 +- packages/tokens/src/color-component.json | 5 +- packages/tokens/src/color-palette.json | 32 +-- packages/tokens/src/layout-component.json | 187 +++++------------- packages/tokens/src/layout.json | 30 +++ packages/tokens/src/typography.json | 112 ++++++++++- 6 files changed, 226 insertions(+), 149 deletions(-) diff --git a/packages/tokens/schemas/token-types/token.json b/packages/tokens/schemas/token-types/token.json index 08a3fa4c..520b6ac7 100644 --- a/packages/tokens/schemas/token-types/token.json +++ b/packages/tokens/schemas/token-types/token.json @@ -6,7 +6,14 @@ "type": "object", "properties": { "value": { - "type": "string" + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] }, "component": { "type": "string" diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 22f87518..32ba1c32 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -431,18 +431,21 @@ "uuid": "71840c7b-acdd-45b9-a228-5091591f5405" }, "bar-panel-gripper-color": { + "component": "bar-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-200}", "uuid": "5a46c025-32b4-4bda-bab0-5ab0fb69ca8e" }, "bar-panel-gripper-color-drag": { + "component": "bar-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "16431c28-23e4-4077-bcfa-138f90583282" }, "select-box-selected-border-color": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "4bbb81b1-09fb-4ebe-80b5-cebb75c13839" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/color-palette.json b/packages/tokens/src/color-palette.json index b6a08fd0..15d14616 100644 --- a/packages/tokens/src/color-palette.json +++ b/packages/tokens/src/color-palette.json @@ -6491,51 +6491,61 @@ "static-blue-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(59, 99, 251)", - "uuid": "e193b8bb-6a0b-4c23-9851-83634f3797f8" + "uuid": "e193b8bb-6a0b-4c23-9851-83634f3797f8", + "private": true }, "static-blue-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(39, 77, 234)", - "uuid": "8402b6ad-f3da-4ea2-8b55-174a9794950d" + "uuid": "8402b6ad-f3da-4ea2-8b55-174a9794950d", + "private": true }, "static-fuchsia-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(181, 57, 200)", - "uuid": "7629af9c-2f91-449e-a82f-c60a771b0e6f" + "uuid": "7629af9c-2f91-449e-a82f-c60a771b0e6f", + "private": true }, "static-fuchsia-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(156, 40, 175)", - "uuid": "0aee9ad6-2d79-4479-bdb6-aafa07a98673" + "uuid": "0aee9ad6-2d79-4479-bdb6-aafa07a98673", + "private": true }, "static-indigo-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(113, 85, 250)", - "uuid": "970ddf30-3683-4f48-9ac7-8a9e42902fd3" + "uuid": "970ddf30-3683-4f48-9ac7-8a9e42902fd3", + "private": true }, "static-indigo-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(99, 56, 238)", - "uuid": "fb3003ec-6793-47b0-947d-a89e642652fc" + "uuid": "fb3003ec-6793-47b0-947d-a89e642652fc", + "private": true }, "static-magenta-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(217, 35, 97)", - "uuid": "5b34bb1d-a23e-4799-ad59-8fa8f51d3726" + "uuid": "5b34bb1d-a23e-4799-ad59-8fa8f51d3726", + "private": true }, "static-magenta-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(186, 22, 80)", - "uuid": "058a8ff9-740d-4e11-bdb6-7473a77f872b" + "uuid": "058a8ff9-740d-4e11-bdb6-7473a77f872b", + "private": true }, "static-red-900": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(215, 50, 32)", - "uuid": "d31011ef-7270-4c83-802d-05701ae9a3c8" + "uuid": "d31011ef-7270-4c83-802d-05701ae9a3c8", + "private": true }, "static-red-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", "value": "rgb(183, 40, 24)", - "uuid": "3a65213c-4d36-48ec-8bf9-1b163a81299d" + "uuid": "3a65213c-4d36-48ec-8bf9-1b163a81299d", + "private": true } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 5de114c7..2b551f91 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9335,186 +9335,92 @@ "value": "380px", "uuid": "95c055b0-f688-4405-8426-1b2302e32ebd" }, - "font-size-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "10px", - "uuid": "26ab49ea-7e86-4f0d-812e-ef1ba794c8a8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "12px", - "uuid": "5946a4e5-8bed-4dd7-aa73-9ebe232f9790" - } - } - }, - "font-size-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "65px", - "uuid": "5af5e5bd-fc76-4688-aae9-6e7528d41341" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "79px", - "uuid": "999b22ec-e19e-4fee-a1db-3cb89c58a51c" - } - } - }, - "font-size-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "73px", - "uuid": "509b3100-9034-4b23-adb0-8c56dbd72a48" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "88px", - "uuid": "94741f6e-8c95-4329-8e06-d6f261e5b0eb" - } - } - }, - "letter-spacing": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0em", - "uuid": "d8caf3aa-1261-411f-b383-18f87334c117" - }, - "body-cjk-size-xxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "71a41f9e-73da-4632-8877-7af7acf4db03" - }, - "body-cjk-size-xxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "9aab03eb-c0c1-462c-aa7c-88c93b06f714" - }, - "body-cjk-size-xl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "25d65a6e-e8e1-4849-848a-984373fd9cf9" - }, - "body-cjk-size-l": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "9f0e0ddb-a4d2-416e-a425-8d71527f77b2" - }, - "body-cjk-size-m": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "7e01bc65-5823-456f-a830-9848a96ad85a" - }, - "body-cjk-size-s": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "081aa502-e2f1-4bc8-8fb2-a00dcd4236dd" - }, - "body-cjk-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "ba73926d-2ef4-4d7b-86c2-9044aa1cdf95" - }, - "gradient-stop-1-genai": { - "value": "0", - "uuid": "1b4e100e-3266-4212-84c7-ee6995aaff83" - }, - "gradient-stop-2-genai": { - "value": "0.3333", - "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" - }, - "gradient-stop-3-genai": { - "value": "1", - "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" - }, - "gradient-stop-1-premium": { - "value": "0", - "uuid": "4cb26877-72bd-48e5-8266-6b29b1c2303d" - }, - "gradient-stop-2-premium": { - "value": "0.6666", - "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" - }, - "gradient-stop-3-premium": { - "value": "1", - "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" - }, "bar-panel-width": { + "component": "bar-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "56px", "uuid": "c0e0d08b-e22f-44d3-b547-6bd173d00e1b" }, "bar-panel-minimum-width": { + "component": "bar-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "40px", "uuid": "db0862a7-3a92-4c24-a06a-d20acfd94e1b" }, "bar-panel-maximum-width": { + "component": "bar-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "72px", "uuid": "00c313bf-61be-4f5a-9d26-3e9f1ea0e950" }, "bar-panel-spacing-extra-spacious": { + "component": "bar-panel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "20px", "uuid": "5fbb857b-5703-4e8e-bba4-86720ca261bd" }, "rating-top-to-content-area-small": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-75}", "uuid": "8cf415d3-57f2-41c6-a175-40c75b58a79e" }, "rating-bottom-to-content-area-small": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-75}", "uuid": "360ab235-93bf-482c-9ff1-387d69f018e1" }, "rating-edge-to-content-area-small": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-75}", "uuid": "a2ad2062-a115-4abb-859b-f9d307b44744" }, "rating-top-to-content-area-medium": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "6b99f788-336d-4159-819e-29050f8b571a" }, "rating-bottom-to-content-area-medium": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "897117a7-4e29-4fc2-85b4-1b2aa882ff7b" }, "rating-edge-to-content-area-medium": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "888c8501-b709-4b72-9d19-504e3b0befb4" }, "rating-width-small": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "104px", "uuid": "b54da2cd-9d1e-498f-a52c-7be5e825c2a2" }, "rating-height-small": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-75}", "uuid": "7e0c3f30-31f5-4fa2-b353-a739c904d796" }, "rating-width-medium": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "128px", "uuid": "91a0e740-8f77-4d4a-b34c-d673afc1093b" }, "rating-height-medium": { + "component": "rating", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "d7f24ef9-eb71-45e8-96a1-7e48ddc56964" }, "select-box-horizontal-minimum-height": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9530,6 +9436,7 @@ } }, "select-box-horizontal-width": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9545,6 +9452,7 @@ } }, "select-box-vertical-height": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9560,6 +9468,7 @@ } }, "select-box-edge-to-checkbox": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9575,6 +9484,7 @@ } }, "select-box-horizontal-end-to-content": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9590,6 +9500,7 @@ } }, "select-box-horizontal-illustration-to-label": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9605,6 +9516,7 @@ } }, "select-box-horizontal-label-to-description": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9620,6 +9532,7 @@ } }, "select-box-horizontal-start-to-content": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9635,6 +9548,7 @@ } }, "select-box-horizontal-top-to-content": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9650,6 +9564,7 @@ } }, "select-box-top-to-checkbox": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9665,6 +9580,7 @@ } }, "select-box-vertical-edge-to-content": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9680,6 +9596,7 @@ } }, "select-box-vertical-illustration-to-label": { + "component": "select-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9695,6 +9612,7 @@ } }, "slider-control-to-field-label-editable-small": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9710,6 +9628,7 @@ } }, "slider-control-to-field-label-editable-medium": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9725,6 +9644,7 @@ } }, "slider-control-to-field-label-editable-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9740,6 +9660,7 @@ } }, "slider-control-to-field-label-editable-extra-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9755,6 +9676,7 @@ } }, "slider-control-to-field-label-side-small": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9770,6 +9692,7 @@ } }, "slider-control-to-field-label-side-medium": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9785,6 +9708,7 @@ } }, "slider-control-to-field-label-side-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9800,6 +9724,7 @@ } }, "slider-control-to-field-label-side-extra-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9815,6 +9740,7 @@ } }, "slider-control-to-text-field-small": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9830,6 +9756,7 @@ } }, "slider-control-to-text-field-medium": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9845,6 +9772,7 @@ } }, "slider-control-to-text-field-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9860,6 +9788,7 @@ } }, "slider-control-to-text-field-extra-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9875,11 +9804,13 @@ } }, "segmented-control-selection-border-width": { + "component": "segmented-control", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{border-width-200}", "uuid": "10f93760-7b09-4a4e-8cc2-33783e571926" }, "slider-handle-height-precision-small": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9895,6 +9826,7 @@ } }, "slider-handle-height-precision-medium": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9910,6 +9842,7 @@ } }, "slider-handle-height-precision-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9925,6 +9858,7 @@ } }, "slider-handle-height-precision-extra-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9940,6 +9874,7 @@ } }, "slider-handle-small": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9955,6 +9890,7 @@ } }, "slider-handle-medium": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9970,6 +9906,7 @@ } }, "slider-handle-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9985,6 +9922,7 @@ } }, "slider-handle-extra-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10000,48 +9938,27 @@ } }, "slider-handle-precision-width": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "6px", "uuid": "94045357-9bb7-4d16-b035-342465834a92" }, "slider-track-height-medium": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "c2eb2949-9471-4dc5-b02b-384627dbdea2" }, "slider-track-height-large": { + "component": "slider", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "16px", "uuid": "211a95ca-f83e-4711-83ed-a723258d8336" }, "segmented-control-item-height": { + "component": "segmented-control", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" - }, - "text-align-start": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "start", - "uuid": "3a7f9e91-6e1a-4937-a6d2-6c39566dc875" - }, - "text-align-center": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "center", - "uuid": "df252e5a-f115-471d-bb35-c79e733d868b" - }, - "text-align-end": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "end", - "uuid": "a0c425b3-668b-4413-8739-c7844b26ebad" - }, - "body-size-xxs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "3aa79ac7-9e78-4413-b500-b8d1937705cb" - }, - "body-cjk-size-xxs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "218f04ed-0679-4090-b1ad-76ef062dd07c" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 71ed5bab..49eec31e 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2378,5 +2378,35 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{drop-shadow-blur-300}", "uuid": "f6015252-21fb-48f9-aadb-5ad050e3d590" + }, + "gradient-stop-1-genai": { + "value": 0, + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "uuid": "1b4e100e-3266-4212-84c7-ee6995aaff83" + }, + "gradient-stop-2-genai": { + "value": 0.3333, + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" + }, + "gradient-stop-3-genai": { + "value": 1, + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" + }, + "gradient-stop-1-premium": { + "value": 0, + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "uuid": "4cb26877-72bd-48e5-8266-6b29b1c2303d" + }, + "gradient-stop-2-premium": { + "value": 0.6666, + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" + }, + "gradient-stop-3-premium": { + "value": 1, + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } } diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index a3bf3358..ad40a4ba 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -4,6 +4,26 @@ "value": "{sans-serif-font-family}", "uuid": "45d43d4e-a4e4-4c5f-94ec-644a81300eb0" }, + "letter-spacing": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0em", + "uuid": "d8caf3aa-1261-411f-b383-18f87334c117" + }, + "text-align-start": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "value": "start", + "uuid": "3a7f9e91-6e1a-4937-a6d2-6c39566dc875" + }, + "text-align-center": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "value": "center", + "uuid": "df252e5a-f115-471d-bb35-c79e733d868b" + }, + "text-align-end": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "value": "end", + "uuid": "a0c425b3-668b-4413-8739-c7844b26ebad" + }, "sans-serif-font-family": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", "value": "Adobe Clean", @@ -59,6 +79,21 @@ "value": "normal", "uuid": "25668698-bf78-46f4-bc6c-8fea068ddb34" }, + "font-size-25": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "10px", + "uuid": "26ab49ea-7e86-4f0d-812e-ef1ba794c8a8" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "12px", + "uuid": "5946a4e5-8bed-4dd7-aa73-9ebe232f9790" + } + } + }, "font-size-50": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { @@ -284,6 +319,36 @@ } } }, + "font-size-1400": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "65px", + "uuid": "5af5e5bd-fc76-4688-aae9-6e7528d41341" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "79px", + "uuid": "999b22ec-e19e-4fee-a1db-3cb89c58a51c" + } + } + }, + "font-size-1500": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "73px", + "uuid": "509b3100-9034-4b23-adb0-8c56dbd72a48" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", + "value": "88px", + "uuid": "94741f6e-8c95-4329-8e06-d6f261e5b0eb" + } + } + }, "line-height-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", "value": "1.3", @@ -1060,6 +1125,51 @@ "value": "{font-size-400}", "uuid": "3927604f-eaf3-4605-aa34-80b7bc88ac0f" }, + "body-size-xxs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "3aa79ac7-9e78-4413-b500-b8d1937705cb" + }, + "body-cjk-size-xxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-500}", + "uuid": "71a41f9e-73da-4632-8877-7af7acf4db03" + }, + "body-cjk-size-xxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-400}", + "uuid": "9aab03eb-c0c1-462c-aa7c-88c93b06f714" + }, + "body-cjk-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-300}", + "uuid": "25d65a6e-e8e1-4849-848a-984373fd9cf9" + }, + "body-cjk-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "9f0e0ddb-a4d2-416e-a425-8d71527f77b2" + }, + "body-cjk-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "7e01bc65-5823-456f-a830-9848a96ad85a" + }, + "body-cjk-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "081aa502-e2f1-4bc8-8fb2-a00dcd4236dd" + }, + "body-cjk-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "ba73926d-2ef4-4d7b-86c2-9044aa1cdf95" + }, + "body-cjk-size-xxs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-25}", + "uuid": "218f04ed-0679-4090-b1ad-76ef062dd07c" + }, "body-size-l": { "component": "body", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", @@ -1642,4 +1752,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} \ No newline at end of file +} From 75a573bcbb7b71ecdf5f246682755de24dae5afc Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 3 Oct 2024 15:07:50 -0600 Subject: [PATCH 246/295] chore: added changeset --- .changeset/tender-monkeys-flash.md | 309 ++++++++++++++++++ .../schemas/token-types/gradient-stop.json | 27 ++ 2 files changed, 336 insertions(+) create mode 100644 .changeset/tender-monkeys-flash.md create mode 100644 packages/tokens/schemas/token-types/gradient-stop.json diff --git a/.changeset/tender-monkeys-flash.md b/.changeset/tender-monkeys-flash.md new file mode 100644 index 00000000..28c31608 --- /dev/null +++ b/.changeset/tender-monkeys-flash.md @@ -0,0 +1,309 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +S2 subtle and visual colors update +Updated S2 Table tokens + +
Tokens added (42): + +- `illustrated-message-maximum-width` +- `side-focus-indicator` +- `table-row-bottom-to-text-extra-large` +- `table-row-bottom-to-text-extra-large-regular` +- `table-row-bottom-to-text-large` +- `table-row-bottom-to-text-large-regular` +- `table-row-bottom-to-text-medium` +- `table-row-bottom-to-text-medium-regular` +- `table-row-bottom-to-text-small` +- `table-row-bottom-to-text-small-regular` +- `table-row-checkbox-to-top-extra-large` +- `table-row-checkbox-to-top-extra-large-regular` +- `table-row-checkbox-to-top-large` +- `table-row-checkbox-to-top-large-regular` +- `table-row-checkbox-to-top-medium` +- `table-row-checkbox-to-top-medium-regular` +- `table-row-checkbox-to-top-small` +- `table-row-checkbox-to-top-small-regular` +- `table-row-height-extra-large` +- `table-row-height-extra-large-regular` +- `table-row-height-large` +- `table-row-height-large-regular` +- `table-row-height-medium` +- `table-row-height-medium-regular` +- `table-row-height-small` +- `table-row-height-small-regular` +- `table-row-top-to-text-extra-large` +- `table-row-top-to-text-extra-large-regular` +- `table-row-top-to-text-large` +- `table-row-top-to-text-large-regular` +- `table-row-top-to-text-medium` +- `table-row-top-to-text-medium-regular` +- `table-row-top-to-text-small` +- `table-row-top-to-text-small-regular` +- `table-thumbnail-to-top-minimum-extra-large` +- `table-thumbnail-to-top-minimum-extra-large-regular` +- `table-thumbnail-to-top-minimum-large` +- `table-thumbnail-to-top-minimum-large-regular` +- `table-thumbnail-to-top-minimum-medium` +- `table-thumbnail-to-top-minimum-medium-regular` +- `table-thumbnail-to-top-minimum-small` +- `table-thumbnail-to-top-minimum-small-regular` + +
+ +
Tokens updated (101): + +- `informative-subtle-background-color-default` + - light: `blue-200` -> `informative-color-200` + - dark: `blue-200` -> `informative-color-300` +- `positive-subtle-background-color-default` + - light: `green-200` -> `positive-color-200` + - dark: `green-200` -> `positive-color-300` +- `notice-subtle-background-color-default` + - light: `orange-200` -> `notice-color-200` + - dark: `orange-200` -> `notice-color-300` +- `negative-subtle-background-color-default` + - light: `red-200` -> `negative-color-200` + - dark: `red-200` -> `negative-color-300` +- `table-column-header-row-top-to-text-medium` + - desktop: `7px` -> `6px` +- `table-row-height-small-regular` + - desktop: `32px` -> `table-row-height-small` + - mobile: `40px` -> `table-row-height-small` +- `table-row-height-medium-regular` + - desktop: `40px` -> `table-row-height-medium` + - mobile: `50px` -> `table-row-height-medium` +- `table-row-height-large-regular` + - desktop: `48px` -> `table-row-height-large` + - mobile: `60px` -> `table-row-height-large` +- `table-row-height-extra-large-regular` + - desktop: `56px` -> `table-row-height-extra-large` + - mobile: `70px` -> `table-row-height-extra-large` +- `table-row-top-to-text-small-regular` + - desktop: `8px` -> `table-row-top-to-text-small` + - mobile: `10px` -> `table-row-top-to-text-small` +- `table-row-top-to-text-medium-regular` + - desktop: `11px` -> `table-row-top-to-text-medium` + - mobile: `14px` -> `table-row-top-to-text-medium` +- `table-row-top-to-text-large-regular` + - desktop: `14px` -> `table-row-top-to-text-large` + - mobile: `18px` -> `table-row-top-to-text-large` +- `table-row-top-to-text-extra-large-regular` + - desktop: `17px` -> `table-row-top-to-text-extra-large` + - mobile: `21px` -> `table-row-top-to-text-extra-large` +- `table-row-bottom-to-text-small-regular` + - desktop: `9px` -> `table-row-bottom-to-text-small` + - mobile: `11px` -> `table-row-bottom-to-text-small` +- `table-row-bottom-to-text-medium-regular` + - desktop: `12px` -> `table-row-bottom-to-text-medium` + - mobile: `15px` -> `table-row-bottom-to-text-medium` +- `table-row-bottom-to-text-large-regular` + - desktop: `14px` -> `table-row-bottom-to-text-large` + - mobile: `18px` -> `table-row-bottom-to-text-large` +- `table-row-bottom-to-text-extra-large-regular` + - desktop: `17px` -> `table-row-bottom-to-text-extra-large` + - mobile: `22px` -> `table-row-bottom-to-text-extra-large` +- `table-row-top-to-text-medium-spacious` + - mobile: `18px` -> `16px` +- `table-header-row-checkbox-to-top-medium` + - desktop: `9px` -> `8px` + - mobile: `13px` -> `11px` +- `table-row-checkbox-to-top-small-regular` + - desktop: `10px` -> `table-row-checkbox-to-top-small` + - mobile: `14px` -> `table-row-checkbox-to-top-small` +- `table-row-checkbox-to-top-medium-compact` + - desktop: `9px` -> `8px` + - mobile: `13px` -> `11px` +- `table-row-checkbox-to-top-medium-regular` + - desktop: `13px` -> `table-row-checkbox-to-top-medium` + - mobile: `18px` -> `table-row-checkbox-to-top-medium` +- `table-row-checkbox-to-top-medium-spacious` + - desktop: `17px` -> `16px` + - mobile: `23px` -> `21px` +- `table-row-checkbox-to-top-large-regular` + - desktop: `16px` -> `table-row-checkbox-to-top-large` + - mobile: `22px` -> `table-row-checkbox-to-top-large` +- `table-row-checkbox-to-top-extra-large-regular` + - desktop: `19px` -> `table-row-checkbox-to-top-extra-large` + - mobile: `26px` -> `table-row-checkbox-to-top-extra-large` +- `table-thumbnail-to-top-minimum-small-regular` + - desktop: `5px` -> `table-thumbnail-to-top-minimum-small` + - mobile: `6px` -> `table-thumbnail-to-top-minimum-small` +- `table-thumbnail-to-top-minimum-medium-regular` + - desktop: `7px` -> `table-thumbnail-to-top-minimum-medium` + - mobile: `9px` -> `table-thumbnail-to-top-minimum-medium` +- `table-thumbnail-to-top-minimum-large-regular` + - desktop: `8px` -> `table-thumbnail-to-top-minimum-large` + - mobile: `10px` -> `table-thumbnail-to-top-minimum-large` +- `table-thumbnail-to-top-minimum-extra-large-regular` + - desktop: `8px` -> `table-thumbnail-to-top-minimum-extra-large` + - mobile: `10px` -> `table-thumbnail-to-top-minimum-extra-large` +- `blue-800` + - dark: `rgb(69, 110, 254)` -> `rgb(64, 105, 253)` +- `red-800` + - dark: `rgb(230, 54, 35)` -> `rgb(223, 52, 34)` +- `orange-800` + - dark: `rgb(205, 86, 0)` -> `rgb(199, 82, 0)` +- `yellow-800` + - dark: `rgb(169, 110, 0)` -> `rgb(164, 106, 0)` +- `chartreuse-800` + - dark: `rgb(109, 131, 0)` -> `rgb(106, 127, 0)` +- `celery-800` + - dark: `rgb(69, 138, 19)` -> `rgb(66, 134, 18)` +- `green-800` + - dark: `rgb(6, 140, 82)` -> `rgb(6, 136, 80)` +- `seafoam-800` + - dark: `rgb(8, 138, 116)` -> `rgb(8, 134, 112)` +- `cyan-800` + - dark: `rgb(15, 128, 194)` -> `rgb(13, 125, 186)` +- `indigo-800` + - dark: `rgb(119, 97, 252)` -> `rgb(116, 91, 252)` +- `purple-800` + - dark: `rgb(161, 84, 229)` -> `rgb(157, 78, 228)` +- `fuchsia-800` + - dark: `rgb(192, 64, 212)` -> `rgb(186, 60, 206)` +- `magenta-800` + - dark: `rgb(231, 41, 105)` -> `rgb(224, 38, 101)` +- `pink-800` + - dark: `rgb(220, 47, 156)` -> `rgb(213, 45, 151)` +- `turquoise-800` + - dark: `rgb(9, 135, 147)` -> `rgb(9, 131, 142)` +- `brown-800` + - dark: `rgb(148, 118, 73)` -> `rgb(143, 114, 69)` +- `silver-800` + - dark: `rgb(123, 123, 123)` -> `rgb(118, 118, 118)` +- `cinnamon-800` + - dark: `rgb(179, 103, 64)` -> `rgb(176, 98, 59)` +- `accent-background-color-default` + - dark: `accent-color-700` -> `accent-color-800` +- `accent-background-color-hover` + - dark: `accent-color-600` -> `accent-color-700` +- `accent-background-color-down` + - dark: `accent-color-600` -> `accent-color-700` +- `accent-background-color-key-focus` + - dark: `accent-color-600` -> `accent-color-700` +- `informative-background-color-default` + - dark: `informative-color-700` -> `informative-color-800` +- `informative-background-color-hover` + - dark: `informative-color-600` -> `informative-color-700` +- `informative-background-color-down` + - dark: `informative-color-600` -> `informative-color-700` +- `informative-background-color-key-focus` + - dark: `informative-color-600` -> `informative-color-700` +- `negative-background-color-default` + - dark: `negative-color-700` -> `negative-color-800` +- `negative-background-color-hover` + - dark: `negative-color-600` -> `negative-color-700` +- `negative-background-color-down` + - dark: `negative-color-600` -> `negative-color-700` +- `negative-background-color-key-focus` + - dark: `negative-color-600` -> `negative-color-700` +- `positive-background-color-default` + - dark: `positive-color-700` -> `positive-color-800` +- `positive-background-color-hover` + - dark: `positive-color-600` -> `positive-color-700` +- `positive-background-color-down` + - dark: `positive-color-600` -> `positive-color-700` +- `positive-background-color-key-focus` + - dark: `positive-color-600` -> `positive-color-700` +- `red-background-color-default` + - dark: `red-700` -> `red-800` +- `green-background-color-default` + - dark: `green-700` -> `green-800` +- `seafoam-background-color-default` + - dark: `seafoam-700` -> `seafoam-800` +- `cyan-background-color-default` + - dark: `cyan-700` -> `cyan-800` +- `blue-background-color-default` + - dark: `blue-700` -> `blue-800` +- `indigo-background-color-default` + - dark: `indigo-700` -> `indigo-800` +- `purple-background-color-default` + - dark: `purple-700` -> `purple-800` +- `fuchsia-background-color-default` + - dark: `fuchsia-700` -> `fuchsia-800` +- `magenta-background-color-default` + - dark: `magenta-700` -> `magenta-800` +- `negative-visual-color` + - dark: `negative-color-700` -> `negative-color-900` +- `notice-visual-color` + - light: `notice-color-700` -> `notice-color-800` +- `positive-visual-color` + - light: `positive-color-700` -> `positive-color-800` + - dark: `positive-color-800` -> `positive-color-900` +- `brown-background-color-default` + - dark: `brown-700` -> `brown-800` +- `cinnamon-background-color-default` + - dark: `cinnamon-700` -> `cinnamon-800` +- `pink-background-color-default` + - dark: `pink-700` -> `pink-800` +- `silver-background-color-default` + - dark: `silver-700` -> `silver-800` +- `turquoise-background-color-default` + - dark: `turquoise-700` -> `turquoise-800` +- `neutral-subtle-background-color-default` + - light: `gray-100` -> `gray-100` + - dark: `gray-100` -> `gray-300` +- `accent-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `accent-color-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `accent-color-300` +- `gray-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `gray-100` + - dark: `rgba(0, 0, 0, 0.6)` -> `gray-300` +- `blue-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `blue-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `blue-300` +- `green-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `green-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `green-300` +- `orange-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `orange-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `orange-300` +- `red-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `red-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `red-300` +- `brown-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `brown-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `brown-300` +- `cinnamon-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `cinnamon-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `cinnamon-300` +- `celery-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `celery-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `celery-300` +- `chartreuse-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `chartreuse-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `chartreuse-300` +- `cyan-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `cyan-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `cyan-300` +- `fuchsia-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `fuchsia-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `fuchsia-300` +- `indigo-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `indigo-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `indigo-300` +- `magenta-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `magenta-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `magenta-300` +- `pink-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `pink-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `pink-300` +- `purple-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `purple-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `purple-300` +- `seafoam-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `seafoam-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `seafoam-300` +- `silver-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `silver-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `silver-300` +- `turquoise-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `turquoise-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `turquoise-300` +- `yellow-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `yellow-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `yellow-300` + +
diff --git a/packages/tokens/schemas/token-types/gradient-stop.json b/packages/tokens/schemas/token-types/gradient-stop.json new file mode 100644 index 00000000..d92481a5 --- /dev/null +++ b/packages/tokens/schemas/token-types/gradient-stop.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "title": "Color Stop", + "description": "Gradient stop positions, being a ratio along the gradient's axis. Start is 0, end is 1.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json" + }, + "value": { + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "component": {}, + "private": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} From 7406098ac24af5de7a1cf351e36f349aeca5dec5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 3 Oct 2024 21:51:12 +0000 Subject: [PATCH 247/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 310 +++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 + tools/token-csv-generator/package.json | 2 +- 5 files changed, 320 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 571e5f18..0ccd0878 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -63,6 +63,7 @@ "strong-trains-crash", "sweet-pillows-protect", "tame-bobcats-beg", + "tender-monkeys-flash", "twelve-impalas-compare", "twelve-kangaroos-rescue", "unlucky-buckets-shop", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index a01482de..87b07c53 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,315 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.47 + +### Minor Changes + +- [`75a573b`](https://github.com/adobe/spectrum-tokens/commit/75a573bcbb7b71ecdf5f246682755de24dae5afc) Thanks [@GarthDB](https://github.com/GarthDB)! - S2 subtle and visual colors update + Updated S2 Table tokens + +
Tokens added (42): + + - `illustrated-message-maximum-width` + - `side-focus-indicator` + - `table-row-bottom-to-text-extra-large` + - `table-row-bottom-to-text-extra-large-regular` + - `table-row-bottom-to-text-large` + - `table-row-bottom-to-text-large-regular` + - `table-row-bottom-to-text-medium` + - `table-row-bottom-to-text-medium-regular` + - `table-row-bottom-to-text-small` + - `table-row-bottom-to-text-small-regular` + - `table-row-checkbox-to-top-extra-large` + - `table-row-checkbox-to-top-extra-large-regular` + - `table-row-checkbox-to-top-large` + - `table-row-checkbox-to-top-large-regular` + - `table-row-checkbox-to-top-medium` + - `table-row-checkbox-to-top-medium-regular` + - `table-row-checkbox-to-top-small` + - `table-row-checkbox-to-top-small-regular` + - `table-row-height-extra-large` + - `table-row-height-extra-large-regular` + - `table-row-height-large` + - `table-row-height-large-regular` + - `table-row-height-medium` + - `table-row-height-medium-regular` + - `table-row-height-small` + - `table-row-height-small-regular` + - `table-row-top-to-text-extra-large` + - `table-row-top-to-text-extra-large-regular` + - `table-row-top-to-text-large` + - `table-row-top-to-text-large-regular` + - `table-row-top-to-text-medium` + - `table-row-top-to-text-medium-regular` + - `table-row-top-to-text-small` + - `table-row-top-to-text-small-regular` + - `table-thumbnail-to-top-minimum-extra-large` + - `table-thumbnail-to-top-minimum-extra-large-regular` + - `table-thumbnail-to-top-minimum-large` + - `table-thumbnail-to-top-minimum-large-regular` + - `table-thumbnail-to-top-minimum-medium` + - `table-thumbnail-to-top-minimum-medium-regular` + - `table-thumbnail-to-top-minimum-small` + - `table-thumbnail-to-top-minimum-small-regular` + +
+ +
Tokens updated (101): + + - `informative-subtle-background-color-default` + - light: `blue-200` -> `informative-color-200` + - dark: `blue-200` -> `informative-color-300` + - `positive-subtle-background-color-default` + - light: `green-200` -> `positive-color-200` + - dark: `green-200` -> `positive-color-300` + - `notice-subtle-background-color-default` + - light: `orange-200` -> `notice-color-200` + - dark: `orange-200` -> `notice-color-300` + - `negative-subtle-background-color-default` + - light: `red-200` -> `negative-color-200` + - dark: `red-200` -> `negative-color-300` + - `table-column-header-row-top-to-text-medium` + - desktop: `7px` -> `6px` + - `table-row-height-small-regular` + - desktop: `32px` -> `table-row-height-small` + - mobile: `40px` -> `table-row-height-small` + - `table-row-height-medium-regular` + - desktop: `40px` -> `table-row-height-medium` + - mobile: `50px` -> `table-row-height-medium` + - `table-row-height-large-regular` + - desktop: `48px` -> `table-row-height-large` + - mobile: `60px` -> `table-row-height-large` + - `table-row-height-extra-large-regular` + - desktop: `56px` -> `table-row-height-extra-large` + - mobile: `70px` -> `table-row-height-extra-large` + - `table-row-top-to-text-small-regular` + - desktop: `8px` -> `table-row-top-to-text-small` + - mobile: `10px` -> `table-row-top-to-text-small` + - `table-row-top-to-text-medium-regular` + - desktop: `11px` -> `table-row-top-to-text-medium` + - mobile: `14px` -> `table-row-top-to-text-medium` + - `table-row-top-to-text-large-regular` + - desktop: `14px` -> `table-row-top-to-text-large` + - mobile: `18px` -> `table-row-top-to-text-large` + - `table-row-top-to-text-extra-large-regular` + - desktop: `17px` -> `table-row-top-to-text-extra-large` + - mobile: `21px` -> `table-row-top-to-text-extra-large` + - `table-row-bottom-to-text-small-regular` + - desktop: `9px` -> `table-row-bottom-to-text-small` + - mobile: `11px` -> `table-row-bottom-to-text-small` + - `table-row-bottom-to-text-medium-regular` + - desktop: `12px` -> `table-row-bottom-to-text-medium` + - mobile: `15px` -> `table-row-bottom-to-text-medium` + - `table-row-bottom-to-text-large-regular` + - desktop: `14px` -> `table-row-bottom-to-text-large` + - mobile: `18px` -> `table-row-bottom-to-text-large` + - `table-row-bottom-to-text-extra-large-regular` + - desktop: `17px` -> `table-row-bottom-to-text-extra-large` + - mobile: `22px` -> `table-row-bottom-to-text-extra-large` + - `table-row-top-to-text-medium-spacious` + - mobile: `18px` -> `16px` + - `table-header-row-checkbox-to-top-medium` + - desktop: `9px` -> `8px` + - mobile: `13px` -> `11px` + - `table-row-checkbox-to-top-small-regular` + - desktop: `10px` -> `table-row-checkbox-to-top-small` + - mobile: `14px` -> `table-row-checkbox-to-top-small` + - `table-row-checkbox-to-top-medium-compact` + - desktop: `9px` -> `8px` + - mobile: `13px` -> `11px` + - `table-row-checkbox-to-top-medium-regular` + - desktop: `13px` -> `table-row-checkbox-to-top-medium` + - mobile: `18px` -> `table-row-checkbox-to-top-medium` + - `table-row-checkbox-to-top-medium-spacious` + - desktop: `17px` -> `16px` + - mobile: `23px` -> `21px` + - `table-row-checkbox-to-top-large-regular` + - desktop: `16px` -> `table-row-checkbox-to-top-large` + - mobile: `22px` -> `table-row-checkbox-to-top-large` + - `table-row-checkbox-to-top-extra-large-regular` + - desktop: `19px` -> `table-row-checkbox-to-top-extra-large` + - mobile: `26px` -> `table-row-checkbox-to-top-extra-large` + - `table-thumbnail-to-top-minimum-small-regular` + - desktop: `5px` -> `table-thumbnail-to-top-minimum-small` + - mobile: `6px` -> `table-thumbnail-to-top-minimum-small` + - `table-thumbnail-to-top-minimum-medium-regular` + - desktop: `7px` -> `table-thumbnail-to-top-minimum-medium` + - mobile: `9px` -> `table-thumbnail-to-top-minimum-medium` + - `table-thumbnail-to-top-minimum-large-regular` + - desktop: `8px` -> `table-thumbnail-to-top-minimum-large` + - mobile: `10px` -> `table-thumbnail-to-top-minimum-large` + - `table-thumbnail-to-top-minimum-extra-large-regular` + - desktop: `8px` -> `table-thumbnail-to-top-minimum-extra-large` + - mobile: `10px` -> `table-thumbnail-to-top-minimum-extra-large` + - `blue-800` + - dark: `rgb(69, 110, 254)` -> `rgb(64, 105, 253)` + - `red-800` + - dark: `rgb(230, 54, 35)` -> `rgb(223, 52, 34)` + - `orange-800` + - dark: `rgb(205, 86, 0)` -> `rgb(199, 82, 0)` + - `yellow-800` + - dark: `rgb(169, 110, 0)` -> `rgb(164, 106, 0)` + - `chartreuse-800` + - dark: `rgb(109, 131, 0)` -> `rgb(106, 127, 0)` + - `celery-800` + - dark: `rgb(69, 138, 19)` -> `rgb(66, 134, 18)` + - `green-800` + - dark: `rgb(6, 140, 82)` -> `rgb(6, 136, 80)` + - `seafoam-800` + - dark: `rgb(8, 138, 116)` -> `rgb(8, 134, 112)` + - `cyan-800` + - dark: `rgb(15, 128, 194)` -> `rgb(13, 125, 186)` + - `indigo-800` + - dark: `rgb(119, 97, 252)` -> `rgb(116, 91, 252)` + - `purple-800` + - dark: `rgb(161, 84, 229)` -> `rgb(157, 78, 228)` + - `fuchsia-800` + - dark: `rgb(192, 64, 212)` -> `rgb(186, 60, 206)` + - `magenta-800` + - dark: `rgb(231, 41, 105)` -> `rgb(224, 38, 101)` + - `pink-800` + - dark: `rgb(220, 47, 156)` -> `rgb(213, 45, 151)` + - `turquoise-800` + - dark: `rgb(9, 135, 147)` -> `rgb(9, 131, 142)` + - `brown-800` + - dark: `rgb(148, 118, 73)` -> `rgb(143, 114, 69)` + - `silver-800` + - dark: `rgb(123, 123, 123)` -> `rgb(118, 118, 118)` + - `cinnamon-800` + - dark: `rgb(179, 103, 64)` -> `rgb(176, 98, 59)` + - `accent-background-color-default` + - dark: `accent-color-700` -> `accent-color-800` + - `accent-background-color-hover` + - dark: `accent-color-600` -> `accent-color-700` + - `accent-background-color-down` + - dark: `accent-color-600` -> `accent-color-700` + - `accent-background-color-key-focus` + - dark: `accent-color-600` -> `accent-color-700` + - `informative-background-color-default` + - dark: `informative-color-700` -> `informative-color-800` + - `informative-background-color-hover` + - dark: `informative-color-600` -> `informative-color-700` + - `informative-background-color-down` + - dark: `informative-color-600` -> `informative-color-700` + - `informative-background-color-key-focus` + - dark: `informative-color-600` -> `informative-color-700` + - `negative-background-color-default` + - dark: `negative-color-700` -> `negative-color-800` + - `negative-background-color-hover` + - dark: `negative-color-600` -> `negative-color-700` + - `negative-background-color-down` + - dark: `negative-color-600` -> `negative-color-700` + - `negative-background-color-key-focus` + - dark: `negative-color-600` -> `negative-color-700` + - `positive-background-color-default` + - dark: `positive-color-700` -> `positive-color-800` + - `positive-background-color-hover` + - dark: `positive-color-600` -> `positive-color-700` + - `positive-background-color-down` + - dark: `positive-color-600` -> `positive-color-700` + - `positive-background-color-key-focus` + - dark: `positive-color-600` -> `positive-color-700` + - `red-background-color-default` + - dark: `red-700` -> `red-800` + - `green-background-color-default` + - dark: `green-700` -> `green-800` + - `seafoam-background-color-default` + - dark: `seafoam-700` -> `seafoam-800` + - `cyan-background-color-default` + - dark: `cyan-700` -> `cyan-800` + - `blue-background-color-default` + - dark: `blue-700` -> `blue-800` + - `indigo-background-color-default` + - dark: `indigo-700` -> `indigo-800` + - `purple-background-color-default` + - dark: `purple-700` -> `purple-800` + - `fuchsia-background-color-default` + - dark: `fuchsia-700` -> `fuchsia-800` + - `magenta-background-color-default` + - dark: `magenta-700` -> `magenta-800` + - `negative-visual-color` + - dark: `negative-color-700` -> `negative-color-900` + - `notice-visual-color` + - light: `notice-color-700` -> `notice-color-800` + - `positive-visual-color` + - light: `positive-color-700` -> `positive-color-800` + - dark: `positive-color-800` -> `positive-color-900` + - `brown-background-color-default` + - dark: `brown-700` -> `brown-800` + - `cinnamon-background-color-default` + - dark: `cinnamon-700` -> `cinnamon-800` + - `pink-background-color-default` + - dark: `pink-700` -> `pink-800` + - `silver-background-color-default` + - dark: `silver-700` -> `silver-800` + - `turquoise-background-color-default` + - dark: `turquoise-700` -> `turquoise-800` + - `neutral-subtle-background-color-default` + - light: `gray-100` -> `gray-100` + - dark: `gray-100` -> `gray-300` + - `accent-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `accent-color-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `accent-color-300` + - `gray-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `gray-100` + - dark: `rgba(0, 0, 0, 0.6)` -> `gray-300` + - `blue-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `blue-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `blue-300` + - `green-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `green-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `green-300` + - `orange-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `orange-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `orange-300` + - `red-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `red-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `red-300` + - `brown-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `brown-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `brown-300` + - `cinnamon-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `cinnamon-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `cinnamon-300` + - `celery-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `celery-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `celery-300` + - `chartreuse-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `chartreuse-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `chartreuse-300` + - `cyan-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `cyan-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `cyan-300` + - `fuchsia-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `fuchsia-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `fuchsia-300` + - `indigo-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `indigo-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `indigo-300` + - `magenta-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `magenta-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `magenta-300` + - `pink-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `pink-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `pink-300` + - `purple-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `purple-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `purple-300` + - `seafoam-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `seafoam-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `seafoam-300` + - `silver-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `silver-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `silver-300` + - `turquoise-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `turquoise-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `turquoise-300` + - `yellow-subtle-background-color-default` + - light: `rgba(0, 0, 0, 0.2)` -> `yellow-200` + - dark: `rgba(0, 0, 0, 0.6)` -> `yellow-300` + +
+ ## 13.0.0-beta.46 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 7043a738..995cfa49 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.46", + "version": "13.0.0-beta.47", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 2e3dd02b..76202a01 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.18 + +### Patch Changes + +- Updated dependencies [[`75a573b`](https://github.com/adobe/spectrum-tokens/commit/75a573bcbb7b71ecdf5f246682755de24dae5afc)]: + - @adobe/spectrum-tokens@13.0.0-beta.47 + ## 0.0.2-beta.17 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index e357f646..e0edf314 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.17", + "version": "0.0.2-beta.18", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From caca973300d34fc688fb828633b1da2ba8284990 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 3 Oct 2024 16:32:51 -0600 Subject: [PATCH 248/295] chore: added changeset --- .changeset/big-hounds-tap.md | 87 ++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 .changeset/big-hounds-tap.md diff --git a/.changeset/big-hounds-tap.md b/.changeset/big-hounds-tap.md new file mode 100644 index 00000000..4ccf7aa5 --- /dev/null +++ b/.changeset/big-hounds-tap.md @@ -0,0 +1,87 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +1. New typography tokens: + +- Letter spacing, text-align, cjk + +1. New gradient stop tokens +1. New component tokens for bar panel, rating, segmented control, slider, select box +1. New static color tokens + +_Tokens added (51):_ + +- `letter-spacing` +- `text-align-start` +- `text-align-center` +- `text-align-end` +- `body-size-xxs` +- `body-cjk-size-xxxl` +- `body-cjk-size-xxl` +- `body-cjk-size-xl` +- `body-cjk-size-l` +- `body-cjk-size-m` +- `body-cjk-size-s` +- `body-cjk-size-xs` +- `body-cjk-size-xxs` +- `gradient-stop-1-genai` +- `gradient-stop-2-genai` +- `gradient-stop-3-genai` +- `gradient-stop-1-premium` +- `gradient-stop-2-premium` +- `gradient-stop-3-premium` +- `bar-panel-width` +- `bar-panel-minimum-width` +- `bar-panel-maximum-width` +- `bar-panel-spacing-extra-spacious` +- `rating-top-to-content-area-small` +- `rating-bottom-to-content-area-small` +- `rating-edge-to-content-area-small` +- `rating-top-to-content-area-medium` +- `rating-bottom-to-content-area-medium` +- `rating-edge-to-content-area-medium` +- `rating-width-small` +- `rating-height-small` +- `rating-width-medium` +- `rating-height-medium` +- `segmented-control-selection-border-width` +- `slider-handle-precision-width` +- `slider-track-height-medium` +- `slider-track-height-large` +- `segmented-control-item-height` +- `static-blue-900` +- `static-blue-1000` +- `static-fuchsia-900` +- `static-fuchsia-1000` +- `static-indigo-900` +- `static-indigo-1000` +- `static-magenta-900` +- `static-magenta-1000` +- `static-red-900` +- `static-red-1000` +- `bar-panel-gripper-color` +- `bar-panel-gripper-color-drag` +- `select-box-selected-border-color` + +_Token values updated (9):_ + +- `font-size-1200` + - `desktop`: `50px` -> `51px` +- `font-size-1300` + - `desktop`: `60px` -> `58px` +- `cjk-letter-spacing`: `0.05em` -> `letter-spacing` +- `body-cjk-strong-font-weight`: `black-font-weight` -> `extra-bold-font-weight` +- `body-cjk-strong-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` +- `slider-control-to-field-label-small` + - `desktop`: `5px` -> `-4px` + - `mobile`: `6px` -> `-8px` +- `slider-control-to-field-label-medium` + - `desktop`: `8px` -> `-12px` + - `mobile`: `10px` -> `-16px` +- `slider-control-to-field-label-large` + - `desktop`: `11px` -> `-16px` + - `mobile`: `14px` -> `-20px` +- `slider-control-to-field-label-extra-large` + - `desktop`: `14px` -> `-20px` + - `mobile`: `17px` -> `-28px` From 3a26b17ec8a113759e1afa616ae7e83b4964ecc0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 3 Oct 2024 22:43:00 +0000 Subject: [PATCH 249/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 88 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 ++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 98 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 0ccd0878..56c1d1dc 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -13,6 +13,7 @@ }, "changesets": [ "angry-zoos-applaud", + "big-hounds-tap", "blue-parrots-hug", "brown-years-perform", "chatty-dolphins-build", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 87b07c53..ce5161eb 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,93 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.48 + +### Minor Changes + +- [#415](https://github.com/adobe/spectrum-tokens/pull/415) [`caca973`](https://github.com/adobe/spectrum-tokens/commit/caca973300d34fc688fb828633b1da2ba8284990) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - 1. New typography tokens: + + - Letter spacing, text-align, cjk + + 1. New gradient stop tokens + 1. New component tokens for bar panel, rating, segmented control, slider, select box + 1. New static color tokens + + _Tokens added (51):_ + + - `letter-spacing` + - `text-align-start` + - `text-align-center` + - `text-align-end` + - `body-size-xxs` + - `body-cjk-size-xxxl` + - `body-cjk-size-xxl` + - `body-cjk-size-xl` + - `body-cjk-size-l` + - `body-cjk-size-m` + - `body-cjk-size-s` + - `body-cjk-size-xs` + - `body-cjk-size-xxs` + - `gradient-stop-1-genai` + - `gradient-stop-2-genai` + - `gradient-stop-3-genai` + - `gradient-stop-1-premium` + - `gradient-stop-2-premium` + - `gradient-stop-3-premium` + - `bar-panel-width` + - `bar-panel-minimum-width` + - `bar-panel-maximum-width` + - `bar-panel-spacing-extra-spacious` + - `rating-top-to-content-area-small` + - `rating-bottom-to-content-area-small` + - `rating-edge-to-content-area-small` + - `rating-top-to-content-area-medium` + - `rating-bottom-to-content-area-medium` + - `rating-edge-to-content-area-medium` + - `rating-width-small` + - `rating-height-small` + - `rating-width-medium` + - `rating-height-medium` + - `segmented-control-selection-border-width` + - `slider-handle-precision-width` + - `slider-track-height-medium` + - `slider-track-height-large` + - `segmented-control-item-height` + - `static-blue-900` + - `static-blue-1000` + - `static-fuchsia-900` + - `static-fuchsia-1000` + - `static-indigo-900` + - `static-indigo-1000` + - `static-magenta-900` + - `static-magenta-1000` + - `static-red-900` + - `static-red-1000` + - `bar-panel-gripper-color` + - `bar-panel-gripper-color-drag` + - `select-box-selected-border-color` + + _Token values updated (9):_ + + - `font-size-1200` + - `desktop`: `50px` -> `51px` + - `font-size-1300` + - `desktop`: `60px` -> `58px` + - `cjk-letter-spacing`: `0.05em` -> `letter-spacing` + - `body-cjk-strong-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + - `body-cjk-strong-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + - `slider-control-to-field-label-small` + - `desktop`: `5px` -> `-4px` + - `mobile`: `6px` -> `-8px` + - `slider-control-to-field-label-medium` + - `desktop`: `8px` -> `-12px` + - `mobile`: `10px` -> `-16px` + - `slider-control-to-field-label-large` + - `desktop`: `11px` -> `-16px` + - `mobile`: `14px` -> `-20px` + - `slider-control-to-field-label-extra-large` + - `desktop`: `14px` -> `-20px` + - `mobile`: `17px` -> `-28px` + ## 13.0.0-beta.47 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 995cfa49..2bbbd5b0 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.47", + "version": "13.0.0-beta.48", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 76202a01..48e740d5 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.19 + +### Patch Changes + +- Updated dependencies [[`caca973`](https://github.com/adobe/spectrum-tokens/commit/caca973300d34fc688fb828633b1da2ba8284990)]: + - @adobe/spectrum-tokens@13.0.0-beta.48 + ## 0.0.2-beta.18 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index e0edf314..200ba1c6 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.18", + "version": "0.0.2-beta.19", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 2de4b1ad1a3234f16e15fa0ab1b300021cdfb1d0 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Thu, 3 Oct 2024 22:52:12 +0000 Subject: [PATCH 250/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 12 ++- packages/tokens/src/layout.json | 10 +-- packages/tokens/src/typography.json | 94 +++++++++++++++-------- 3 files changed, 76 insertions(+), 40 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 2b551f91..e2bfeba1 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9960,5 +9960,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" + }, + "heading-cjk-size-xxxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-1400}", + "uuid": "3b954e15-341a-40f4-a47e-9abd2813fec4" + }, + "heading-size-xxxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-1500}", + "uuid": "517d86cc-2e66-4cdc-8841-cb32db9e56f4" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 49eec31e..8a5c4a68 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2385,13 +2385,13 @@ "uuid": "1b4e100e-3266-4212-84c7-ee6995aaff83" }, "gradient-stop-2-genai": { - "value": 0.3333, "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "value": "0.3333", "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { - "value": 1, "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "value": "1", "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2400,13 +2400,13 @@ "uuid": "4cb26877-72bd-48e5-8266-6b29b1c2303d" }, "gradient-stop-2-premium": { - "value": 0.6666, "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "value": "0.6666", "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { - "value": 1, "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "value": "1", "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index ad40a4ba..1c0c8313 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -396,41 +396,47 @@ "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", - "uuid": "ff84a748-5923-451d-967c-a346d2dee46c" + "uuid": "ff84a748-5923-451d-967c-a346d2dee46c", + "deprecated": true }, "heading-sans-serif-light-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "c5551fd5-4ee2-4c93-b91f-9ed295fa63a4" + "uuid": "c5551fd5-4ee2-4c93-b91f-9ed295fa63a4", + "deprecated": true }, "heading-serif-light-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "66958795-6459-4750-8c68-dc39ab383837" + "uuid": "66958795-6459-4750-8c68-dc39ab383837", + "deprecated": true }, "heading-serif-light-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "5f30418a-aa76-434e-bca9-902d5be0d929" + "uuid": "5f30418a-aa76-434e-bca9-902d5be0d929", + "deprecated": true }, "heading-cjk-light-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", - "uuid": "9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d" + "uuid": "9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d", + "deprecated": true }, "heading-cjk-light-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "b5704c75-2914-4268-9023-7f7452e826c1" + "uuid": "b5704c75-2914-4268-9023-7f7452e826c1", + "deprecated": true }, "heading-sans-serif-font-weight": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "1d4d09b4-021a-48e8-a724-bfecc13df325" }, "heading-sans-serif-font-style": { @@ -488,7 +494,7 @@ "heading-cjk-heavy-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "73c20d2f-1227-46bc-8548-102358405b0b" }, "heading-cjk-heavy-font-style": { @@ -501,37 +507,43 @@ "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", - "uuid": "75437f9a-7ee8-4194-b4b3-0746be097396" + "uuid": "75437f9a-7ee8-4194-b4b3-0746be097396", + "deprecated": true }, "heading-sans-serif-light-strong-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "67271ca0-c9fd-4047-a615-6314d7333f7a" + "uuid": "67271ca0-c9fd-4047-a615-6314d7333f7a", + "deprecated": true }, "heading-serif-light-strong-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", - "uuid": "29ad1c96-62e4-4143-88e8-fc8e08913a52" + "uuid": "29ad1c96-62e4-4143-88e8-fc8e08913a52", + "deprecated": true }, "heading-serif-light-strong-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "73906871-24e5-48cc-9140-ec700c08d144" + "uuid": "73906871-24e5-48cc-9140-ec700c08d144", + "deprecated": true }, "heading-cjk-light-strong-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "5ca91bc2-215b-4cbb-b966-80bfffd569ad" + "uuid": "5ca91bc2-215b-4cbb-b966-80bfffd569ad", + "deprecated": true }, "heading-cjk-light-strong-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "be854057-43b1-40ce-bdc7-69960cd7638c" + "uuid": "be854057-43b1-40ce-bdc7-69960cd7638c", + "deprecated": true }, "heading-sans-serif-strong-font-weight": { "component": "heading", @@ -609,41 +621,47 @@ "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", - "uuid": "e882ea46-8f0a-4313-84f5-85bb8d9f1f5e" + "uuid": "e882ea46-8f0a-4313-84f5-85bb8d9f1f5e", + "deprecated": true }, "heading-sans-serif-light-emphasized-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "5f88eb81-7052-4c21-9896-f14cb09f0e70" + "uuid": "5f88eb81-7052-4c21-9896-f14cb09f0e70", + "deprecated": true }, "heading-serif-light-emphasized-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "b5f79fde-07f7-4c07-897e-0bfdf27e2839" + "uuid": "b5f79fde-07f7-4c07-897e-0bfdf27e2839", + "deprecated": true }, "heading-serif-light-emphasized-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "7bd831cd-3fe0-402b-a105-f65b8e8023e2" + "uuid": "7bd831cd-3fe0-402b-a105-f65b8e8023e2", + "deprecated": true }, "heading-cjk-light-emphasized-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "aea9787b-ee0b-40cc-9089-5973e52b18bd" + "uuid": "aea9787b-ee0b-40cc-9089-5973e52b18bd", + "deprecated": true }, "heading-cjk-light-emphasized-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7" + "uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7", + "deprecated": true }, "heading-sans-serif-emphasized-font-weight": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "e4a183fd-53c5-4dbb-afd1-6308e2e74f80" }, "heading-sans-serif-emphasized-font-style": { @@ -715,37 +733,43 @@ "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", - "uuid": "c297a503-fc3c-4939-8c5a-6611b9b04719" + "uuid": "c297a503-fc3c-4939-8c5a-6611b9b04719", + "deprecated": true }, "heading-sans-serif-light-strong-emphasized-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "bc5d65e0-e13a-424c-a260-9268a0dee66c" + "uuid": "bc5d65e0-e13a-424c-a260-9268a0dee66c", + "deprecated": true }, "heading-serif-light-strong-emphasized-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{bold-font-weight}", - "uuid": "98c61df3-057d-4345-881e-0c04628757f3" + "uuid": "98c61df3-057d-4345-881e-0c04628757f3", + "deprecated": true }, "heading-serif-light-strong-emphasized-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "71c8e302-6bc1-4f45-b804-c847dd153d1b" + "uuid": "71c8e302-6bc1-4f45-b804-c847dd153d1b", + "deprecated": true }, "heading-cjk-light-strong-emphasized-font-weight": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "83cc347c-7a1a-4665-9de4-cf19903f1043" + "uuid": "83cc347c-7a1a-4665-9de4-cf19903f1043", + "deprecated": true }, "heading-cjk-light-strong-emphasized-font-style": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "9136e25e-563b-4485-bad7-41809d5317de" + "uuid": "9136e25e-563b-4485-bad7-41809d5317de", + "deprecated": true }, "heading-sans-serif-strong-emphasized-font-weight": { "component": "heading", @@ -852,31 +876,32 @@ "heading-size-s": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", + "value": "{font-size-400}", "uuid": "96673fee-b75c-4867-9041-48362af044bc" }, "heading-size-xs": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", + "value": "{font-size-300}", "uuid": "4f179af6-c31f-48f8-927c-a45150668ad3" }, "heading-size-xxs": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", - "uuid": "82a831b4-b624-475b-b2be-4eb949e48626" + "uuid": "82a831b4-b624-475b-b2be-4eb949e48626", + "deprecated": true }, "heading-cjk-size-xxxl": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1300}", + "value": "{font-size-1200}", "uuid": "5a44e177-2478-4bb0-9212-ba2df64c8b00" }, "heading-cjk-size-xxl": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-900}", + "value": "{font-size-1000}", "uuid": "fbf59302-1ad2-4327-bfde-d638a0ca2429" }, "heading-cjk-size-xl": { @@ -913,7 +938,8 @@ "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{font-size-100}", - "uuid": "bddd6a96-c280-47ca-8858-20df055e488d" + "uuid": "bddd6a96-c280-47ca-8858-20df055e488d", + "deprecated": true }, "heading-line-height": { "component": "heading", @@ -1752,4 +1778,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} +} \ No newline at end of file From 24fa7fa12180428b590e0d963065ef615927f120 Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 4 Oct 2024 10:24:06 -0600 Subject: [PATCH 251/295] fix: fixing content type --- packages/tokens/src/layout-component.json | 12 +----------- packages/tokens/src/layout.json | 10 +++++----- packages/tokens/src/typography.json | 12 +++++++++++- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index e2bfeba1..2b551f91 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9960,15 +9960,5 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" - }, - "heading-cjk-size-xxxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1400}", - "uuid": "3b954e15-341a-40f4-a47e-9abd2813fec4" - }, - "heading-size-xxxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1500}", - "uuid": "517d86cc-2e66-4cdc-8841-cb32db9e56f4" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 8a5c4a68..3836c73f 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2386,12 +2386,12 @@ }, "gradient-stop-2-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.3333", + "value": 0.3333, "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2401,12 +2401,12 @@ }, "gradient-stop-2-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.6666", + "value": 0.6666, "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index 1c0c8313..efb22f61 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -892,6 +892,16 @@ "uuid": "82a831b4-b624-475b-b2be-4eb949e48626", "deprecated": true }, + "heading-cjk-size-xxxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-1400}", + "uuid": "3b954e15-341a-40f4-a47e-9abd2813fec4" + }, + "heading-size-xxxxl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-1500}", + "uuid": "517d86cc-2e66-4cdc-8841-cb32db9e56f4" + }, "heading-cjk-size-xxxl": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", @@ -1778,4 +1788,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} \ No newline at end of file +} From 45ed87b43af53370f74fc46c545b4c13005f381c Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 4 Oct 2024 10:42:49 -0600 Subject: [PATCH 252/295] chore: added changeset --- .changeset/proud-oranges-think.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .changeset/proud-oranges-think.md diff --git a/.changeset/proud-oranges-think.md b/.changeset/proud-oranges-think.md new file mode 100644 index 00000000..800d7847 --- /dev/null +++ b/.changeset/proud-oranges-think.md @@ -0,0 +1,24 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +## Design Motivation + +Made the following changes to component typography tokens for both mobile and desktop. + +## Token Diff + +_Tokens added (2):_ + +- `heading-cjk-size-xxxxl` +- `heading-size-xxxxl` + +_Tokens changed (7):_ + +- `heading-sans-serif-font-weight`: `bold-font-weight` -> `extra-bold-font-weight` +- `heading-cjk-heavy-font-weight`: `black-font-weight` -> `extra-bold-font-weight` +- `heading-sans-serif-emphasized-font-weight`: `bold-font-weight` -> `extra-bold-font-weight` +- `heading-size-s`: `font-size-300` -> `font-size-400` +- `heading-size-xs`: `font-size-200` -> `font-size-300` +- `heading-cjk-size-xxxl`: `font-size-1300` -> `font-size-1200` +- `heading-cjk-size-xxl`: `font-size-900` -> `font-size-1000` From 90ca75bb416c1a09e3335713f5a337dda73ef07d Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Fri, 4 Oct 2024 16:50:58 +0000 Subject: [PATCH 253/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 32 ++++++- packages/tokens/src/layout.json | 10 +- packages/tokens/src/typography.json | 109 ++++++++++++++-------- 3 files changed, 104 insertions(+), 47 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 2b551f91..89dd26f2 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9960,5 +9960,35 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" + }, + "detail-cjk-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-25}", + "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" + }, + "detail-cjk-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" + }, + "detail-cjk-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" + }, + "detail-cjk-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" + }, + "detail-cjk-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" + }, + "detail-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 3836c73f..8a5c4a68 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2386,12 +2386,12 @@ }, "gradient-stop-2-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.3333, + "value": "0.3333", "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, + "value": "1", "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2401,12 +2401,12 @@ }, "gradient-stop-2-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.6666, + "value": "0.6666", "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, + "value": "1", "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index efb22f61..b6832866 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -1275,7 +1275,7 @@ "detail-sans-serif-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{medium-font-weight}", "uuid": "d06a4346-ec24-4922-8985-4b8a05e0bfc6" }, "detail-sans-serif-font-style": { @@ -1287,7 +1287,7 @@ "detail-serif-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{medium-font-weight}", "uuid": "87ef8843-f44e-4526-80cd-9635f3e0261e" }, "detail-serif-font-style": { @@ -1299,7 +1299,7 @@ "detail-cjk-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", + "value": "{bold-font-weight}", "uuid": "9b11f80a-7600-4a6b-a366-218ba320a5cc" }, "detail-cjk-font-style": { @@ -1312,37 +1312,43 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3" + "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3", + "deprecated": true }, "detail-sans-serif-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e" + "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e", + "deprecated": true }, "detail-serif-light-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb" + "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb", + "deprecated": true }, "detail-serif-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7" + "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7", + "deprecated": true }, "detail-cjk-light-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", - "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38" + "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38", + "deprecated": true }, "detail-cjk-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131" + "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131", + "deprecated": true }, "detail-sans-serif-strong-font-weight": { "component": "detail", @@ -1371,7 +1377,7 @@ "detail-cjk-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "ef2997f3-276c-4662-8644-9514590114f4" }, "detail-cjk-strong-font-style": { @@ -1384,42 +1390,48 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5" + "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5", + "deprecated": true }, "detail-sans-serif-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba" + "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba", + "deprecated": true }, "detail-serif-light-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b" + "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b", + "deprecated": true }, "detail-serif-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80" + "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80", + "deprecated": true }, "detail-cjk-light-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "91231878-73dc-46ce-a277-1d14e0e36842" + "uuid": "91231878-73dc-46ce-a277-1d14e0e36842", + "deprecated": true }, "detail-cjk-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230" + "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230", + "deprecated": true }, "detail-sans-serif-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{regular-font-weight}", "uuid": "6ca600be-010a-4aaa-a815-e5bfdbe36b21" }, "detail-sans-serif-emphasized-font-style": { @@ -1431,7 +1443,7 @@ "detail-serif-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{medium-font-weight}", "uuid": "247b2004-e0bc-42b9-ba83-6edbe417c4cb" }, "detail-serif-emphasized-font-style": { @@ -1443,7 +1455,7 @@ "detail-cjk-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1" }, "detail-cjk-emphasized-font-style": { @@ -1456,37 +1468,43 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "64972012-5050-41d0-9c9b-269b533a58b7" + "uuid": "64972012-5050-41d0-9c9b-269b533a58b7", + "deprecated": true }, "detail-sans-serif-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "fc6098a2-3263-433c-8378-ba609629ef53" + "uuid": "fc6098a2-3263-433c-8378-ba609629ef53", + "deprecated": true }, "detail-serif-light-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2" + "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2", + "deprecated": true }, "detail-serif-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857" + "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857", + "deprecated": true }, "detail-cjk-light-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40" + "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40", + "deprecated": true }, "detail-cjk-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b" + "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b", + "deprecated": true }, "detail-sans-serif-strong-emphasized-font-weight": { "component": "detail", @@ -1515,7 +1533,7 @@ "detail-cjk-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb" }, "detail-cjk-strong-emphasized-font-style": { @@ -1528,60 +1546,66 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486" + "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486", + "deprecated": true }, "detail-sans-serif-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d" + "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d", + "deprecated": true }, "detail-serif-light-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2" + "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2", + "deprecated": true }, "detail-serif-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b" + "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b", + "deprecated": true }, "detail-cjk-light-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d" + "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d", + "deprecated": true }, "detail-cjk-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a" + "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a", + "deprecated": true }, "detail-size-xl": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", + "value": "{font-size-300}", "uuid": "ab476eec-b592-4890-af8f-74de808cb87f" }, "detail-size-l": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", + "value": "{font-size-200}", "uuid": "613da587-5c48-4efa-abb5-36378c1e81f0" }, "detail-size-m": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", + "value": "{font-size-100}", "uuid": "07840554-1ec1-4823-b119-474ec9cc31f0" }, "detail-size-s": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", + "value": "{font-size-75}", "uuid": "585e1bec-ee93-4983-b0bb-3a1f6ec28218" }, "detail-line-height": { @@ -1612,24 +1636,27 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0.06em", - "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279" + "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279", + "deprecated": true }, "detail-sans-serif-text-transform": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", - "uuid": "8646d403-21f9-4e77-8a21-92289c303715" + "uuid": "8646d403-21f9-4e77-8a21-92289c303715", + "deprecated": true }, "detail-serif-text-transform": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", - "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534" + "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534", + "deprecated": true }, "detail-color": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", + "value": "{gray-600}", "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" }, "code-font-family": { @@ -1788,4 +1815,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} +} \ No newline at end of file From 8424bf06d77be30cf052e0a66a6c86837d00d407 Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 4 Oct 2024 11:32:15 -0600 Subject: [PATCH 254/295] fix: moving tokens to typography --- docs/visualizer/public/json/typography.json | 10 ++-- .../schemas/token-types/multiplier.json | 2 +- packages/tokens/src/layout-component.json | 54 ++++-------------- packages/tokens/src/layout.json | 14 ++--- packages/tokens/src/typography.json | 56 +++++++++++++++---- 5 files changed, 71 insertions(+), 65 deletions(-) diff --git a/docs/visualizer/public/json/typography.json b/docs/visualizer/public/json/typography.json index 4cd30d44..884b2f18 100644 --- a/docs/visualizer/public/json/typography.json +++ b/docs/visualizer/public/json/typography.json @@ -629,11 +629,11 @@ }, "heading-margin-top-multiplier": { "component": "heading", - "value": "0.88888889" + "value": 0.88888889 }, "heading-margin-bottom-multiplier": { "component": "heading", - "value": "0.25" + "value": 0.25 }, "body-sans-serif-font-family": { "component": "body", @@ -781,7 +781,7 @@ }, "body-margin-multiplier": { "component": "body", - "value": "0.75" + "value": 0.75 }, "detail-sans-serif-font-family": { "component": "detail", @@ -1013,11 +1013,11 @@ }, "detail-margin-top-mulitplier": { "component": "detail", - "value": "0.88888889" + "value": 0.88888889 }, "detail-margin-bottom-multiplier": { "component": "detail", - "value": "0.25" + "value": 0.25 }, "detail-letter-spacing": { "component": "detail", diff --git a/packages/tokens/schemas/token-types/multiplier.json b/packages/tokens/schemas/token-types/multiplier.json index 3986b92c..73ffdc3b 100644 --- a/packages/tokens/schemas/token-types/multiplier.json +++ b/packages/tokens/schemas/token-types/multiplier.json @@ -14,7 +14,7 @@ "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" }, "value": { - "type": "string", + "type": "number", "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" }, "component": {}, diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 89dd26f2..121e8fbc 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -960,7 +960,7 @@ "button-minimum-width-multiplier": { "component": "button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2.25", + "value": 2.25, "uuid": "68b6ac88-d229-460d-8d59-3f5c141db358" }, "tooltip-tip-width": { @@ -1284,7 +1284,7 @@ "swatch-rectangle-width-multiplier": { "component": "swatch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2", + "value": 2, "uuid": "b3157e9d-82a0-429e-b987-8c240a669af7" }, "swatch-slash-thickness-extra-small": { @@ -2157,7 +2157,7 @@ "picker-minimum-width-multiplier": { "component": "picker", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2", + "value": 2, "uuid": "67b68a30-ae00-4da2-9730-99196a2eaf96" }, "picker-visual-to-disclosure-icon-small": { @@ -2247,7 +2247,7 @@ "text-field-minimum-width-multiplier": { "component": "text-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.5", + "value": 1.5, "uuid": "875bbeaf-b4b7-41b9-8e6f-d6a57ec03049" }, "text-area-minimum-width": { @@ -2285,13 +2285,13 @@ "combo-box-minimum-width-multiplier": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2.5", + "value": 2.5, "uuid": "eabcc77a-f263-43ed-9944-9daa78a56b66" }, "combo-box-quiet-minimum-width-multiplier": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2", + "value": 2, "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", "deprecated": true }, @@ -3428,7 +3428,7 @@ "search-field-minimum-width-multiplier": { "component": "search-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "4", + "value": 4, "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" }, "color-loupe-height": { @@ -7469,14 +7469,14 @@ "tag-minimum-width-multiplier": { "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1", + "value": 1, "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f", "deprecated": true }, "tag-maximum-width-multiplier": { "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "7", + "value": 7, "uuid": "8771f506-a491-4222-be86-0e666ea2c711" }, "tag-label-to-clear-icon-small": { @@ -7686,13 +7686,13 @@ "title-margin-bottom-multiplier": { "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.25", + "value": 0.25, "uuid": "73a0bd28-7691-47b0-9e9b-62ec22940e63" }, "title-margin-top-multiplier": { "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.88888889", + "value": 0.88888889, "uuid": "14d9dc6c-28fc-41cf-a1ae-600a150f520a" }, "title-sans-serif-emphasized-font-style": { @@ -9960,35 +9960,5 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" - }, - "detail-cjk-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" - }, - "detail-cjk-size-s": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" - }, - "detail-cjk-size-m": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" - }, - "detail-cjk-size-l": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" - }, - "detail-cjk-size-xl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" - }, - "detail-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 8a5c4a68..89e1e5d9 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -51,7 +51,7 @@ }, "corner-radius-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.5", + "value": 0.5, "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" }, "drop-shadow-x": { @@ -2165,7 +2165,7 @@ }, "component-size-width-ratio-down": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.3333", + "value": 0.3333, "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" }, "component-size-minimum-perspective-down": { @@ -2386,12 +2386,12 @@ }, "gradient-stop-2-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.3333", + "value": 0.3333, "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2401,12 +2401,12 @@ }, "gradient-stop-2-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.6666", + "value": 0.6666, "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index b6832866..52e5efb3 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -351,22 +351,22 @@ }, "line-height-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.3", + "value": 1.3, "uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b" }, "line-height-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.5", + "value": 1.5, "uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97" }, "cjk-line-height-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.5", + "value": 1.5, "uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4" }, "cjk-line-height-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.7", + "value": 1.7, "uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015" }, "cjk-letter-spacing": { @@ -966,13 +966,13 @@ "heading-margin-top-multiplier": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.88888889", + "value": 0.88888889, "uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642" }, "heading-margin-bottom-multiplier": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.25", + "value": 0.25, "uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f" }, "heading-color": { @@ -1245,7 +1245,7 @@ "body-margin-multiplier": { "component": "body", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.75", + "value": 0.75, "uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89" }, "body-color": { @@ -1623,13 +1623,13 @@ "detail-margin-top-multiplier": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.88888889", + "value": 0.88888889, "uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c" }, "detail-margin-bottom-multiplier": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.25", + "value": 0.25, "uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51" }, "detail-letter-spacing": { @@ -1659,6 +1659,42 @@ "value": "{gray-600}", "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" }, + "detail-cjk-size-xs": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-25}", + "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" + }, + "detail-cjk-size-s": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" + }, + "detail-cjk-size-m": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" + }, + "detail-cjk-size-l": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" + }, + "detail-cjk-size-xl": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" + }, + "detail-size-xs": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" + }, "code-font-family": { "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", @@ -1815,4 +1851,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} \ No newline at end of file +} From 3030aec2385f9ead086293474c0d7f09dd9e5a46 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 4 Oct 2024 12:05:25 -0600 Subject: [PATCH 255/295] Revert "fix: moving tokens to typography" This reverts commit 8424bf06d77be30cf052e0a66a6c86837d00d407. --- docs/visualizer/public/json/typography.json | 10 ++-- .../schemas/token-types/multiplier.json | 2 +- packages/tokens/src/layout-component.json | 54 ++++++++++++++---- packages/tokens/src/layout.json | 14 ++--- packages/tokens/src/typography.json | 56 ++++--------------- 5 files changed, 65 insertions(+), 71 deletions(-) diff --git a/docs/visualizer/public/json/typography.json b/docs/visualizer/public/json/typography.json index 884b2f18..4cd30d44 100644 --- a/docs/visualizer/public/json/typography.json +++ b/docs/visualizer/public/json/typography.json @@ -629,11 +629,11 @@ }, "heading-margin-top-multiplier": { "component": "heading", - "value": 0.88888889 + "value": "0.88888889" }, "heading-margin-bottom-multiplier": { "component": "heading", - "value": 0.25 + "value": "0.25" }, "body-sans-serif-font-family": { "component": "body", @@ -781,7 +781,7 @@ }, "body-margin-multiplier": { "component": "body", - "value": 0.75 + "value": "0.75" }, "detail-sans-serif-font-family": { "component": "detail", @@ -1013,11 +1013,11 @@ }, "detail-margin-top-mulitplier": { "component": "detail", - "value": 0.88888889 + "value": "0.88888889" }, "detail-margin-bottom-multiplier": { "component": "detail", - "value": 0.25 + "value": "0.25" }, "detail-letter-spacing": { "component": "detail", diff --git a/packages/tokens/schemas/token-types/multiplier.json b/packages/tokens/schemas/token-types/multiplier.json index 73ffdc3b..3986b92c 100644 --- a/packages/tokens/schemas/token-types/multiplier.json +++ b/packages/tokens/schemas/token-types/multiplier.json @@ -14,7 +14,7 @@ "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" }, "value": { - "type": "number", + "type": "string", "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" }, "component": {}, diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 121e8fbc..89dd26f2 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -960,7 +960,7 @@ "button-minimum-width-multiplier": { "component": "button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.25, + "value": "2.25", "uuid": "68b6ac88-d229-460d-8d59-3f5c141db358" }, "tooltip-tip-width": { @@ -1284,7 +1284,7 @@ "swatch-rectangle-width-multiplier": { "component": "swatch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, + "value": "2", "uuid": "b3157e9d-82a0-429e-b987-8c240a669af7" }, "swatch-slash-thickness-extra-small": { @@ -2157,7 +2157,7 @@ "picker-minimum-width-multiplier": { "component": "picker", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, + "value": "2", "uuid": "67b68a30-ae00-4da2-9730-99196a2eaf96" }, "picker-visual-to-disclosure-icon-small": { @@ -2247,7 +2247,7 @@ "text-field-minimum-width-multiplier": { "component": "text-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, + "value": "1.5", "uuid": "875bbeaf-b4b7-41b9-8e6f-d6a57ec03049" }, "text-area-minimum-width": { @@ -2285,13 +2285,13 @@ "combo-box-minimum-width-multiplier": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.5, + "value": "2.5", "uuid": "eabcc77a-f263-43ed-9944-9daa78a56b66" }, "combo-box-quiet-minimum-width-multiplier": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, + "value": "2", "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", "deprecated": true }, @@ -3428,7 +3428,7 @@ "search-field-minimum-width-multiplier": { "component": "search-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 4, + "value": "4", "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" }, "color-loupe-height": { @@ -7469,14 +7469,14 @@ "tag-minimum-width-multiplier": { "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1, + "value": "1", "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f", "deprecated": true }, "tag-maximum-width-multiplier": { "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 7, + "value": "7", "uuid": "8771f506-a491-4222-be86-0e666ea2c711" }, "tag-label-to-clear-icon-small": { @@ -7686,13 +7686,13 @@ "title-margin-bottom-multiplier": { "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, + "value": "0.25", "uuid": "73a0bd28-7691-47b0-9e9b-62ec22940e63" }, "title-margin-top-multiplier": { "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, + "value": "0.88888889", "uuid": "14d9dc6c-28fc-41cf-a1ae-600a150f520a" }, "title-sans-serif-emphasized-font-style": { @@ -9960,5 +9960,35 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" + }, + "detail-cjk-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-25}", + "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" + }, + "detail-cjk-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" + }, + "detail-cjk-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" + }, + "detail-cjk-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" + }, + "detail-cjk-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" + }, + "detail-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 89e1e5d9..8a5c4a68 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -51,7 +51,7 @@ }, "corner-radius-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.5, + "value": "0.5", "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" }, "drop-shadow-x": { @@ -2165,7 +2165,7 @@ }, "component-size-width-ratio-down": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.3333, + "value": "0.3333", "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" }, "component-size-minimum-perspective-down": { @@ -2386,12 +2386,12 @@ }, "gradient-stop-2-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.3333, + "value": "0.3333", "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, + "value": "1", "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2401,12 +2401,12 @@ }, "gradient-stop-2-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.6666, + "value": "0.6666", "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, + "value": "1", "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index 52e5efb3..b6832866 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -351,22 +351,22 @@ }, "line-height-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.3, + "value": "1.3", "uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b" }, "line-height-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, + "value": "1.5", "uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97" }, "cjk-line-height-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, + "value": "1.5", "uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4" }, "cjk-line-height-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.7, + "value": "1.7", "uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015" }, "cjk-letter-spacing": { @@ -966,13 +966,13 @@ "heading-margin-top-multiplier": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, + "value": "0.88888889", "uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642" }, "heading-margin-bottom-multiplier": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, + "value": "0.25", "uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f" }, "heading-color": { @@ -1245,7 +1245,7 @@ "body-margin-multiplier": { "component": "body", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.75, + "value": "0.75", "uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89" }, "body-color": { @@ -1623,13 +1623,13 @@ "detail-margin-top-multiplier": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, + "value": "0.88888889", "uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c" }, "detail-margin-bottom-multiplier": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, + "value": "0.25", "uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51" }, "detail-letter-spacing": { @@ -1659,42 +1659,6 @@ "value": "{gray-600}", "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" }, - "detail-cjk-size-xs": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" - }, - "detail-cjk-size-s": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" - }, - "detail-cjk-size-m": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" - }, - "detail-cjk-size-l": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" - }, - "detail-cjk-size-xl": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" - }, - "detail-size-xs": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" - }, "code-font-family": { "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", @@ -1851,4 +1815,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} +} \ No newline at end of file From 1cda5d6f6199f1355a0e272d49ccd4e61c317000 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 4 Oct 2024 12:05:25 -0600 Subject: [PATCH 256/295] Revert "[create-pull-request] automated change" This reverts commit 90ca75bb416c1a09e3335713f5a337dda73ef07d. --- packages/tokens/src/layout-component.json | 32 +------ packages/tokens/src/layout.json | 10 +- packages/tokens/src/typography.json | 109 ++++++++-------------- 3 files changed, 47 insertions(+), 104 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 89dd26f2..2b551f91 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9960,35 +9960,5 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" - }, - "detail-cjk-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" - }, - "detail-cjk-size-s": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" - }, - "detail-cjk-size-m": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" - }, - "detail-cjk-size-l": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" - }, - "detail-cjk-size-xl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" - }, - "detail-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 8a5c4a68..3836c73f 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2386,12 +2386,12 @@ }, "gradient-stop-2-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.3333", + "value": 0.3333, "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2401,12 +2401,12 @@ }, "gradient-stop-2-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.6666", + "value": 0.6666, "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index b6832866..efb22f61 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -1275,7 +1275,7 @@ "detail-sans-serif-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", + "value": "{bold-font-weight}", "uuid": "d06a4346-ec24-4922-8985-4b8a05e0bfc6" }, "detail-sans-serif-font-style": { @@ -1287,7 +1287,7 @@ "detail-serif-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", + "value": "{bold-font-weight}", "uuid": "87ef8843-f44e-4526-80cd-9635f3e0261e" }, "detail-serif-font-style": { @@ -1299,7 +1299,7 @@ "detail-cjk-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "9b11f80a-7600-4a6b-a366-218ba320a5cc" }, "detail-cjk-font-style": { @@ -1312,43 +1312,37 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3", - "deprecated": true + "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3" }, "detail-sans-serif-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e", - "deprecated": true + "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e" }, "detail-serif-light-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb", - "deprecated": true + "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb" }, "detail-serif-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7", - "deprecated": true + "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7" }, "detail-cjk-light-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", - "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38", - "deprecated": true + "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38" }, "detail-cjk-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131", - "deprecated": true + "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131" }, "detail-sans-serif-strong-font-weight": { "component": "detail", @@ -1377,7 +1371,7 @@ "detail-cjk-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", + "value": "{black-font-weight}", "uuid": "ef2997f3-276c-4662-8644-9514590114f4" }, "detail-cjk-strong-font-style": { @@ -1390,48 +1384,42 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5", - "deprecated": true + "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5" }, "detail-sans-serif-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba", - "deprecated": true + "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba" }, "detail-serif-light-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b", - "deprecated": true + "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b" }, "detail-serif-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80", - "deprecated": true + "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80" }, "detail-cjk-light-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "91231878-73dc-46ce-a277-1d14e0e36842", - "deprecated": true + "uuid": "91231878-73dc-46ce-a277-1d14e0e36842" }, "detail-cjk-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230", - "deprecated": true + "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230" }, "detail-sans-serif-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", + "value": "{bold-font-weight}", "uuid": "6ca600be-010a-4aaa-a815-e5bfdbe36b21" }, "detail-sans-serif-emphasized-font-style": { @@ -1443,7 +1431,7 @@ "detail-serif-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", + "value": "{bold-font-weight}", "uuid": "247b2004-e0bc-42b9-ba83-6edbe417c4cb" }, "detail-serif-emphasized-font-style": { @@ -1455,7 +1443,7 @@ "detail-cjk-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", + "value": "{black-font-weight}", "uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1" }, "detail-cjk-emphasized-font-style": { @@ -1468,43 +1456,37 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "64972012-5050-41d0-9c9b-269b533a58b7", - "deprecated": true + "uuid": "64972012-5050-41d0-9c9b-269b533a58b7" }, "detail-sans-serif-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "fc6098a2-3263-433c-8378-ba609629ef53", - "deprecated": true + "uuid": "fc6098a2-3263-433c-8378-ba609629ef53" }, "detail-serif-light-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2", - "deprecated": true + "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2" }, "detail-serif-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857", - "deprecated": true + "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857" }, "detail-cjk-light-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40", - "deprecated": true + "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40" }, "detail-cjk-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b", - "deprecated": true + "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b" }, "detail-sans-serif-strong-emphasized-font-weight": { "component": "detail", @@ -1533,7 +1515,7 @@ "detail-cjk-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", + "value": "{black-font-weight}", "uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb" }, "detail-cjk-strong-emphasized-font-style": { @@ -1546,66 +1528,60 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486", - "deprecated": true + "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486" }, "detail-sans-serif-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d", - "deprecated": true + "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d" }, "detail-serif-light-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2", - "deprecated": true + "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2" }, "detail-serif-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b", - "deprecated": true + "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b" }, "detail-cjk-light-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d", - "deprecated": true + "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d" }, "detail-cjk-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a", - "deprecated": true + "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a" }, "detail-size-xl": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", + "value": "{font-size-200}", "uuid": "ab476eec-b592-4890-af8f-74de808cb87f" }, "detail-size-l": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", + "value": "{font-size-100}", "uuid": "613da587-5c48-4efa-abb5-36378c1e81f0" }, "detail-size-m": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", + "value": "{font-size-75}", "uuid": "07840554-1ec1-4823-b119-474ec9cc31f0" }, "detail-size-s": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", + "value": "{font-size-50}", "uuid": "585e1bec-ee93-4983-b0bb-3a1f6ec28218" }, "detail-line-height": { @@ -1636,27 +1612,24 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0.06em", - "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279", - "deprecated": true + "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279" }, "detail-sans-serif-text-transform": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", - "uuid": "8646d403-21f9-4e77-8a21-92289c303715", - "deprecated": true + "uuid": "8646d403-21f9-4e77-8a21-92289c303715" }, "detail-serif-text-transform": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", - "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534", - "deprecated": true + "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534" }, "detail-color": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", + "value": "{gray-900}", "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" }, "code-font-family": { @@ -1815,4 +1788,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} \ No newline at end of file +} From 4cdd35430c69e49323d8d5c61f6cc652ba735909 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 4 Oct 2024 12:07:48 -0600 Subject: [PATCH 257/295] Revert "Revert "[create-pull-request] automated change"" This reverts commit 1cda5d6f6199f1355a0e272d49ccd4e61c317000. --- packages/tokens/src/layout-component.json | 32 ++++++- packages/tokens/src/layout.json | 10 +- packages/tokens/src/typography.json | 109 ++++++++++++++-------- 3 files changed, 104 insertions(+), 47 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 2b551f91..89dd26f2 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9960,5 +9960,35 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" + }, + "detail-cjk-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-25}", + "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" + }, + "detail-cjk-size-s": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" + }, + "detail-cjk-size-m": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" + }, + "detail-cjk-size-l": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" + }, + "detail-cjk-size-xl": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" + }, + "detail-size-xs": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 3836c73f..8a5c4a68 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2386,12 +2386,12 @@ }, "gradient-stop-2-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.3333, + "value": "0.3333", "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, + "value": "1", "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2401,12 +2401,12 @@ }, "gradient-stop-2-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.6666, + "value": "0.6666", "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, + "value": "1", "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index efb22f61..b6832866 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -1275,7 +1275,7 @@ "detail-sans-serif-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{medium-font-weight}", "uuid": "d06a4346-ec24-4922-8985-4b8a05e0bfc6" }, "detail-sans-serif-font-style": { @@ -1287,7 +1287,7 @@ "detail-serif-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{medium-font-weight}", "uuid": "87ef8843-f44e-4526-80cd-9635f3e0261e" }, "detail-serif-font-style": { @@ -1299,7 +1299,7 @@ "detail-cjk-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", + "value": "{bold-font-weight}", "uuid": "9b11f80a-7600-4a6b-a366-218ba320a5cc" }, "detail-cjk-font-style": { @@ -1312,37 +1312,43 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3" + "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3", + "deprecated": true }, "detail-sans-serif-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e" + "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e", + "deprecated": true }, "detail-serif-light-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb" + "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb", + "deprecated": true }, "detail-serif-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7" + "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7", + "deprecated": true }, "detail-cjk-light-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{light-font-weight}", - "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38" + "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38", + "deprecated": true }, "detail-cjk-light-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131" + "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131", + "deprecated": true }, "detail-sans-serif-strong-font-weight": { "component": "detail", @@ -1371,7 +1377,7 @@ "detail-cjk-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "ef2997f3-276c-4662-8644-9514590114f4" }, "detail-cjk-strong-font-style": { @@ -1384,42 +1390,48 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5" + "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5", + "deprecated": true }, "detail-sans-serif-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba" + "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba", + "deprecated": true }, "detail-serif-light-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b" + "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b", + "deprecated": true }, "detail-serif-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80" + "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80", + "deprecated": true }, "detail-cjk-light-strong-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "91231878-73dc-46ce-a277-1d14e0e36842" + "uuid": "91231878-73dc-46ce-a277-1d14e0e36842", + "deprecated": true }, "detail-cjk-light-strong-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230" + "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230", + "deprecated": true }, "detail-sans-serif-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{regular-font-weight}", "uuid": "6ca600be-010a-4aaa-a815-e5bfdbe36b21" }, "detail-sans-serif-emphasized-font-style": { @@ -1431,7 +1443,7 @@ "detail-serif-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", + "value": "{medium-font-weight}", "uuid": "247b2004-e0bc-42b9-ba83-6edbe417c4cb" }, "detail-serif-emphasized-font-style": { @@ -1443,7 +1455,7 @@ "detail-cjk-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1" }, "detail-cjk-emphasized-font-style": { @@ -1456,37 +1468,43 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "64972012-5050-41d0-9c9b-269b533a58b7" + "uuid": "64972012-5050-41d0-9c9b-269b533a58b7", + "deprecated": true }, "detail-sans-serif-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "fc6098a2-3263-433c-8378-ba609629ef53" + "uuid": "fc6098a2-3263-433c-8378-ba609629ef53", + "deprecated": true }, "detail-serif-light-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2" + "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2", + "deprecated": true }, "detail-serif-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857" + "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857", + "deprecated": true }, "detail-cjk-light-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40" + "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40", + "deprecated": true }, "detail-cjk-light-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b" + "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b", + "deprecated": true }, "detail-sans-serif-strong-emphasized-font-weight": { "component": "detail", @@ -1515,7 +1533,7 @@ "detail-cjk-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", + "value": "{extra-bold-font-weight}", "uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb" }, "detail-cjk-strong-emphasized-font-style": { @@ -1528,60 +1546,66 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486" + "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486", + "deprecated": true }, "detail-sans-serif-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d" + "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d", + "deprecated": true }, "detail-serif-light-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{regular-font-weight}", - "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2" + "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2", + "deprecated": true }, "detail-serif-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{italic-font-style}", - "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b" + "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b", + "deprecated": true }, "detail-cjk-light-strong-emphasized-font-weight": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{extra-bold-font-weight}", - "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d" + "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d", + "deprecated": true }, "detail-cjk-light-strong-emphasized-font-style": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{default-font-style}", - "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a" + "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a", + "deprecated": true }, "detail-size-xl": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", + "value": "{font-size-300}", "uuid": "ab476eec-b592-4890-af8f-74de808cb87f" }, "detail-size-l": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", + "value": "{font-size-200}", "uuid": "613da587-5c48-4efa-abb5-36378c1e81f0" }, "detail-size-m": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", + "value": "{font-size-100}", "uuid": "07840554-1ec1-4823-b119-474ec9cc31f0" }, "detail-size-s": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", + "value": "{font-size-75}", "uuid": "585e1bec-ee93-4983-b0bb-3a1f6ec28218" }, "detail-line-height": { @@ -1612,24 +1636,27 @@ "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "0.06em", - "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279" + "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279", + "deprecated": true }, "detail-sans-serif-text-transform": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", - "uuid": "8646d403-21f9-4e77-8a21-92289c303715" + "uuid": "8646d403-21f9-4e77-8a21-92289c303715", + "deprecated": true }, "detail-serif-text-transform": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", "value": "uppercase", - "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534" + "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534", + "deprecated": true }, "detail-color": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", + "value": "{gray-600}", "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" }, "code-font-family": { @@ -1788,4 +1815,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} +} \ No newline at end of file From bdaec63f08db9337c929f16adb6903623f879b0b Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Fri, 4 Oct 2024 12:07:48 -0600 Subject: [PATCH 258/295] Revert "Revert "fix: moving tokens to typography"" This reverts commit 3030aec2385f9ead086293474c0d7f09dd9e5a46. --- docs/visualizer/public/json/typography.json | 10 ++-- .../schemas/token-types/multiplier.json | 2 +- packages/tokens/src/layout-component.json | 54 ++++-------------- packages/tokens/src/layout.json | 14 ++--- packages/tokens/src/typography.json | 56 +++++++++++++++---- 5 files changed, 71 insertions(+), 65 deletions(-) diff --git a/docs/visualizer/public/json/typography.json b/docs/visualizer/public/json/typography.json index 4cd30d44..884b2f18 100644 --- a/docs/visualizer/public/json/typography.json +++ b/docs/visualizer/public/json/typography.json @@ -629,11 +629,11 @@ }, "heading-margin-top-multiplier": { "component": "heading", - "value": "0.88888889" + "value": 0.88888889 }, "heading-margin-bottom-multiplier": { "component": "heading", - "value": "0.25" + "value": 0.25 }, "body-sans-serif-font-family": { "component": "body", @@ -781,7 +781,7 @@ }, "body-margin-multiplier": { "component": "body", - "value": "0.75" + "value": 0.75 }, "detail-sans-serif-font-family": { "component": "detail", @@ -1013,11 +1013,11 @@ }, "detail-margin-top-mulitplier": { "component": "detail", - "value": "0.88888889" + "value": 0.88888889 }, "detail-margin-bottom-multiplier": { "component": "detail", - "value": "0.25" + "value": 0.25 }, "detail-letter-spacing": { "component": "detail", diff --git a/packages/tokens/schemas/token-types/multiplier.json b/packages/tokens/schemas/token-types/multiplier.json index 3986b92c..73ffdc3b 100644 --- a/packages/tokens/schemas/token-types/multiplier.json +++ b/packages/tokens/schemas/token-types/multiplier.json @@ -14,7 +14,7 @@ "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" }, "value": { - "type": "string", + "type": "number", "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" }, "component": {}, diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 89dd26f2..121e8fbc 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -960,7 +960,7 @@ "button-minimum-width-multiplier": { "component": "button", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2.25", + "value": 2.25, "uuid": "68b6ac88-d229-460d-8d59-3f5c141db358" }, "tooltip-tip-width": { @@ -1284,7 +1284,7 @@ "swatch-rectangle-width-multiplier": { "component": "swatch", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2", + "value": 2, "uuid": "b3157e9d-82a0-429e-b987-8c240a669af7" }, "swatch-slash-thickness-extra-small": { @@ -2157,7 +2157,7 @@ "picker-minimum-width-multiplier": { "component": "picker", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2", + "value": 2, "uuid": "67b68a30-ae00-4da2-9730-99196a2eaf96" }, "picker-visual-to-disclosure-icon-small": { @@ -2247,7 +2247,7 @@ "text-field-minimum-width-multiplier": { "component": "text-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.5", + "value": 1.5, "uuid": "875bbeaf-b4b7-41b9-8e6f-d6a57ec03049" }, "text-area-minimum-width": { @@ -2285,13 +2285,13 @@ "combo-box-minimum-width-multiplier": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2.5", + "value": 2.5, "uuid": "eabcc77a-f263-43ed-9944-9daa78a56b66" }, "combo-box-quiet-minimum-width-multiplier": { "component": "combo-box", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "2", + "value": 2, "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", "deprecated": true }, @@ -3428,7 +3428,7 @@ "search-field-minimum-width-multiplier": { "component": "search-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "4", + "value": 4, "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" }, "color-loupe-height": { @@ -7469,14 +7469,14 @@ "tag-minimum-width-multiplier": { "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1", + "value": 1, "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f", "deprecated": true }, "tag-maximum-width-multiplier": { "component": "tag", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "7", + "value": 7, "uuid": "8771f506-a491-4222-be86-0e666ea2c711" }, "tag-label-to-clear-icon-small": { @@ -7686,13 +7686,13 @@ "title-margin-bottom-multiplier": { "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.25", + "value": 0.25, "uuid": "73a0bd28-7691-47b0-9e9b-62ec22940e63" }, "title-margin-top-multiplier": { "component": "title", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.88888889", + "value": 0.88888889, "uuid": "14d9dc6c-28fc-41cf-a1ae-600a150f520a" }, "title-sans-serif-emphasized-font-style": { @@ -9960,35 +9960,5 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" - }, - "detail-cjk-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" - }, - "detail-cjk-size-s": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" - }, - "detail-cjk-size-m": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" - }, - "detail-cjk-size-l": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" - }, - "detail-cjk-size-xl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" - }, - "detail-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 8a5c4a68..89e1e5d9 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -51,7 +51,7 @@ }, "corner-radius-1000": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.5", + "value": 0.5, "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" }, "drop-shadow-x": { @@ -2165,7 +2165,7 @@ }, "component-size-width-ratio-down": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.3333", + "value": 0.3333, "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" }, "component-size-minimum-perspective-down": { @@ -2386,12 +2386,12 @@ }, "gradient-stop-2-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.3333", + "value": 0.3333, "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" }, "gradient-stop-3-genai": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" }, "gradient-stop-1-premium": { @@ -2401,12 +2401,12 @@ }, "gradient-stop-2-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "0.6666", + "value": 0.6666, "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" }, "gradient-stop-3-premium": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": "1", + "value": 1, "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/typography.json b/packages/tokens/src/typography.json index b6832866..52e5efb3 100644 --- a/packages/tokens/src/typography.json +++ b/packages/tokens/src/typography.json @@ -351,22 +351,22 @@ }, "line-height-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.3", + "value": 1.3, "uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b" }, "line-height-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.5", + "value": 1.5, "uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97" }, "cjk-line-height-100": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.5", + "value": 1.5, "uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4" }, "cjk-line-height-200": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.7", + "value": 1.7, "uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015" }, "cjk-letter-spacing": { @@ -966,13 +966,13 @@ "heading-margin-top-multiplier": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.88888889", + "value": 0.88888889, "uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642" }, "heading-margin-bottom-multiplier": { "component": "heading", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.25", + "value": 0.25, "uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f" }, "heading-color": { @@ -1245,7 +1245,7 @@ "body-margin-multiplier": { "component": "body", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.75", + "value": 0.75, "uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89" }, "body-color": { @@ -1623,13 +1623,13 @@ "detail-margin-top-multiplier": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.88888889", + "value": 0.88888889, "uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c" }, "detail-margin-bottom-multiplier": { "component": "detail", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "0.25", + "value": 0.25, "uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51" }, "detail-letter-spacing": { @@ -1659,6 +1659,42 @@ "value": "{gray-600}", "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" }, + "detail-cjk-size-xs": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-25}", + "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" + }, + "detail-cjk-size-s": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" + }, + "detail-cjk-size-m": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-75}", + "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" + }, + "detail-cjk-size-l": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-100}", + "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" + }, + "detail-cjk-size-xl": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-200}", + "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" + }, + "detail-size-xs": { + "component": "detail", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{font-size-50}", + "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" + }, "code-font-family": { "component": "code", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", @@ -1815,4 +1851,4 @@ "value": "{gray-800}", "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" } -} \ No newline at end of file +} From 98a10b875b5516605a545cc343597231335ebcf2 Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 4 Oct 2024 12:24:05 -0600 Subject: [PATCH 259/295] test: updated diff to ignore numbers in quotes --- packages/tokens/tasks/diff.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages/tokens/tasks/diff.js b/packages/tokens/tasks/diff.js index cc27ad46..1bae3307 100644 --- a/packages/tokens/tasks/diff.js +++ b/packages/tokens/tasks/diff.js @@ -54,7 +54,11 @@ async function run() { async function getNewTokens() { try { await access(localTokenPath); - return JSON.parse(await readFile(localTokenPath, { encoding: "utf8" })); + return JSON.parse( + convertNumberStringsToNumbers( + await readFile(localTokenPath, { encoding: "utf8" }), + ), + ); } catch { console.error("cannot access"); } @@ -72,7 +76,11 @@ async function getOldTokens() { const oldTokenPath = join(tmpDir.path, "package", tokenPath); await access(oldTokenPath); console.log(`Comparing against ${stdout.trim()}`); - return JSON.parse(await readFile(oldTokenPath, { encoding: "utf8" })); + return JSON.parse( + convertNumberStringsToNumbers( + await readFile(oldTokenPath, { encoding: "utf8" }), + ), + ); } function calculatePossibleRenames(diffResult, oldTokens, newTokens) { @@ -92,6 +100,12 @@ function calculatePossibleRenames(diffResult, oldTokens, newTokens) { }); } +function convertNumberStringsToNumbers(dataString) { + return dataString.replace(/"([\d]*\.?[\d]*)"/g, (match, p1) => { + return p1; + }); +} + function logResultCategory(diffResult, categoryKey, msg) { const results = diffResult[categoryKey]; const resultCount = Object.keys(results).length; From 4673d1383602d81484ae346dd278a28a26f5d91b Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 4 Oct 2024 12:24:25 -0600 Subject: [PATCH 260/295] chore: added changeset --- .changeset/swift-bugs-shout.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .changeset/swift-bugs-shout.md diff --git a/.changeset/swift-bugs-shout.md b/.changeset/swift-bugs-shout.md new file mode 100644 index 00000000..a9fb4a8e --- /dev/null +++ b/.changeset/swift-bugs-shout.md @@ -0,0 +1,30 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added tokens for s2 detail typography + +_New tokens (6)_ + +- `detail-cjk-size-xs` +- `detail-cjk-size-s` +- `detail-cjk-size-m` +- `detail-cjk-size-l` +- `detail-cjk-size-xl` +- `detail-size-xs` + +_Updated token values (13)_ + +- `detail-sans-serif-font-weight`: `bold-font-weight` -> `medium-font-weight` +- `detail-serif-font-weight`: `bold-font-weight` -> `medium-font-weight` +- `detail-cjk-font-weight`: `extra-bold-font-weight` -> `bold-font-weight` +- `detail-cjk-strong-font-weight`: `black-font-weight` -> `extra-bold-font-weight` +- `detail-sans-serif-emphasized-font-weight`: `bold-font-weight` -> `regular-font-weight` +- `detail-serif-emphasized-font-weight`: `bold-font-weight` -> `medium-font-weight` +- `detail-cjk-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` +- `detail-cjk-strong-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` +- `detail-size-xl`: `font-size-200` -> `font-size-300` +- `detail-size-l`: `font-size-100` -> `font-size-200` +- `detail-size-m`: `font-size-75` -> `font-size-100` +- `detail-size-s`: `font-size-50` -> `font-size-75` +- `detail-color`: `gray-900` -> `gray-600` From 9d055db87adb881cb3b3c8a003a58f1d3a454bf5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 4 Oct 2024 18:28:44 +0000 Subject: [PATCH 261/295] chore: release (beta) --- .changeset/pre.json | 2 + packages/tokens/CHANGELOG.md | 52 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 ++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 63 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 56c1d1dc..34965487 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -45,6 +45,7 @@ "neat-balloons-rhyme", "olive-schools-warn", "popular-socks-clean", + "proud-oranges-think", "purple-worms-add", "quick-moose-tease", "real-seals-camp", @@ -63,6 +64,7 @@ "strange-rings-love", "strong-trains-crash", "sweet-pillows-protect", + "swift-bugs-shout", "tame-bobcats-beg", "tender-monkeys-flash", "twelve-impalas-compare", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index ce5161eb..e43923b2 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,57 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.49 + +### Minor Changes + +- [#418](https://github.com/adobe/spectrum-tokens/pull/418) [`45ed87b`](https://github.com/adobe/spectrum-tokens/commit/45ed87b43af53370f74fc46c545b4c13005f381c) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## Design Motivation + + Made the following changes to component typography tokens for both mobile and desktop. + + ## Token Diff + + _Tokens added (2):_ + + - `heading-cjk-size-xxxxl` + - `heading-size-xxxxl` + + _Tokens changed (7):_ + + - `heading-sans-serif-font-weight`: `bold-font-weight` -> `extra-bold-font-weight` + - `heading-cjk-heavy-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + - `heading-sans-serif-emphasized-font-weight`: `bold-font-weight` -> `extra-bold-font-weight` + - `heading-size-s`: `font-size-300` -> `font-size-400` + - `heading-size-xs`: `font-size-200` -> `font-size-300` + - `heading-cjk-size-xxxl`: `font-size-1300` -> `font-size-1200` + - `heading-cjk-size-xxl`: `font-size-900` -> `font-size-1000` + +- [#422](https://github.com/adobe/spectrum-tokens/pull/422) [`4673d13`](https://github.com/adobe/spectrum-tokens/commit/4673d1383602d81484ae346dd278a28a26f5d91b) Thanks [@GarthDB](https://github.com/GarthDB)! - Added tokens for s2 detail typography + + _New tokens (6)_ + + - `detail-cjk-size-xs` + - `detail-cjk-size-s` + - `detail-cjk-size-m` + - `detail-cjk-size-l` + - `detail-cjk-size-xl` + - `detail-size-xs` + + _Updated token values (13)_ + + - `detail-sans-serif-font-weight`: `bold-font-weight` -> `medium-font-weight` + - `detail-serif-font-weight`: `bold-font-weight` -> `medium-font-weight` + - `detail-cjk-font-weight`: `extra-bold-font-weight` -> `bold-font-weight` + - `detail-cjk-strong-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + - `detail-sans-serif-emphasized-font-weight`: `bold-font-weight` -> `regular-font-weight` + - `detail-serif-emphasized-font-weight`: `bold-font-weight` -> `medium-font-weight` + - `detail-cjk-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + - `detail-cjk-strong-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + - `detail-size-xl`: `font-size-200` -> `font-size-300` + - `detail-size-l`: `font-size-100` -> `font-size-200` + - `detail-size-m`: `font-size-75` -> `font-size-100` + - `detail-size-s`: `font-size-50` -> `font-size-75` + - `detail-color`: `gray-900` -> `gray-600` + ## 13.0.0-beta.48 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 2bbbd5b0..5da68d5a 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.48", + "version": "13.0.0-beta.49", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 48e740d5..f1c96d23 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.20 + +### Patch Changes + +- Updated dependencies [[`45ed87b`](https://github.com/adobe/spectrum-tokens/commit/45ed87b43af53370f74fc46c545b4c13005f381c), [`4673d13`](https://github.com/adobe/spectrum-tokens/commit/4673d1383602d81484ae346dd278a28a26f5d91b)]: + - @adobe/spectrum-tokens@13.0.0-beta.49 + ## 0.0.2-beta.19 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 200ba1c6..75357e4b 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.19", + "version": "0.0.2-beta.20", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 5009c373797f5f64ed32dca624c507aa93238d49 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Tue, 8 Oct 2024 14:55:32 +0000 Subject: [PATCH 262/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 182 +++++++++++++++++++++- 1 file changed, 181 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 121e8fbc..428de5cf 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9960,5 +9960,185 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" + }, + "window-to-edge": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-600}", + "uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51" + }, + "in-field-stepper-to-end-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "0px", + "uuid": "ec801932-08dc-4697-8725-5bc9d3ee230d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "90669b85-c7e8-4b68-b96d-61a51a2451b3" + } + } + }, + "in-field-stepper-to-end-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "3px", + "uuid": "fe42bdd0-de02-4814-b498-038b26a3c0e7" + }, + "in-field-stepper-to-end-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "cb3e458d-7dcd-484d-9028-220d08c9f129" + }, + "in-field-stepper-to-end-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "8e57f77c-2921-44b8-a602-85300639f916" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "fbc42d9d-2f00-42ae-92e9-727cac69404e" + } + } + }, + "number-field-with-stepper-minimum-width-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "104px", + "uuid": "fcd3bdc5-5685-4b14-9ed7-7fd7bb11b584" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "126px", + "uuid": "08801f40-08ab-47df-82b8-e9cb8a63e3aa" + } + } + }, + "number-field-with-stepper-minimum-width-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "120px", + "uuid": "c7f0b058-d896-4acb-9aac-d073682f8546" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "150px", + "uuid": "4268fc6a-118d-4b3b-a581-b2ab8a503f21" + } + } + }, + "number-field-with-stepper-minimum-width-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "144px", + "uuid": "ce84b84a-2036-4041-a121-31f69963bf6c" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "174px", + "uuid": "71530ba4-3eb9-4136-b1d2-a28ae5ddf034" + } + } + }, + "number-field-with-stepper-minimum-width-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "168px", + "uuid": "c5796762-5837-4600-92e0-5f11364ce471" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "198px", + "uuid": "9da98fb6-a90a-4805-8969-88d4a8958157" + } + } + }, + "number-field-visual-to-in-field-stepper-small": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "1b494a23-b312-43e2-8148-0d86777c38d4" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "1e55a991-6d8f-4fc1-9dc7-91f86be50e3f" + } + } + }, + "number-field-visual-to-in-field-stepper-medium": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "2d2b2029-37ff-4563-a404-1347492ca7db" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "83dd3160-a826-4fa2-b643-a6f11533ba45" + } + } + }, + "number-field-visual-to-in-field-stepper-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "e041ee57-b8be-4c7e-a13d-ec2e2be05504" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "9px", + "uuid": "136a2c42-1868-4343-903d-9e7fbf345d45" + } + } + }, + "number-field-visual-to-in-field-stepper-extra-large": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "54f47bf6-78cc-409a-a83e-15f36404d548" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "777f9750-cfea-4eb3-ae08-a18c2fbde315" + } + } + }, + "number-field-minimum-width-multiplier": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", + "value": "1.25", + "uuid": "9e24d9b5-1c8b-4693-b10e-8922d519d7e0" + }, + "takeover-dialog-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1.00em", + "uuid": "be327284-79fe-40b7-b996-8ad176d40d8e" + }, + "takeover-dialog-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "1.00em", + "uuid": "bb70e39d-c686-4cd2-a991-6b51fa16d9df" } -} +} \ No newline at end of file From 91f4536a416cf6c9e5b0b423bf3ead3233e808fc Mon Sep 17 00:00:00 2001 From: garthdb Date: Tue, 8 Oct 2024 12:41:29 -0600 Subject: [PATCH 263/295] chore: added changeset --- .changeset/smart-glasses-help.md | 26 +++++++++++++++++++++++ packages/tokens/src/layout-component.json | 24 +++++++++++++++------ packages/tokens/src/layout.json | 5 +++++ 3 files changed, 48 insertions(+), 7 deletions(-) create mode 100644 .changeset/smart-glasses-help.md diff --git a/.changeset/smart-glasses-help.md b/.changeset/smart-glasses-help.md new file mode 100644 index 00000000..4d8d01e5 --- /dev/null +++ b/.changeset/smart-glasses-help.md @@ -0,0 +1,26 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Adding S2 tokens for number field and takeover dialog components. + +## Token Diff + +_Tokens added (16):_ + +- `in-field-stepper-to-end-extra-large` +- `in-field-stepper-to-end-large` +- `in-field-stepper-to-end-medium` +- `in-field-stepper-to-end-small` +- `number-field-minimum-width-multiplier` +- `number-field-visual-to-in-field-stepper-extra-large` +- `number-field-visual-to-in-field-stepper-large` +- `number-field-visual-to-in-field-stepper-medium` +- `number-field-visual-to-in-field-stepper-small` +- `number-field-with-stepper-minimum-width-extra-large` +- `number-field-with-stepper-minimum-width-large` +- `number-field-with-stepper-minimum-width-medium` +- `number-field-with-stepper-minimum-width-small` +- `takeover-dialog-height` +- `takeover-dialog-width` +- `window-to-edge` diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 428de5cf..cfd5e940 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -9961,12 +9961,8 @@ "value": "{component-height-100}", "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" }, - "window-to-edge": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-600}", - "uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51" - }, "in-field-stepper-to-end-small": { + "component": "in-field-stepper", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -9982,16 +9978,19 @@ } }, "in-field-stepper-to-end-medium": { + "component": "in-field-stepper", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "3px", "uuid": "fe42bdd0-de02-4814-b498-038b26a3c0e7" }, "in-field-stepper-to-end-large": { + "component": "in-field-stepper", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "4px", "uuid": "cb3e458d-7dcd-484d-9028-220d08c9f129" }, "in-field-stepper-to-end-extra-large": { + "component": "in-field-stepper", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10007,6 +10006,7 @@ } }, "number-field-with-stepper-minimum-width-small": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10022,6 +10022,7 @@ } }, "number-field-with-stepper-minimum-width-medium": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10037,6 +10038,7 @@ } }, "number-field-with-stepper-minimum-width-large": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10052,6 +10054,7 @@ } }, "number-field-with-stepper-minimum-width-extra-large": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10067,6 +10070,7 @@ } }, "number-field-visual-to-in-field-stepper-small": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10082,6 +10086,7 @@ } }, "number-field-visual-to-in-field-stepper-medium": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10097,6 +10102,7 @@ } }, "number-field-visual-to-in-field-stepper-large": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10112,6 +10118,7 @@ } }, "number-field-visual-to-in-field-stepper-extra-large": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10127,18 +10134,21 @@ } }, "number-field-minimum-width-multiplier": { + "component": "number-field", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": "1.25", + "value": 1.25, "uuid": "9e24d9b5-1c8b-4693-b10e-8922d519d7e0" }, "takeover-dialog-height": { + "component": "takeover-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1.00em", "uuid": "be327284-79fe-40b7-b996-8ad176d40d8e" }, "takeover-dialog-width": { + "component": "takeover-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "1.00em", "uuid": "bb70e39d-c686-4cd2-a991-6b51fa16d9df" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 89e1e5d9..2c02dc91 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2408,5 +2408,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", "value": 1, "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" + }, + "window-to-edge": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-600}", + "uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51" } } From c1c48e192c93d9c216bebdcce9a3172cde8b57d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 8 Oct 2024 18:46:12 +0000 Subject: [PATCH 264/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 27 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 37 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 34965487..abccb679 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -57,6 +57,7 @@ "sixty-poems-tap", "slimy-emus-enjoy", "small-clocks-jam", + "smart-glasses-help", "smooth-turtles-retire", "soft-moles-walk", "sour-rabbits-own", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index e43923b2..d4c6ef5d 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,32 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.50 + +### Minor Changes + +- [#425](https://github.com/adobe/spectrum-tokens/pull/425) [`91f4536`](https://github.com/adobe/spectrum-tokens/commit/91f4536a416cf6c9e5b0b423bf3ead3233e808fc) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Adding S2 tokens for number field and takeover dialog components. + + ## Token Diff + + _Tokens added (16):_ + + - `in-field-stepper-to-end-extra-large` + - `in-field-stepper-to-end-large` + - `in-field-stepper-to-end-medium` + - `in-field-stepper-to-end-small` + - `number-field-minimum-width-multiplier` + - `number-field-visual-to-in-field-stepper-extra-large` + - `number-field-visual-to-in-field-stepper-large` + - `number-field-visual-to-in-field-stepper-medium` + - `number-field-visual-to-in-field-stepper-small` + - `number-field-with-stepper-minimum-width-extra-large` + - `number-field-with-stepper-minimum-width-large` + - `number-field-with-stepper-minimum-width-medium` + - `number-field-with-stepper-minimum-width-small` + - `takeover-dialog-height` + - `takeover-dialog-width` + - `window-to-edge` + ## 13.0.0-beta.49 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 5da68d5a..f3c3776e 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.49", + "version": "13.0.0-beta.50", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index f1c96d23..4b68b6cb 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.21 + +### Patch Changes + +- Updated dependencies [[`91f4536`](https://github.com/adobe/spectrum-tokens/commit/91f4536a416cf6c9e5b0b423bf3ead3233e808fc)]: + - @adobe/spectrum-tokens@13.0.0-beta.50 + ## 0.0.2-beta.20 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 75357e4b..18f346dc 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.20", + "version": "0.0.2-beta.21", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From e8c8cd73577ba7bdfe1efc557bc842c8e5945d5b Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 24 Oct 2024 09:38:44 -0600 Subject: [PATCH 265/295] fix: change width and height to percentages --- packages/tokens/src/layout-component.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index cfd5e940..8a2688db 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -10142,13 +10142,13 @@ "takeover-dialog-height": { "component": "takeover-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1.00em", + "value": "1.00%", "uuid": "be327284-79fe-40b7-b996-8ad176d40d8e" }, "takeover-dialog-width": { "component": "takeover-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1.00em", + "value": "100%", "uuid": "bb70e39d-c686-4cd2-a991-6b51fa16d9df" } } From 89949e4d0008baacec05359a83620fa45e35cf5e Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 24 Oct 2024 09:42:23 -0600 Subject: [PATCH 266/295] chore: added changeset --- .changeset/three-buttons-hunt.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .changeset/three-buttons-hunt.md diff --git a/.changeset/three-buttons-hunt.md b/.changeset/three-buttons-hunt.md new file mode 100644 index 00000000..a9edd4a2 --- /dev/null +++ b/.changeset/three-buttons-hunt.md @@ -0,0 +1,12 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +Change takeover dialog dimensions to use percentages which were previously converted to ems by mistake. + +## Token Diff + +**Updated Tokens (2):** + +- `takeover-dialog-height`: `1.00em` -> `1.00%` +- `takeover-dialog-width`: `1.00em` -> `1.00%` From 025b6b21688640ba8e56e2b4ef2c3f0b72521a25 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 24 Oct 2024 16:23:22 +0000 Subject: [PATCH 267/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 13 +++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 23 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index abccb679..b370df46 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -68,6 +68,7 @@ "swift-bugs-shout", "tame-bobcats-beg", "tender-monkeys-flash", + "three-buttons-hunt", "twelve-impalas-compare", "twelve-kangaroos-rescue", "unlucky-buckets-shop", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index d4c6ef5d..894caa99 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,18 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.51 + +### Patch Changes + +- [#441](https://github.com/adobe/spectrum-tokens/pull/441) [`89949e4`](https://github.com/adobe/spectrum-tokens/commit/89949e4d0008baacec05359a83620fa45e35cf5e) Thanks [@GarthDB](https://github.com/GarthDB)! - Change takeover dialog dimensions to use percentages which were previously converted to ems by mistake. + + ## Token Diff + + **Updated Tokens (2):** + + - `takeover-dialog-height`: `1.00em` -> `1.00%` + - `takeover-dialog-width`: `1.00em` -> `1.00%` + ## 13.0.0-beta.50 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index f3c3776e..5c26fc1b 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.50", + "version": "13.0.0-beta.51", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 4b68b6cb..c8a9208b 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.22 + +### Patch Changes + +- Updated dependencies [[`89949e4`](https://github.com/adobe/spectrum-tokens/commit/89949e4d0008baacec05359a83620fa45e35cf5e)]: + - @adobe/spectrum-tokens@13.0.0-beta.51 + ## 0.0.2-beta.21 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 18f346dc..272cbb68 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.21", + "version": "0.0.2-beta.22", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From bf51d56dcbf90a65081c2603e8dccd76f968fbdb Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 28 Oct 2024 14:13:07 -0600 Subject: [PATCH 268/295] fix: typo in takeover-dialog-height --- packages/tokens/src/layout-component.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 8a2688db..0b1f8a9b 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -10142,7 +10142,7 @@ "takeover-dialog-height": { "component": "takeover-dialog", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1.00%", + "value": "100%", "uuid": "be327284-79fe-40b7-b996-8ad176d40d8e" }, "takeover-dialog-width": { From 51904cdabfcb165a560c58664c8bc75be601f28b Mon Sep 17 00:00:00 2001 From: garthdb Date: Mon, 28 Oct 2024 14:14:23 -0600 Subject: [PATCH 269/295] chore: added changeset --- .changeset/sweet-rules-admire.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .changeset/sweet-rules-admire.md diff --git a/.changeset/sweet-rules-admire.md b/.changeset/sweet-rules-admire.md new file mode 100644 index 00000000..eb665530 --- /dev/null +++ b/.changeset/sweet-rules-admire.md @@ -0,0 +1,11 @@ +--- +"@adobe/spectrum-tokens": patch +--- + +fixing a typo with takeover-dialog-height + +## Token Diff + +**Updated Token (1):** + +- `takeover-dialog-height`: `1.00%` -> `100%` From dc3b81067c89699570e266ff685ce7e246cd79c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 28 Oct 2024 20:17:25 +0000 Subject: [PATCH 270/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 12 ++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index b370df46..320d392f 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -65,6 +65,7 @@ "strange-rings-love", "strong-trains-crash", "sweet-pillows-protect", + "sweet-rules-admire", "swift-bugs-shout", "tame-bobcats-beg", "tender-monkeys-flash", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 894caa99..b5e43f0c 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,17 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.52 + +### Patch Changes + +- [#444](https://github.com/adobe/spectrum-tokens/pull/444) [`51904cd`](https://github.com/adobe/spectrum-tokens/commit/51904cdabfcb165a560c58664c8bc75be601f28b) Thanks [@GarthDB](https://github.com/GarthDB)! - fixing a typo with takeover-dialog-height + + ## Token Diff + + **Updated Token (1):** + + - `takeover-dialog-height`: `1.00%` -> `100%` + ## 13.0.0-beta.51 ### Patch Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 5c26fc1b..16c2c15f 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.51", + "version": "13.0.0-beta.52", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index c8a9208b..67a88211 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.23 + +### Patch Changes + +- Updated dependencies [[`51904cd`](https://github.com/adobe/spectrum-tokens/commit/51904cdabfcb165a560c58664c8bc75be601f28b)]: + - @adobe/spectrum-tokens@13.0.0-beta.52 + ## 0.0.2-beta.22 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 272cbb68..85565139 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.22", + "version": "0.0.2-beta.23", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From e0ca273ca1f4babb8899083dbad2be92fbac9918 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Mon, 28 Oct 2024 14:19:25 -0600 Subject: [PATCH 271/295] Update CHANGELOG.md --- packages/tokens/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index b5e43f0c..e0fb081a 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -4,7 +4,7 @@ ### Patch Changes -- [#444](https://github.com/adobe/spectrum-tokens/pull/444) [`51904cd`](https://github.com/adobe/spectrum-tokens/commit/51904cdabfcb165a560c58664c8bc75be601f28b) Thanks [@GarthDB](https://github.com/GarthDB)! - fixing a typo with takeover-dialog-height +- [#444](https://github.com/adobe/spectrum-tokens/pull/444) [`51904cd`](https://github.com/adobe/spectrum-tokens/commit/51904cdabfcb165a560c58664c8bc75be601f28b) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)! - fixing a typo with takeover-dialog-height ## Token Diff @@ -23,7 +23,7 @@ **Updated Tokens (2):** - `takeover-dialog-height`: `1.00em` -> `1.00%` - - `takeover-dialog-width`: `1.00em` -> `1.00%` + - `takeover-dialog-width`: `1.00em` -> `100%` ## 13.0.0-beta.50 From 2089bfb690d3ab9abc9fb909d0e742e7f29f835e Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Thu, 31 Oct 2024 16:06:47 +0000 Subject: [PATCH 272/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 22 +- packages/tokens/src/layout-component.json | 297 +++++++++++++++++++++- 2 files changed, 317 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 32ba1c32..6ec60031 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -447,5 +447,25 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-800}", "uuid": "4bbb81b1-09fb-4ebe-80b5-cebb75c13839" + }, + "tree-view-row-background-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "39d26185-da40-47b5-b4b3-e47689129256" + }, + "tree-view-selected-row-background-color-emphasized": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{informative-background-color-default}", + "uuid": "65854450-ed1a-49ea-ab29-d257b8a0569e" + }, + "tree-view-selected-row-background-default": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "8f19994d-f49a-42ea-97bd-98ab1d76d02d" + }, + "tree-view-selected-row-background-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-100}", + "uuid": "c325ed8f-8248-40c3-a0f0-efba57638f24" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 0b1f8a9b..a9f22f25 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -10150,5 +10150,300 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "100%", "uuid": "bb70e39d-c686-4cd2-a991-6b51fa16d9df" + }, + "tree-view-disclosure-indicator-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "32px", + "uuid": "f9fcb5e0-d8aa-4077-bb8d-dd487ba9d7de" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "40px", + "uuid": "82ac143f-6009-4eaa-a797-c4b17277d416" + } + } + }, + "tree-view-disclosure-indicator-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "34px", + "uuid": "824d592b-c305-4c56-81db-c6566e6ebb2f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "42px", + "uuid": "e24897f6-7bfb-45c0-ab07-30bc1efc0b59" + } + } + }, + "tree-view-minimum-height": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "40px", + "uuid": "de8ed8b3-aee4-4d18-8728-01e6807bec7d" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "50px", + "uuid": "36d1219e-f34a-4ee9-bfa0-a93a42046d94" + } + } + }, + "tree-view-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "160px", + "uuid": "2ab54eb5-8f32-4a01-b4ff-d5dc7a70f827" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "200px", + "uuid": "06c90c91-1598-4150-a431-e733ba39bec5" + } + } + }, + "tree-view-bottom-to-label": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "7ab9177a-d035-4e78-b6b9-d80a6470bd7b" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "9136f55b-d28b-4802-873c-db6205b8632b" + } + } + }, + "tree-view-drag-handle-to-checkbox": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "e8c03b6e-d493-43b6-ae46-a6a92de5c9b8" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "5a77899c-1547-40da-bce3-d892cfbc0450" + } + } + }, + "tree-view-edge-to-checkbox": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "12px", + "uuid": "2e3817ed-206b-45e5-b55c-6116e9731cd8" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "fba49c63-444e-42fc-b27c-7ce43b8419a7" + } + } + }, + "tree-view-edge-to-drag-handle": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "e8127c62-d8fa-405f-a5d5-d4f79bdffa5f" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "f51d97ac-06c4-45a4-87ff-349b3ffbc36d" + } + } + }, + "tree-view-end-edge-to-action-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "91c6c1db-1f68-43b3-80ba-aa3c7ebecaec" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "7px", + "uuid": "66d490aa-b658-474d-99cf-f18d15cb4098" + } + } + }, + "tree-view-header-to-item": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-1px", + "uuid": "8f92e6b8-907f-42b2-81d6-83d1786495bf" + }, + "tree-view-item-to-header": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "24px", + "uuid": "ebf7358c-b691-45d7-a1c4-c346e75e800e" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "30px", + "uuid": "a06c6929-1acc-4084-a8ee-3d4ad5a0064e" + } + } + }, + "tree-view-item-to-item": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "-1px", + "uuid": "9a04f19a-9e2a-43b9-9b1f-3385aef214ac" + }, + "tree-view-item-to-item-detached": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "2px", + "uuid": "c7c837c3-47ad-4ef1-a2eb-e4629628eb44" + }, + "tree-view-label-to-action-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "6px", + "uuid": "e5e3b415-97a9-436d-b46d-9bf48d7a2104" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "096032da-c0b4-4086-82e9-ab80c2b3d90b" + } + } + }, + "tree-view-level-increment": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "16px", + "uuid": "cf7044fe-e79d-44e4-8ae0-c9c23ac5b9ac" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "20px", + "uuid": "038d525f-357a-4441-934e-093d7342eba8" + } + } + }, + "tree-view-minimum-top-to-context-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "8px", + "uuid": "1569ef2c-0e00-4314-87d0-e8f703b9fee8" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "50ce9fc5-eab5-4ab5-8dfa-a22d5b4361e9" + } + } + }, + "tree-view-top-to-action-button": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "20a69a94-ddc0-4581-bac9-1d0d2b3e0a48" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "7bea161d-9ee0-41b0-a31b-162926b28637" + } + } + }, + "tree-view-top-to-checkbox": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "4px", + "uuid": "6f33e161-86d3-40a4-b631-e7c8b9e9d337" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "5px", + "uuid": "b148e202-b43d-4089-b0d8-885fc99cb983" + } + } + }, + "tree-view-top-to-disclosure-indicator": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "138541e2-022a-4b03-b4d2-c6932ec56ac2" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "aae1c8b3-2aa1-4463-ad84-a52f80a6a09b" + } + } + }, + "tree-view-top-to-drag-handle": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "15px", + "uuid": "7fc57ed1-9ca8-4b08-b19f-4aa8c49ca6f3" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "19px", + "uuid": "bb805e5e-d65b-4daf-9116-288fa59ddbfd" + } + } + }, + "tree-view-top-to-label": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", + "sets": { + "desktop": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "10px", + "uuid": "a6a556b7-ff51-41e3-84d0-92fa8ef01ed6" + }, + "mobile": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "13px", + "uuid": "d2e3ca68-015b-47a4-96ea-0c380e931c09" + } + } + }, + "tree-view-selected-row-background-opacity-emphasized": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "d31772fd-95f3-413d-ab20-826033d71938" + }, + "tree-view-selected-row-background-opacity-emphasized-hover": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.15", + "uuid": "a83e023c-dc92-4b3e-8375-351bbf8ec9bb" } -} +} \ No newline at end of file From b986d2fd9827a20923b561678cc2bd3d5ca6e2a4 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 31 Oct 2024 10:16:10 -0600 Subject: [PATCH 273/295] fix: added missing component data --- packages/tokens/src/color-component.json | 6 +++++- packages/tokens/src/layout-component.json | 25 ++++++++++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 6ec60031..96c75442 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -449,23 +449,27 @@ "uuid": "4bbb81b1-09fb-4ebe-80b5-cebb75c13839" }, "tree-view-row-background-hover": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "39d26185-da40-47b5-b4b3-e47689129256" }, "tree-view-selected-row-background-color-emphasized": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{informative-background-color-default}", "uuid": "65854450-ed1a-49ea-ab29-d257b8a0569e" }, "tree-view-selected-row-background-default": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "8f19994d-f49a-42ea-97bd-98ab1d76d02d" }, "tree-view-selected-row-background-hover": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "c325ed8f-8248-40c3-a0f0-efba57638f24" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index a9f22f25..1d677f49 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -10152,6 +10152,7 @@ "uuid": "bb70e39d-c686-4cd2-a991-6b51fa16d9df" }, "tree-view-disclosure-indicator-height": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10167,6 +10168,7 @@ } }, "tree-view-disclosure-indicator-width": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10182,6 +10184,7 @@ } }, "tree-view-minimum-height": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10197,6 +10200,7 @@ } }, "tree-view-minimum-width": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10212,6 +10216,7 @@ } }, "tree-view-bottom-to-label": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10227,6 +10232,7 @@ } }, "tree-view-drag-handle-to-checkbox": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10242,6 +10248,7 @@ } }, "tree-view-edge-to-checkbox": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10257,6 +10264,7 @@ } }, "tree-view-edge-to-drag-handle": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10272,6 +10280,7 @@ } }, "tree-view-end-edge-to-action-area": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10287,11 +10296,13 @@ } }, "tree-view-header-to-item": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-1px", "uuid": "8f92e6b8-907f-42b2-81d6-83d1786495bf" }, "tree-view-item-to-header": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10307,16 +10318,19 @@ } }, "tree-view-item-to-item": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "-1px", "uuid": "9a04f19a-9e2a-43b9-9b1f-3385aef214ac" }, "tree-view-item-to-item-detached": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "2px", "uuid": "c7c837c3-47ad-4ef1-a2eb-e4629628eb44" }, "tree-view-label-to-action-area": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10332,6 +10346,7 @@ } }, "tree-view-level-increment": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10347,6 +10362,7 @@ } }, "tree-view-minimum-top-to-context-area": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10362,6 +10378,7 @@ } }, "tree-view-top-to-action-button": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10377,6 +10394,7 @@ } }, "tree-view-top-to-checkbox": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10392,6 +10410,7 @@ } }, "tree-view-top-to-disclosure-indicator": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10407,6 +10426,7 @@ } }, "tree-view-top-to-drag-handle": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10422,6 +10442,7 @@ } }, "tree-view-top-to-label": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", "sets": { "desktop": { @@ -10437,13 +10458,15 @@ } }, "tree-view-selected-row-background-opacity-emphasized": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "d31772fd-95f3-413d-ab20-826033d71938" }, "tree-view-selected-row-background-opacity-emphasized-hover": { + "component": "tree-view", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.15", "uuid": "a83e023c-dc92-4b3e-8375-351bbf8ec9bb" } -} \ No newline at end of file +} From dbc53986b64200e1e9a727f15a7ed5d83926eb6b Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 31 Oct 2024 10:20:14 -0600 Subject: [PATCH 274/295] chore: added changeset --- .changeset/fair-bats-travel.md | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .changeset/fair-bats-travel.md diff --git a/.changeset/fair-bats-travel.md b/.changeset/fair-bats-travel.md new file mode 100644 index 00000000..a991d3fc --- /dev/null +++ b/.changeset/fair-bats-travel.md @@ -0,0 +1,37 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added S2 Treeview tokens + +## Token Diff + +_Tokens added (27):_ + +- `tree-view-disclosure-indicator-height` +- `tree-view-disclosure-indicator-width` +- `tree-view-minimum-height` +- `tree-view-minimum-width` +- `tree-view-bottom-to-label` +- `tree-view-drag-handle-to-checkbox` +- `tree-view-edge-to-checkbox` +- `tree-view-edge-to-drag-handle` +- `tree-view-end-edge-to-action-area` +- `tree-view-header-to-item` +- `tree-view-item-to-header` +- `tree-view-item-to-item` +- `tree-view-item-to-item-detached` +- `tree-view-label-to-action-area` +- `tree-view-level-increment` +- `tree-view-minimum-top-to-context-area` +- `tree-view-top-to-action-button` +- `tree-view-top-to-checkbox` +- `tree-view-top-to-disclosure-indicator` +- `tree-view-top-to-drag-handle` +- `tree-view-top-to-label` +- `tree-view-selected-row-background-opacity-emphasized` +- `tree-view-selected-row-background-opacity-emphasized-hover` +- `tree-view-row-background-hover` +- `tree-view-selected-row-background-color-emphasized` +- `tree-view-selected-row-background-default` +- `tree-view-selected-row-background-hover` From 5d17fe0fdd454188adc4c4e297d3149655018eeb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 31 Oct 2024 16:23:07 +0000 Subject: [PATCH 275/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 38 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 48 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 320d392f..2079165c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -25,6 +25,7 @@ "dull-eyes-grab", "eight-months-cheer", "empty-steaks-dress", + "fair-bats-travel", "five-steaks-argue", "flat-parrots-cry", "fluffy-bees-play", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index e0fb081a..44f758e9 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,43 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.53 + +### Minor Changes + +- [#446](https://github.com/adobe/spectrum-tokens/pull/446) [`dbc5398`](https://github.com/adobe/spectrum-tokens/commit/dbc53986b64200e1e9a727f15a7ed5d83926eb6b) Thanks [@PaliwalSparsh](https://github.com/PaliwalSparsh)! - Added S2 Treeview tokens + + ## Token Diff + + _Tokens added (27):_ + + - `tree-view-disclosure-indicator-height` + - `tree-view-disclosure-indicator-width` + - `tree-view-minimum-height` + - `tree-view-minimum-width` + - `tree-view-bottom-to-label` + - `tree-view-drag-handle-to-checkbox` + - `tree-view-edge-to-checkbox` + - `tree-view-edge-to-drag-handle` + - `tree-view-end-edge-to-action-area` + - `tree-view-header-to-item` + - `tree-view-item-to-header` + - `tree-view-item-to-item` + - `tree-view-item-to-item-detached` + - `tree-view-label-to-action-area` + - `tree-view-level-increment` + - `tree-view-minimum-top-to-context-area` + - `tree-view-top-to-action-button` + - `tree-view-top-to-checkbox` + - `tree-view-top-to-disclosure-indicator` + - `tree-view-top-to-drag-handle` + - `tree-view-top-to-label` + - `tree-view-selected-row-background-opacity-emphasized` + - `tree-view-selected-row-background-opacity-emphasized-hover` + - `tree-view-row-background-hover` + - `tree-view-selected-row-background-color-emphasized` + - `tree-view-selected-row-background-default` + - `tree-view-selected-row-background-hover` + ## 13.0.0-beta.52 ### Patch Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 16c2c15f..3bca2331 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.52", + "version": "13.0.0-beta.53", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 67a88211..9847f9c9 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.24 + +### Patch Changes + +- Updated dependencies [[`dbc5398`](https://github.com/adobe/spectrum-tokens/commit/dbc53986b64200e1e9a727f15a7ed5d83926eb6b)]: + - @adobe/spectrum-tokens@13.0.0-beta.53 + ## 0.0.2-beta.23 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 85565139..0c468eae 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.23", + "version": "0.0.2-beta.24", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From de29ded24874e33a1551f0380126babc8510073e Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Thu, 21 Nov 2024 18:15:57 +0000 Subject: [PATCH 276/295] [create-pull-request] automated change --- packages/tokens/src/layout-component.json | 44 ++++++++++++++--------- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 1d677f49..5692bc28 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -5,12 +5,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "14px", "uuid": "460e8170-de69-4f8e-8420-6c87a1f6f5cd" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "18px", "uuid": "af31c1a5-ffce-4a54-8862-3e711ca53d25" } } @@ -21,12 +21,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", + "value": "16px", "uuid": "86288454-7192-4e4c-b55f-fc509fc58c01" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "20px", "uuid": "00fee3f7-a743-45d6-a2b6-028d5d96964a" } } @@ -37,12 +37,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", + "value": "18px", "uuid": "839a52bc-b9ee-473f-acde-0799b4f55ded" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", + "value": "22px", "uuid": "b4367578-989e-438d-9a3e-7cb077f2f7c9" } } @@ -53,12 +53,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", + "value": "20px", "uuid": "4ba47ba1-c9bd-447e-8948-009d5b424e0d" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", + "value": "26px", "uuid": "13093f8b-e38e-449f-a982-7f960bb84dfa" } } @@ -69,12 +69,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", + "value": "5px", "uuid": "20518175-5bc7-4659-8007-e74339c39433" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", + "value": "6px", "uuid": "f254146e-f469-44b1-b0c9-1ac72e88f9e3" } } @@ -85,12 +85,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", + "value": "8px", "uuid": "dcde5d2d-60f8-4d56-bfb1-bba44a087515" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", + "value": "10px", "uuid": "e3751526-2db9-421c-85f9-d60071aac49b" } } @@ -101,12 +101,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", + "value": "11px", "uuid": "93edae08-5320-4e7e-a006-a9af1d3665ad" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "14px", "uuid": "d040d2f4-9bb4-4d27-adac-40fef079d958" } } @@ -117,12 +117,12 @@ "sets": { "desktop": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", + "value": "14px", "uuid": "3c4217bb-91f2-4347-9f65-a0528992f600" }, "mobile": { "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", + "value": "17px", "uuid": "b3be5ac8-2415-4490-8b4a-c08661ec84d1" } } @@ -10468,5 +10468,15 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.15", "uuid": "a83e023c-dc92-4b3e-8375-351bbf8ec9bb" + }, + "action-bar-minimum-width": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "176px", + "uuid": "9fb582b4-38e6-43d0-9b94-69964fb24c9f" + }, + "action-bar-label-to-action-group-area": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{spacing-300}", + "uuid": "72e276ce-d6ee-4bcf-9955-91c833b8b2cd" } -} +} \ No newline at end of file From a923472e8daf52e710471467131baf3b5ae4d8da Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 18 Dec 2024 15:35:14 -0700 Subject: [PATCH 277/295] fix: added missing component data --- .changeset/cool-eyes-nail.md | 50 +++++++++++++++++++++++ packages/tokens/src/layout-component.json | 4 +- 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 .changeset/cool-eyes-nail.md diff --git a/.changeset/cool-eyes-nail.md b/.changeset/cool-eyes-nail.md new file mode 100644 index 00000000..7d19dc1c --- /dev/null +++ b/.changeset/cool-eyes-nail.md @@ -0,0 +1,50 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +## Design Motivation + +- Updated desktop and mobile values for checkbox-control-size-[size] and checkbox-top-to-control-[size] tokens +- Made token changes required for the S2 action bar update + +## Tokens Diff + +**Tokens Changed (10)** + +
Added (2) + +- `action-bar-minimum-width` +- `action-bar-label-to-action-group-area` + +
+ +Updated (8) + +
Updated Properties (8) + +- `checkbox-control-size-small` +- `desktop.value`: `12px` -> `14px` +- `mobile.value`: `16px` -> `18px` +- `checkbox-control-size-medium` +- `desktop.value`: `14px` -> `16px` +- `mobile.value`: `18px` -> `20px` +- `checkbox-control-size-large` +- `desktop.value`: `16px` -> `18px` +- `mobile.value`: `20px` -> `22px` +- `checkbox-control-size-extra-large` +- `desktop.value`: `18px` -> `20px` +- `mobile.value`: `22px` -> `26px` +- `checkbox-top-to-control-small` +- `desktop.value`: `6px` -> `5px` +- `mobile.value`: `7px` -> `6px` +- `checkbox-top-to-control-medium` +- `desktop.value`: `9px` -> `8px` +- `mobile.value`: `11px` -> `10px` +- `checkbox-top-to-control-large` +- `desktop.value`: `12px` -> `11px` +- `mobile.value`: `15px` -> `14px` +- `checkbox-top-to-control-extra-large` +- `desktop.value`: `15px` -> `14px` +- `mobile.value`: `19px` -> `17px` + +
diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 5692bc28..ecd58d5c 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -10470,13 +10470,15 @@ "uuid": "a83e023c-dc92-4b3e-8375-351bbf8ec9bb" }, "action-bar-minimum-width": { + "component": "action-bar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", "value": "176px", "uuid": "9fb582b4-38e6-43d0-9b94-69964fb24c9f" }, "action-bar-label-to-action-group-area": { + "component": "action-bar", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-300}", "uuid": "72e276ce-d6ee-4bcf-9955-91c833b8b2cd" } -} \ No newline at end of file +} From 9e1de80b4f0b8de2b71963b1595fb85372cf3755 Mon Sep 17 00:00:00 2001 From: garthdb Date: Wed, 18 Dec 2024 15:36:54 -0700 Subject: [PATCH 278/295] chore: update docs --- .changeset/cool-eyes-nail.md | 32 +++++++++---------- .../schemas/token-types/gradient-stop.json | 27 ++++++++++++++++ .../schemas/token-types/multiplier.json | 2 +- .../schemas/token-types/text-align.json | 27 ++++++++++++++++ .../public/schemas/token-types/token.json | 9 +++++- 5 files changed, 79 insertions(+), 18 deletions(-) create mode 100644 docs/site/public/schemas/token-types/gradient-stop.json create mode 100644 docs/site/public/schemas/token-types/text-align.json diff --git a/.changeset/cool-eyes-nail.md b/.changeset/cool-eyes-nail.md index 7d19dc1c..177432cd 100644 --- a/.changeset/cool-eyes-nail.md +++ b/.changeset/cool-eyes-nail.md @@ -23,28 +23,28 @@ Updated (8)
Updated Properties (8) - `checkbox-control-size-small` -- `desktop.value`: `12px` -> `14px` -- `mobile.value`: `16px` -> `18px` + - `desktop.value`: `12px` -> `14px` + - `mobile.value`: `16px` -> `18px` - `checkbox-control-size-medium` -- `desktop.value`: `14px` -> `16px` -- `mobile.value`: `18px` -> `20px` + - `desktop.value`: `14px` -> `16px` + - `mobile.value`: `18px` -> `20px` - `checkbox-control-size-large` -- `desktop.value`: `16px` -> `18px` -- `mobile.value`: `20px` -> `22px` + - `desktop.value`: `16px` -> `18px` + - `mobile.value`: `20px` -> `22px` - `checkbox-control-size-extra-large` -- `desktop.value`: `18px` -> `20px` -- `mobile.value`: `22px` -> `26px` + - `desktop.value`: `18px` -> `20px` + - `mobile.value`: `22px` -> `26px` - `checkbox-top-to-control-small` -- `desktop.value`: `6px` -> `5px` -- `mobile.value`: `7px` -> `6px` + - `desktop.value`: `6px` -> `5px` + - `mobile.value`: `7px` -> `6px` - `checkbox-top-to-control-medium` -- `desktop.value`: `9px` -> `8px` -- `mobile.value`: `11px` -> `10px` + - `desktop.value`: `9px` -> `8px` + - `mobile.value`: `11px` -> `10px` - `checkbox-top-to-control-large` -- `desktop.value`: `12px` -> `11px` -- `mobile.value`: `15px` -> `14px` + - `desktop.value`: `12px` -> `11px` + - `mobile.value`: `15px` -> `14px` - `checkbox-top-to-control-extra-large` -- `desktop.value`: `15px` -> `14px` -- `mobile.value`: `19px` -> `17px` + - `desktop.value`: `15px` -> `14px` + - `mobile.value`: `19px` -> `17px`
diff --git a/docs/site/public/schemas/token-types/gradient-stop.json b/docs/site/public/schemas/token-types/gradient-stop.json new file mode 100644 index 00000000..d92481a5 --- /dev/null +++ b/docs/site/public/schemas/token-types/gradient-stop.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", + "title": "Color Stop", + "description": "Gradient stop positions, being a ratio along the gradient's axis. Start is 0, end is 1.", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json" + }, + "value": { + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "component": {}, + "private": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/multiplier.json b/docs/site/public/schemas/token-types/multiplier.json index 3986b92c..73ffdc3b 100644 --- a/docs/site/public/schemas/token-types/multiplier.json +++ b/docs/site/public/schemas/token-types/multiplier.json @@ -14,7 +14,7 @@ "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json" }, "value": { - "type": "string", + "type": "number", "pattern": "^(?:\\d+\\.?\\d*)|(?:\\.?\\d+)$" }, "component": {}, diff --git a/docs/site/public/schemas/token-types/text-align.json b/docs/site/public/schemas/token-types/text-align.json new file mode 100644 index 00000000..a102159d --- /dev/null +++ b/docs/site/public/schemas/token-types/text-align.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", + "title": "Text align", + "description": "Sets the horizontal alignment of the inline-level content inside a block element", + "type": "object", + "allOf": [ + { + "$ref": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/token.json" + } + ], + "properties": { + "$schema": { + "const": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json" + }, + "value": { + "type": "string", + "enum": ["start", "center", "end"], + "default": "start" + }, + "component": {}, + "private": {}, + "deprecated": {}, + "deprecated_comment": {}, + "uuid": {} + } +} diff --git a/docs/site/public/schemas/token-types/token.json b/docs/site/public/schemas/token-types/token.json index 08a3fa4c..520b6ac7 100644 --- a/docs/site/public/schemas/token-types/token.json +++ b/docs/site/public/schemas/token-types/token.json @@ -6,7 +6,14 @@ "type": "object", "properties": { "value": { - "type": "string" + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] }, "component": { "type": "string" From 05195d06697346dd06d08fbcf2aae7248c46b3c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Dec 2024 22:45:04 +0000 Subject: [PATCH 279/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 51 ++++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 ++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 61 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 2079165c..6ce7e0df 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -19,6 +19,7 @@ "chatty-dolphins-build", "chatty-turtles-sell", "clever-onions-compete", + "cool-eyes-nail", "curly-pants-enjoy", "dirty-keys-deny", "dirty-pets-attend", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 44f758e9..5de27555 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,56 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.54 + +### Minor Changes + +- [#457](https://github.com/adobe/spectrum-tokens/pull/457) [`a923472`](https://github.com/adobe/spectrum-tokens/commit/a923472e8daf52e710471467131baf3b5ae4d8da) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## Design Motivation + + - Updated desktop and mobile values for checkbox-control-size-[size] and checkbox-top-to-control-[size] tokens + - Made token changes required for the S2 action bar update + + ## Tokens Diff + + **Tokens Changed (10)** + +
Added (2) + + - `action-bar-minimum-width` + - `action-bar-label-to-action-group-area` + +
+ + Updated (8) + +
Updated Properties (8) + + - `checkbox-control-size-small` + - `desktop.value`: `12px` -> `14px` + - `mobile.value`: `16px` -> `18px` + - `checkbox-control-size-medium` + - `desktop.value`: `14px` -> `16px` + - `mobile.value`: `18px` -> `20px` + - `checkbox-control-size-large` + - `desktop.value`: `16px` -> `18px` + - `mobile.value`: `20px` -> `22px` + - `checkbox-control-size-extra-large` + - `desktop.value`: `18px` -> `20px` + - `mobile.value`: `22px` -> `26px` + - `checkbox-top-to-control-small` + - `desktop.value`: `6px` -> `5px` + - `mobile.value`: `7px` -> `6px` + - `checkbox-top-to-control-medium` + - `desktop.value`: `9px` -> `8px` + - `mobile.value`: `11px` -> `10px` + - `checkbox-top-to-control-large` + - `desktop.value`: `12px` -> `11px` + - `mobile.value`: `15px` -> `14px` + - `checkbox-top-to-control-extra-large` + - `desktop.value`: `15px` -> `14px` + - `mobile.value`: `19px` -> `17px` + +
+ ## 13.0.0-beta.53 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 3bca2331..ef9df1a8 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.53", + "version": "13.0.0-beta.54", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 9847f9c9..bcadcb98 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.25 + +### Patch Changes + +- Updated dependencies [[`a923472`](https://github.com/adobe/spectrum-tokens/commit/a923472e8daf52e710471467131baf3b5ae4d8da)]: + - @adobe/spectrum-tokens@13.0.0-beta.54 + ## 0.0.2-beta.24 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 0c468eae..f51f75b6 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.24", + "version": "0.0.2-beta.25", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 24a0be19b7de4dfaed0da8267e1f5d2716734597 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Wed, 18 Dec 2024 23:11:58 +0000 Subject: [PATCH 280/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 7 ++++++- packages/tokens/src/layout-component.json | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 96c75442..68ce15c3 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -471,5 +471,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-100}", "uuid": "c325ed8f-8248-40c3-a0f0-efba57638f24" + }, + "color-wheel-border-color": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-1000}", + "uuid": "a60c3946-dff7-4245-bdcd-b61445066e48" } -} +} \ No newline at end of file diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index ecd58d5c..4c481764 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -10480,5 +10480,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-300}", "uuid": "72e276ce-d6ee-4bcf-9955-91c833b8b2cd" + }, + "color-wheel-border-opacity": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "be8fac27-b644-492e-a89d-6c87cfecb8a1" } -} +} \ No newline at end of file From aa51abf661a1a6067157d227393b032a4e7e43bc Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 19 Dec 2024 10:36:15 -0700 Subject: [PATCH 281/295] fix: added missing component data --- packages/tokens/src/color-component.json | 9 ++++++++- packages/tokens/src/layout-component.json | 7 +------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 68ce15c3..2cbfa041 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -473,8 +473,15 @@ "uuid": "c325ed8f-8248-40c3-a0f0-efba57638f24" }, "color-wheel-border-color": { + "component": "color-wheel", "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{gray-1000}", "uuid": "a60c3946-dff7-4245-bdcd-b61445066e48" + }, + "color-wheel-border-opacity": { + "component": "color-wheel", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", + "value": "0.1", + "uuid": "be8fac27-b644-492e-a89d-6c87cfecb8a1" } -} \ No newline at end of file +} diff --git a/packages/tokens/src/layout-component.json b/packages/tokens/src/layout-component.json index 4c481764..ecd58d5c 100644 --- a/packages/tokens/src/layout-component.json +++ b/packages/tokens/src/layout-component.json @@ -10480,10 +10480,5 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-300}", "uuid": "72e276ce-d6ee-4bcf-9955-91c833b8b2cd" - }, - "color-wheel-border-opacity": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "be8fac27-b644-492e-a89d-6c87cfecb8a1" } -} \ No newline at end of file +} From 2f90bffe5c0dc0a4cc6811eb104e0984d8714d53 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 19 Dec 2024 10:41:23 -0700 Subject: [PATCH 282/295] chore: added changeset --- .changeset/fifty-knives-glow.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .changeset/fifty-knives-glow.md diff --git a/.changeset/fifty-knives-glow.md b/.changeset/fifty-knives-glow.md new file mode 100644 index 00000000..2262b682 --- /dev/null +++ b/.changeset/fifty-knives-glow.md @@ -0,0 +1,12 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added two new tokens for color wheel border. One for color and one for opacity. + +## Token Diff + +
Added (2) + * `color-wheel-border-opacity` + * `color-wheel-border-color` +
From 7cc79302fda327559543b97d506ca18f43214d93 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 19 Dec 2024 17:45:01 +0000 Subject: [PATCH 283/295] chore: release (beta) --- .changeset/fifty-knives-glow.md | 6 ++++-- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 15 +++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 6 files changed, 29 insertions(+), 4 deletions(-) diff --git a/.changeset/fifty-knives-glow.md b/.changeset/fifty-knives-glow.md index 2262b682..d9e190ec 100644 --- a/.changeset/fifty-knives-glow.md +++ b/.changeset/fifty-knives-glow.md @@ -7,6 +7,8 @@ Added two new tokens for color wheel border. One for color and one for opacity. ## Token Diff
Added (2) - * `color-wheel-border-opacity` - * `color-wheel-border-color` + +- `color-wheel-border-opacity` +- `color-wheel-border-color` +
diff --git a/.changeset/pre.json b/.changeset/pre.json index 6ce7e0df..2c6d6f90 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -27,6 +27,7 @@ "eight-months-cheer", "empty-steaks-dress", "fair-bats-travel", + "fifty-knives-glow", "five-steaks-argue", "flat-parrots-cry", "fluffy-bees-play", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 5de27555..a538a7fa 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,20 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.55 + +### Minor Changes + +- [#461](https://github.com/adobe/spectrum-tokens/pull/461) [`2f90bff`](https://github.com/adobe/spectrum-tokens/commit/2f90bffe5c0dc0a4cc6811eb104e0984d8714d53) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added two new tokens for color wheel border. One for color and one for opacity. + + ## Token Diff + +
Added (2) + + - `color-wheel-border-opacity` + - `color-wheel-border-color` + +
+ ## 13.0.0-beta.54 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index ef9df1a8..edb9032a 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.54", + "version": "13.0.0-beta.55", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index bcadcb98..1747d6be 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.26 + +### Patch Changes + +- Updated dependencies [[`2f90bff`](https://github.com/adobe/spectrum-tokens/commit/2f90bffe5c0dc0a4cc6811eb104e0984d8714d53)]: + - @adobe/spectrum-tokens@13.0.0-beta.55 + ## 0.0.2-beta.25 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index f51f75b6..8814c37c 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.25", + "version": "0.0.2-beta.26", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 4a2f0535a49db5cf45cf44027574330792583265 Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Thu, 19 Dec 2024 18:48:06 +0000 Subject: [PATCH 284/295] [create-pull-request] automated change --- packages/tokens/src/layout.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/layout.json b/packages/tokens/src/layout.json index 2c02dc91..beb64f5d 100644 --- a/packages/tokens/src/layout.json +++ b/packages/tokens/src/layout.json @@ -2413,5 +2413,10 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", "value": "{spacing-600}", "uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51" + }, + "component-size-maximum-perspective-down": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", + "value": "96px", + "uuid": "437f2e57-2aa6-41b5-bdcc-e4993dc42168" } -} +} \ No newline at end of file From 1ae80516c48b70b87a8cd81cde75af8755188d45 Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 20 Dec 2024 14:36:26 -0700 Subject: [PATCH 285/295] chore: added changeset --- .changeset/purple-llamas-stare.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .changeset/purple-llamas-stare.md diff --git a/.changeset/purple-llamas-stare.md b/.changeset/purple-llamas-stare.md new file mode 100644 index 00000000..e12b5ebc --- /dev/null +++ b/.changeset/purple-llamas-stare.md @@ -0,0 +1,17 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added a component-size-maximum-perspective-down token, which defines that components larger than 96px would appear to scale down more. + +## Design Motivation + +This token is used in larger components that support a down state that scales, like the select box. + +## Token Diff + +
Added (1) + +- `component-size-maximum-perspective-down` + +
From 5f67e9c2d0fe52d3f488cead97f41b427f327215 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 20 Dec 2024 21:39:00 +0000 Subject: [PATCH 286/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 18 ++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 28 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 2c6d6f90..30208449 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -49,6 +49,7 @@ "olive-schools-warn", "popular-socks-clean", "proud-oranges-think", + "purple-llamas-stare", "purple-worms-add", "quick-moose-tease", "real-seals-camp", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index a538a7fa..6f79bc4e 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,23 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.56 + +### Minor Changes + +- [#463](https://github.com/adobe/spectrum-tokens/pull/463) [`1ae8051`](https://github.com/adobe/spectrum-tokens/commit/1ae80516c48b70b87a8cd81cde75af8755188d45) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added a component-size-maximum-perspective-down token, which defines that components larger than 96px would appear to scale down more. + + ## Design Motivation + + This token is used in larger components that support a down state that scales, like the select box. + + ## Token Diff + +
Added (1) + + - `component-size-maximum-perspective-down` + +
+ ## 13.0.0-beta.55 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index edb9032a..60ff4ceb 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.55", + "version": "13.0.0-beta.56", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index 1747d6be..fb1f9113 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.27 + +### Patch Changes + +- Updated dependencies [[`1ae8051`](https://github.com/adobe/spectrum-tokens/commit/1ae80516c48b70b87a8cd81cde75af8755188d45)]: + - @adobe/spectrum-tokens@13.0.0-beta.56 + ## 0.0.2-beta.26 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 8814c37c..7caae1f0 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.26", + "version": "0.0.2-beta.27", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 0b41f834c62925aa2616ff601fd1e15022c584ed Mon Sep 17 00:00:00 2001 From: GarthDB <125516+GarthDB@users.noreply.github.com> Date: Fri, 7 Feb 2025 23:20:42 +0000 Subject: [PATCH 287/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index 2cbfa041..bb1694d3 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -375,9 +375,19 @@ }, "popover-border-color": { "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "66da6f53-5446-43c1-bbe0-73b46763fde1" + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-white-25}", + "uuid": "66da6f53-5446-43c1-bbe0-73b46763fde1" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-400}", + "uuid": "825dc035-7b1c-4ddd-b1a9-be1546dae7e3" + } + } }, "popover-border-opacity": { "component": "popover", @@ -484,4 +494,4 @@ "value": "0.1", "uuid": "be8fac27-b644-492e-a89d-6c87cfecb8a1" } -} +} \ No newline at end of file From 53ac0c8ffb8836c636ca990d5802b61eb4ad7c61 Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 7 Feb 2025 16:31:14 -0700 Subject: [PATCH 288/295] chore: added changeset --- .changeset/spicy-days-fetch.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .changeset/spicy-days-fetch.md diff --git a/.changeset/spicy-days-fetch.md b/.changeset/spicy-days-fetch.md new file mode 100644 index 00000000..39fec9ae --- /dev/null +++ b/.changeset/spicy-days-fetch.md @@ -0,0 +1,23 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Updated popover border colors: + +popover-border-color: transparent-white-25 (light theme) +popover-border-color: gray-400 (dark theme) + +## Design Motivation + +We've received feedback from Adobe Concept (Kelly Hurlburt) that `1px` `gray-200` border in dark theme doesn't provide sufficient visual contrast when used on `background-color-layer-2`. + +## Token Diff + +Updated (1) + +`popover-border-color`: + +- `schema`: `alias.json` -> `color-set.json` +- `value`: `gray-200` -> + - `light.value`: `transparent-white-25` + - `dark.value`: `gray-400` From 8e88bc4c02aa3fc67c8872f1f3d635e5c9e72d54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 7 Feb 2025 23:35:17 +0000 Subject: [PATCH 289/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 24 ++++++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 34 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 30208449..4cfbca43 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -66,6 +66,7 @@ "soft-moles-walk", "sour-rabbits-own", "sour-wasps-sparkle", + "spicy-days-fetch", "strange-rings-love", "strong-trains-crash", "sweet-pillows-protect", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 6f79bc4e..d93ae2e0 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,29 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.57 + +### Minor Changes + +- [#466](https://github.com/adobe/spectrum-tokens/pull/466) [`53ac0c8`](https://github.com/adobe/spectrum-tokens/commit/53ac0c8ffb8836c636ca990d5802b61eb4ad7c61) Thanks [@larz0](https://github.com/larz0)! - Updated popover border colors: + + popover-border-color: transparent-white-25 (light theme) + popover-border-color: gray-400 (dark theme) + + ## Design Motivation + + We've received feedback from Adobe Concept (Kelly Hurlburt) that `1px` `gray-200` border in dark theme doesn't provide sufficient visual contrast when used on `background-color-layer-2`. + + ## Token Diff + + Updated (1) + + `popover-border-color`: + + - `schema`: `alias.json` -> `color-set.json` + - `value`: `gray-200` -> + - `light.value`: `transparent-white-25` + - `dark.value`: `gray-400` + ## 13.0.0-beta.56 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index 60ff4ceb..e683e6e7 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.56", + "version": "13.0.0-beta.57", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index fb1f9113..d63da0d1 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.28 + +### Patch Changes + +- Updated dependencies [[`53ac0c8`](https://github.com/adobe/spectrum-tokens/commit/53ac0c8ffb8836c636ca990d5802b61eb4ad7c61)]: + - @adobe/spectrum-tokens@13.0.0-beta.57 + ## 0.0.2-beta.27 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 7caae1f0..1c3da64e 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.27", + "version": "0.0.2-beta.28", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 38d335f1f28f6b2cddd3a1307217b9580c023f4b Mon Sep 17 00:00:00 2001 From: Larz <1495261+larz0@users.noreply.github.com> Date: Thu, 13 Feb 2025 22:18:50 +0000 Subject: [PATCH 290/295] [create-pull-request] automated change --- packages/tokens/src/color-component.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages/tokens/src/color-component.json b/packages/tokens/src/color-component.json index bb1694d3..58c6a2fa 100644 --- a/packages/tokens/src/color-component.json +++ b/packages/tokens/src/color-component.json @@ -493,5 +493,21 @@ "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", "value": "0.1", "uuid": "be8fac27-b644-492e-a89d-6c87cfecb8a1" + }, + "action-bar-border-color": { + "component": "action-bar", + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", + "sets": { + "light": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{transparent-white-25}", + "uuid": "166159cc-9353-4d22-90f0-64718533d73a" + }, + "dark": { + "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", + "value": "{gray-400}", + "uuid": "dac0d761-d8c1-4b1f-bfbe-766651122ecf" + } + } } -} \ No newline at end of file +} From 8de89219fe13a2a70a20ac230e6181be916bad1f Mon Sep 17 00:00:00 2001 From: garthdb Date: Fri, 14 Feb 2025 13:56:55 -0700 Subject: [PATCH 291/295] chore: added changeset --- .changeset/beige-hounds-invent.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .changeset/beige-hounds-invent.md diff --git a/.changeset/beige-hounds-invent.md b/.changeset/beige-hounds-invent.md new file mode 100644 index 00000000..994441a7 --- /dev/null +++ b/.changeset/beige-hounds-invent.md @@ -0,0 +1,19 @@ +--- +"@adobe/spectrum-tokens": minor +--- + +Added action bar border color. + +## Design Motivation + +Similar to the issues reported for popovers (SDS-14251), there isn't sufficient visual contrast of action bars on top of backgrounds in dark theme when used on background-color-layer-2. + +The solution to this issue in both popovers and action bars should be the same (Popover update has been merged) + +This issue was originally reported by the React team. Attached reference images from their implementation, one without border and one with border that matches the current popover border in dark. + +## Token Diff + +_Tokens added (7):_ + +- `action-bar-border-color` From 258ed261637288da56532b98e062f70bad7bcac4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 14 Feb 2025 21:02:09 +0000 Subject: [PATCH 292/295] chore: release (beta) --- .changeset/pre.json | 1 + packages/tokens/CHANGELOG.md | 20 ++++++++++++++++++++ packages/tokens/package.json | 2 +- tools/token-csv-generator/CHANGELOG.md | 7 +++++++ tools/token-csv-generator/package.json | 2 +- 5 files changed, 30 insertions(+), 2 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 4cfbca43..217ba078 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -13,6 +13,7 @@ }, "changesets": [ "angry-zoos-applaud", + "beige-hounds-invent", "big-hounds-tap", "blue-parrots-hug", "brown-years-perform", diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index d93ae2e0..22b5f8bc 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -1,5 +1,25 @@ # @adobe/spectrum-tokens +## 13.0.0-beta.58 + +### Minor Changes + +- [#470](https://github.com/adobe/spectrum-tokens/pull/470) [`8de8921`](https://github.com/adobe/spectrum-tokens/commit/8de89219fe13a2a70a20ac230e6181be916bad1f) Thanks [@larz0](https://github.com/larz0)! - Added action bar border color. + + ## Design Motivation + + Similar to the issues reported for popovers (SDS-14251), there isn't sufficient visual contrast of action bars on top of backgrounds in dark theme when used on background-color-layer-2. + + The solution to this issue in both popovers and action bars should be the same (Popover update has been merged) + + This issue was originally reported by the React team. Attached reference images from their implementation, one without border and one with border that matches the current popover border in dark. + + ## Token Diff + + _Tokens added (7):_ + + - `action-bar-border-color` + ## 13.0.0-beta.57 ### Minor Changes diff --git a/packages/tokens/package.json b/packages/tokens/package.json index e683e6e7..8dfd8d7e 100644 --- a/packages/tokens/package.json +++ b/packages/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/spectrum-tokens", - "version": "13.0.0-beta.57", + "version": "13.0.0-beta.58", "description": "Design tokens for Spectrum, Adobe's design system", "type": "module", "main": "index.js", diff --git a/tools/token-csv-generator/CHANGELOG.md b/tools/token-csv-generator/CHANGELOG.md index d63da0d1..93aee0cb 100644 --- a/tools/token-csv-generator/CHANGELOG.md +++ b/tools/token-csv-generator/CHANGELOG.md @@ -1,5 +1,12 @@ # token-csv-generator +## 0.0.2-beta.29 + +### Patch Changes + +- Updated dependencies [[`8de8921`](https://github.com/adobe/spectrum-tokens/commit/8de89219fe13a2a70a20ac230e6181be916bad1f)]: + - @adobe/spectrum-tokens@13.0.0-beta.58 + ## 0.0.2-beta.28 ### Patch Changes diff --git a/tools/token-csv-generator/package.json b/tools/token-csv-generator/package.json index 1c3da64e..4b1cf14e 100644 --- a/tools/token-csv-generator/package.json +++ b/tools/token-csv-generator/package.json @@ -1,6 +1,6 @@ { "name": "token-csv-generator", - "version": "0.0.2-beta.28", + "version": "0.0.2-beta.29", "description": "A simple tool to generate a CSV from the tokens", "type": "module", "private": true, From 70489c01a79d83f15066d510c1b19a97372173c1 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 13 Mar 2025 10:28:25 -0600 Subject: [PATCH 293/295] chore: graduate beta to GA --- .changeset/pre.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 217ba078..49f5abc3 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -1,5 +1,5 @@ { - "mode": "pre", + "mode": "exit", "tag": "beta", "initialVersions": { "site": "0.0.0", From b3af12b3821feedf0847705b7c30d90f2b591711 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 13 Mar 2025 10:29:58 -0600 Subject: [PATCH 294/295] docs: changing branch for s1 data in visualizer --- docs/visualizer/src/controllers/graph-data-source.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/visualizer/src/controllers/graph-data-source.ts b/docs/visualizer/src/controllers/graph-data-source.ts index 36c196fc..544571d7 100644 --- a/docs/visualizer/src/controllers/graph-data-source.ts +++ b/docs/visualizer/src/controllers/graph-data-source.ts @@ -51,7 +51,7 @@ interface RawSpectrumTokenJson { } const SOURCE_PATH = - "https://raw.githubusercontent.com/adobe/spectrum-tokens/main/packages/tokens/"; + "https://raw.githubusercontent.com/adobe/spectrum-tokens/s1-legacy/packages/tokens/"; const MANIFEST_JSON = "manifest.json"; From 461b9f2e3c67ecf98c1eeac30269f3d8e970b252 Mon Sep 17 00:00:00 2001 From: garthdb Date: Thu, 13 Mar 2025 10:50:58 -0600 Subject: [PATCH 295/295] docs: updated README with s2 change info --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 27542726..ae24550b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -Note: for [Spectrum 2](https://s2.spectrum.adobe.com/) tokens, look at the [`beta` branch](https://github.com/adobe/spectrum-tokens/tree/beta) and `beta` tagged packages on [NPM](https://www.npmjs.com/package/@adobe/spectrum-tokens?activeTab=versions). +Note: for [Spectrum 2](https://s2.spectrum.adobe.com/) token data has been graduated to the `main` branch. If you need access to the S1 data, use the [`s1-legacy` branch](https://github.com/adobe/spectrum-tokens/tree/s1-legacy) and `v12.x.x` packages on [NPM](https://www.npmjs.com/package/@adobe/spectrum-tokens?activeTab=versions). + +The [Spectrum token visualizer](https://opensource.adobe.com/spectrum-tokens/visualizer/) shows the token data for S1. For Spectrum 2 data, use [opensource.adobe.com/spectrum-tokens/s2-visualizer/](https://opensource.adobe.com/spectrum-tokens/s2-visualizer/). # Spectrum Tokens Monorepo @@ -15,6 +17,7 @@ Packages in this monorepo: - [Spectrum Tokens](packages/tokens/) design tokens for Spectrum, Adobe's design system. - [Spectrum Token Visualizer Tool](docs/visualizer/) a visualizer for inspecting tokens. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/visualizer/), not an NPM package. +- [Spectrum Token Visualizer Tool S2](docs/s2-visualizer/) a version of the visualizer that shows the Spectrum 2 data. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/s2-visualizer/). - [Spectrum Tokens Docs](docs/site/) a static site to show the component options API and other token data. ## Setup monorepo locally